[
https://issues.apache.org/jira/browse/FLEX-33860?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13842832#comment-13842832
]
Maurice Amsellem commented on FLEX-33860:
-----------------------------------------
>No css is needed to make it work differently for ios 6 vs 7 using the os
>version selector
This is because the os-version css are already embedded in mobile theme:
{code}
/* ios 7 status bar
requires new os-version selector (cf FLEX-FLEX-33949)
*/
@media (application-dpi: 120) AND (os-platform:"IOS") AND (min-os-version: 7)
{
Application
{
osStatusBarHeight: 15;
}
}
@media (application-dpi: 160) AND (os-platform:"IOS") AND (min-os-version: 7)
{
Application {
osStatusBarHeight: 20;
}
}
@media (application-dpi: 240) AND (os-platform:"IOS") AND (min-os-version: 7)
{
Application
{
osStatusBarHeight: 30;
}
}
@media (application-dpi: 320) AND (os-platform:"IOS") AND (min-os-version: 7)
{
Application
{
osStatusBarHeight: 40;
}
}
@media (application-dpi: 480) AND (os-platform:"IOS") AND (min-os-version: 7)
{
Application
{
osStatusBarHeight: 60;
}
}
{code}
> Support For iOS7 status bar
> ---------------------------
>
> Key: FLEX-33860
> URL: https://issues.apache.org/jira/browse/FLEX-33860
> Project: Apache Flex
> Issue Type: Bug
> Components: Mobile: ActionBar
> Affects Versions: Apache Flex 4.11.0
> Environment: iOS 7
> Reporter: Keith Lee
> Fix For: Apache Flex 4.12.0
>
> Attachments: FIX_fullscreen_osversion_SWCs.zip
>
>
> iOS 7 now runs everything in full screen, with the status bar being
> transparent, so mobile Flex applications now need a 20px padding at the top
> in order for action bar text to not be obscured by the status bar text and
> symbols.
> TOBEFIXED: handle the case when softkeyboardBehavior = "pan" and screen in
> scrolled for SKB
> FIXED: handled stage set to fullscreen (erquires AIR 4.0)
--
This message was sent by Atlassian JIRA
(v6.1.4#6159)