1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .platform-ios.platform-cordova {
-
-
-
- &:not(.fullscreen) {
- .bar-header:not(.bar-subheader) {
- height: $bar-height + $ios-statusbar-height;
- &.item-input-inset .item-input-wrapper {
- margin-top: 19px !important;
- }
- > * {
- margin-top: $ios-statusbar-height;
- }
- }
- .tabs-top > .tabs,
- .tabs.tabs-top {
- top: $bar-height + $ios-statusbar-height;
- }
- .has-header,
- .bar-subheader {
- top: $bar-height + $ios-statusbar-height;
- }
- .has-subheader {
- top: $bar-height + $bar-subheader-height + $ios-statusbar-height;
- }
- .has-header.has-tabs-top {
- top: $bar-height + $tabs-height + $ios-statusbar-height;
- }
- .has-header.has-subheader.has-tabs-top {
- top: $bar-height + $bar-subheader-height + $tabs-height + $ios-statusbar-height;
- }
- }
- .popover{
- .bar-header:not(.bar-subheader) {
- height: $bar-height;
- &.item-input-inset .item-input-wrapper {
- margin-top: -1px;
- }
- > * {
- margin-top: 0;
- }
- }
- .has-header,
- .bar-subheader {
- top: $bar-height;
- }
- .has-subheader {
- top: $bar-height + $bar-subheader-height;
- }
- }
- &.status-bar-hide {
-
- margin-bottom: 20px;
- }
- }
- @media (orientation:landscape) {
- .platform-ios.platform-browser.platform-ipad {
- position: fixed;
- }
- }
- .platform-c:not(.enable-transitions) * {
-
- -webkit-transition: none !important;
- transition: none !important;
- }
|