summaryrefslogtreecommitdiff
path: root/www/lib/ionic/scss/_platform.scss
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
commit210e8feae2fb4842bfb2de38666e6c41671fef3c (patch)
treecbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/ionic/scss/_platform.scss
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/ionic/scss/_platform.scss')
-rw-r--r--www/lib/ionic/scss/_platform.scss77
1 files changed, 0 insertions, 77 deletions
diff --git a/www/lib/ionic/scss/_platform.scss b/www/lib/ionic/scss/_platform.scss
deleted file mode 100644
index 163994e8..00000000
--- a/www/lib/ionic/scss/_platform.scss
+++ /dev/null
@@ -1,77 +0,0 @@
-
-/**
- * Platform
- * --------------------------------------------------
- * Platform specific tweaks
- */
-
-.platform-ios.platform-cordova {
- // iOS has a status bar which sits on top of the header.
- // Bump down everything to make room for it. However, if
- // if its in Cordova, and set to fullscreen, then disregard the bump.
- &: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 {
- // Cordova doesn't adjust the body height correctly, this makes up for it
- margin-bottom: 20px;
- }
-}
-
-@media (orientation:landscape) {
- .platform-ios.platform-browser.platform-ipad {
- position: fixed; // required for iPad 7 Safari
- }
-}
-
-.platform-c:not(.enable-transitions) * {
- // disable transitions on grade-c devices (Android 2)
- -webkit-transition: none !important;
- transition: none !important;
-}