summaryrefslogtreecommitdiff
path: root/vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-17 09:15:42 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-17 09:44:51 +0100
commita1789ddde42033f1b05cc4929491214ee6e79383 (patch)
tree63615735c4ddffaaabf2428946bb26f90899f7bf /vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less
parent9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff)
Update to MediaWiki 1.26.0
Diffstat (limited to 'vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less')
-rw-r--r--vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less108
1 files changed, 0 insertions, 108 deletions
diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less
deleted file mode 100644
index c5080e2b..00000000
--- a/vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less
+++ /dev/null
@@ -1,108 +0,0 @@
-@import '../common';
-
-.oo-ui-menuLayout {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
-
- &-menu,
- &-content {
- position: absolute;
- .oo-ui-transition(all ease-in-out 200ms);
- }
-
- // These are overridden with 'auto' or '0' later
- &-menu {
- height: 18em;
- width: 18em;
- }
-
- // These are overridden with 'auto' or '0' later
- &-content {
- top: 18em;
- left: 18em;
- right: 18em;
- bottom: 18em;
- }
-
- &.oo-ui-menuLayout-hideMenu {
- .oo-ui-menuLayout-menu {
- width: 0 !important;
- height: 0 !important;
- overflow: hidden;
- }
-
- .oo-ui-menuLayout-content {
- top: 0 !important;
- left: 0 !important;
- right: 0 !important;
- bottom: 0 !important;
- }
- }
-
- &.oo-ui-menuLayout-showMenu {
- &.oo-ui-menuLayout-top {
- .oo-ui-menuLayout-menu {
- width: auto !important;
- left: 0;
- top: 0;
- right: 0;
- }
-
- .oo-ui-menuLayout-content {
- right: 0 !important;
- bottom: 0 !important;
- left: 0 !important;
- }
- }
-
- &.oo-ui-menuLayout-after {
- .oo-ui-menuLayout-menu {
- height: auto !important;
- top: 0;
- right: 0;
- bottom: 0;
- }
-
- .oo-ui-menuLayout-content {
- bottom: 0 !important;
- left: 0 !important;
- top: 0 !important;
- }
- }
-
- &.oo-ui-menuLayout-bottom {
- .oo-ui-menuLayout-menu {
- width: auto !important;
- right: 0;
- bottom: 0;
- left: 0;
- }
-
- .oo-ui-menuLayout-content {
- left: 0 !important;
- top: 0 !important;
- right: 0 !important;
- }
- }
-
- &.oo-ui-menuLayout-before {
- .oo-ui-menuLayout-menu {
- height: auto !important;
- bottom: 0;
- left: 0;
- top: 0;
- }
-
- .oo-ui-menuLayout-content {
- top: 0 !important;
- right: 0 !important;
- bottom: 0 !important;
- }
- }
- }
-
- .theme-oo-ui-menuLayout();
-}