summaryrefslogtreecommitdiff
path: root/www/lib/ionic/scss/_menu.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/_menu.scss
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/ionic/scss/_menu.scss')
-rw-r--r--www/lib/ionic/scss/_menu.scss70
1 files changed, 0 insertions, 70 deletions
diff --git a/www/lib/ionic/scss/_menu.scss b/www/lib/ionic/scss/_menu.scss
deleted file mode 100644
index 17466758..00000000
--- a/www/lib/ionic/scss/_menu.scss
+++ /dev/null
@@ -1,70 +0,0 @@
-
-/**
- * Menus
- * --------------------------------------------------
- * Side panel structure
- */
-
-.menu {
- position: absolute;
- top: 0;
- bottom: 0;
- z-index: $z-index-menu;
- overflow: hidden;
-
- min-height: 100%;
- max-height: 100%;
- width: $menu-width;
-
- background-color: $menu-bg;
-
- .scroll-content {
- z-index: $z-index-menu-scroll-content;
- }
-
- .bar-header {
- z-index: $z-index-menu-bar-header;
- }
-}
-
-.menu-content {
- @include transform(none);
- box-shadow: $menu-side-shadow;
-}
-
-.menu-open .menu-content .pane,
-.menu-open .menu-content .scroll-content {
- pointer-events: none;
-}
-.menu-open .menu-content .scroll-content .scroll {
- pointer-events: none;
-}
-.menu-open .menu-content .scroll-content:not(.overflow-scroll) {
- overflow: hidden;
-}
-
-.grade-b .menu-content,
-.grade-c .menu-content {
- @include box-sizing(content-box);
- right: -1px;
- left: -1px;
- border-right: 1px solid #ccc;
- border-left: 1px solid #ccc;
- box-shadow: none;
-}
-
-.menu-left {
- left: 0;
-}
-
-.menu-right {
- right: 0;
-}
-
-.aside-open.aside-resizing .menu-right {
- display: none;
-}
-
-.menu-animated {
- @include transition-transform($menu-animation-speed ease);
-}