[
https://issues.apache.org/jira/browse/FLEX-33949?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13836067#comment-13836067
]
Maurice Amsellem commented on FLEX-33949:
-----------------------------------------
h4. Implementation notes:
new *os-version* media css selector of type number, returns the major and minor
version number as a decimal figure, eg. 6.1 or 4.2
Example use (to set the os status bar height on iOS7):
( note that this uses css media *min-* modifier)
{code}
@media (application-dpi: 160) AND (os-platform:"IOS") AND (min-os-version: 7)
{
s|Application {
osStatusBarHeight: 20;
}
}
{code}
*Note:* os-version for mobile applications is only accurate when run on the
device.
When run on ADL, os-version will report the host OS version the ADL is running
on.
> Manage OS version in @media CSS
> -------------------------------
>
> Key: FLEX-33949
> URL: https://issues.apache.org/jira/browse/FLEX-33949
> Project: Apache Flex
> Issue Type: New Feature
> Components: Runtime CSS
> Affects Versions: Apache Flex 4.11.0
> Reporter: Maurice Amsellem
> Assignee: Maurice Amsellem
>
> >Use case
> This would give the ability to customize the application to match the native
> OS look and feel:
> - iOS6 / iOS7 skins
> - iOS status bar
> >Specifications
> new 'os-version' media css selector of type number, returns the major and
> minor version number as a decimal figure, eg. 6.1 or 4.2
> Can be used like this for iOS6 and iOS7:
> iOS6: @media (os-platform: "ios") and ( max-os-version: 6.5)
> iOS7: @media (os-platform: "ios") and ( min-os-version: 7.0)
> Note that os-version is only accurate when run on the device.
> When run on ADL, os-version will report the host OS version the ADL is
> running on.
--
This message was sent by Atlassian JIRA
(v6.1#6144)