From a1789ddde42033f1b05cc4929491214ee6e79383 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 17 Dec 2015 09:15:42 +0100 Subject: Update to MediaWiki 1.26.0 --- .../src/styles/layouts/ActionFieldLayout.less | 26 ----- .../oojs-ui/src/styles/layouts/BookletLayout.less | 43 -------- .../oojs-ui/src/styles/layouts/CardLayout.less | 5 - .../oojs-ui/src/styles/layouts/FieldLayout.less | 59 ----------- .../oojs-ui/src/styles/layouts/FieldsetLayout.less | 31 ------ .../oojs-ui/src/styles/layouts/FormLayout.less | 5 - .../oojs-ui/src/styles/layouts/IndexLayout.less | 13 --- .../oojs-ui/src/styles/layouts/MenuLayout.less | 108 --------------------- .../oojs-ui/src/styles/layouts/PageLayout.less | 5 - .../oojs-ui/src/styles/layouts/PanelLayout.less | 19 ---- .../oojs-ui/src/styles/layouts/StackLayout.less | 10 -- 11 files changed, 324 deletions(-) delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/ActionFieldLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/BookletLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/CardLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/FieldLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/FieldsetLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/FormLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/IndexLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/MenuLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/PageLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/PanelLayout.less delete mode 100644 vendor/oojs/oojs-ui/src/styles/layouts/StackLayout.less (limited to 'vendor/oojs/oojs-ui/src/styles/layouts') diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/ActionFieldLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/ActionFieldLayout.less deleted file mode 100644 index 2d4c2a66..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/ActionFieldLayout.less +++ /dev/null @@ -1,26 +0,0 @@ -@import '../common'; - -.oo-ui-actionFieldLayout { - &-field { - display: table; - table-layout: fixed; - width: 100%; - } - - &-input, - &-button { - display: table-cell; - vertical-align: middle; - } - - &-input { - padding-right: 1em; - } - - &-button { - width: 1%; - white-space: nowrap; - } - - .theme-oo-ui-actionFieldLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/BookletLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/BookletLayout.less deleted file mode 100644 index b31cb6d7..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/BookletLayout.less +++ /dev/null @@ -1,43 +0,0 @@ -@import '../common'; - -.oo-ui-bookletLayout { - &-stackLayout { - &.oo-ui-stackLayout-continuous > .oo-ui-panelLayout-scrollable { - overflow-y: hidden; - } - - > .oo-ui-panelLayout { - width: 100%; - - .oo-ui-box-sizing(border-box); - - &-scrollable { - overflow-y: auto; - } - - &-padded { - padding: 2em; - } - } - } - - &-outlinePanel { - &-editable > .oo-ui-outlineSelectWidget { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 3em; - overflow-y: auto; - } - - > .oo-ui-outlineControlsWidget { - position: absolute; - bottom: 0; - left: 0; - right: 0; - } - } - - .theme-oo-ui-bookletLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/CardLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/CardLayout.less deleted file mode 100644 index 4fdb20b2..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/CardLayout.less +++ /dev/null @@ -1,5 +0,0 @@ -@import '../common'; - -.oo-ui-cardLayout { - .theme-oo-ui-cardLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/FieldLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/FieldLayout.less deleted file mode 100644 index 799f9f4b..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/FieldLayout.less +++ /dev/null @@ -1,59 +0,0 @@ -@import '../common'; - -.oo-ui-fieldLayout { - display: block; - - &:before, - &:after { - content: " "; - display: table; - } - - &:after { - clear: both; - } - - &.oo-ui-fieldLayout-align-left, - &.oo-ui-fieldLayout-align-right { - > .oo-ui-fieldLayout-body { - > .oo-ui-labelElement-label, - > .oo-ui-fieldLayout-field { - display: block; - float: left; - } - } - } - - &.oo-ui-fieldLayout-align-right > .oo-ui-fieldLayout-body > .oo-ui-labelElement-label { - text-align: right; - } - - &.oo-ui-fieldLayout-align-inline > .oo-ui-fieldLayout-body { - display: table; - - > .oo-ui-labelElement-label, - > .oo-ui-fieldLayout-field { - display: table-cell; - vertical-align: middle; - } - } - - &.oo-ui-labelElement.oo-ui-fieldLayout-align-top > .oo-ui-fieldLayout-body > .oo-ui-labelElement-label { - display: inline-block; - } - - > .oo-ui-fieldLayout-help { - float: right; - - > .oo-ui-popupWidget > .oo-ui-popupWidget-popup { - z-index: 1; - } - - .oo-ui-fieldLayout-help-content { - padding: 0.5em 0.75em; - line-height: 1.5em; - } - } - - .theme-oo-ui-fieldLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/FieldsetLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/FieldsetLayout.less deleted file mode 100644 index 726b9310..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/FieldsetLayout.less +++ /dev/null @@ -1,31 +0,0 @@ -@import '../common'; - -.oo-ui-fieldsetLayout { - position: relative; - - &.oo-ui-iconElement > .oo-ui-iconElement-icon { - display: block; - position: absolute; - background-position: center center; - background-repeat: no-repeat; - } - - &.oo-ui-labelElement > .oo-ui-labelElement-label { - display: inline-block; - } - - > .oo-ui-fieldsetLayout-help { - float: right; - - > .oo-ui-popupWidget > .oo-ui-popupWidget-popup { - z-index: 1; - } - - .oo-ui-fieldsetLayout-help-content { - padding: 0.5em 0.75em; - line-height: 1.5em; - } - } - - .theme-oo-ui-fieldsetLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/FormLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/FormLayout.less deleted file mode 100644 index 7354e4bd..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/FormLayout.less +++ /dev/null @@ -1,5 +0,0 @@ -@import '../common'; - -.oo-ui-formLayout { - .theme-oo-ui-formLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/IndexLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/IndexLayout.less deleted file mode 100644 index 63f3f146..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/IndexLayout.less +++ /dev/null @@ -1,13 +0,0 @@ -@import '../common'; - -.oo-ui-indexLayout { - > .oo-ui-menuLayout-menu { - height: 3em; - } - - > .oo-ui-menuLayout-content { - top: 3em; - } - - .theme-oo-ui-indexLayout(); -} 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(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/PageLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/PageLayout.less deleted file mode 100644 index 91aa4571..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/PageLayout.less +++ /dev/null @@ -1,5 +0,0 @@ -@import '../common'; - -.oo-ui-pageLayout { - .theme-oo-ui-pageLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/PanelLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/PanelLayout.less deleted file mode 100644 index ed488ed7..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/PanelLayout.less +++ /dev/null @@ -1,19 +0,0 @@ -@import '../common'; - -.oo-ui-panelLayout { - position: relative; - - &-scrollable { - overflow-y: auto; - } - - &-expanded { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - } - - .theme-oo-ui-panelLayout(); -} diff --git a/vendor/oojs/oojs-ui/src/styles/layouts/StackLayout.less b/vendor/oojs/oojs-ui/src/styles/layouts/StackLayout.less deleted file mode 100644 index 6dd4fa79..00000000 --- a/vendor/oojs/oojs-ui/src/styles/layouts/StackLayout.less +++ /dev/null @@ -1,10 +0,0 @@ -@import '../common'; - -.oo-ui-stackLayout { - &-continuous > .oo-ui-panelLayout { - display: block; - position: relative; - } - - .theme-oo-ui-stackLayout(); -} -- cgit v1.2.3-54-g00ecf