Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EF2F2E79A for ; Tue, 15 Jan 2013 06:45:53 +0000 (UTC) Received: (qmail 80444 invoked by uid 500); 15 Jan 2013 06:45:53 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 80375 invoked by uid 500); 15 Jan 2013 06:45:53 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 80367 invoked by uid 99); 15 Jan 2013 06:45:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2013 06:45:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2013 06:45:51 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 983722388C28; Tue, 15 Jan 2013 06:45:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1433296 - /flex/sdk/branches/develop/mustella/Assets/Fonts/MobileFontStyles.css Date: Tue, 15 Jan 2013 06:45:32 -0000 To: commits@flex.apache.org From: aharui@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130115064532.983722388C28@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: aharui Date: Tue Jan 15 06:45:32 2013 New Revision: 1433296 URL: http://svn.apache.org/viewvc?rev=1433296&view=rev Log: Embedded fonts for mobile tests Added: flex/sdk/branches/develop/mustella/Assets/Fonts/MobileFontStyles.css (with props) Added: flex/sdk/branches/develop/mustella/Assets/Fonts/MobileFontStyles.css URL: http://svn.apache.org/viewvc/flex/sdk/branches/develop/mustella/Assets/Fonts/MobileFontStyles.css?rev=1433296&view=auto ============================================================================== --- flex/sdk/branches/develop/mustella/Assets/Fonts/MobileFontStyles.css (added) +++ flex/sdk/branches/develop/mustella/Assets/Fonts/MobileFontStyles.css Tue Jan 15 06:45:32 2013 @@ -0,0 +1,96 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +@namespace mx "library://ns.adobe.com/flex/mx"; +@namespace s "library://ns.adobe.com/flex/spark"; + +/* Note: + When this file was moved from Adobe to Apache the Vera font was replaced with OpenSans. +*/ + +@font-face { + src: url("Open_Sans/OpenSans-Regular.ttf"); + fontFamily: "MyVeraHalo"; + embedAsCFF: false; +} + +@font-face { + src: url("Open_Sans/OpenSans-Bold.ttf"); + fontFamily: "MyVeraHalo"; + fontWeight: bold; + embedAsCFF: false; +} + +@font-face { + src: url("Open_Sans/OpenSans-Italic.ttf"); + fontFamily: "MyVeraHalo"; + fontStyle: italic; + embedAsCFF: false; +} + +@font-face { + src: url("Open_Sans/OpenSans-BoldItalic.ttf"); + fontFamily: "MyVeraHalo"; + fontWeight: bold; + fontStyle: italic; + embedAsCFF: false; +} + +@font-face { + src: url("Open_Sans/OpenSans-Regular.ttf"); + fontFamily: "MyVeraSpark"; + embedAsCFF: true; +} + +@font-face { + src: url("Open_Sans/OpenSans-Bold.ttf"); + fontFamily: "MyVeraSpark"; + fontWeight: bold; + embedAsCFF: true; +} + +@font-face { + src: url("Open_Sans/OpenSans-Italic.ttf"); + fontFamily: "MyVeraSpark"; + fontStyle: italic; + embedAsCFF: true; +} + +@font-face { + src: url("Open_Sans/OpenSans-BoldItalic.ttf"); + fontFamily: "MyVeraSpark"; + fontWeight: bold; + fontStyle: italic; + embedAsCFF: true; +} + +global { + fontFamily: "MyVeraHalo"; + fontAntiAliasType: "normal"; +} + +s|SkinnableComponent { + fontFamily: "MyVeraSpark"; + fontLookup: "embeddedCFF"; +} + +s|Label { + fontFamily: "MyVeraSpark"; + fontLookup: "embeddedCFF"; +} + Propchange: flex/sdk/branches/develop/mustella/Assets/Fonts/MobileFontStyles.css ------------------------------------------------------------------------------ svn:eol-style = native