diff --git a/app/design/adminhtml/Magento/backend/Magento_GiftCard/web/css/source/module.less b/app/design/adminhtml/Magento/backend/Magento_GiftCard/web/css/source/module.less index 12ccb3531eab5..d3a921dc16dc0 100644 --- a/app/design/adminhtml/Magento/backend/Magento_GiftCard/web/css/source/module.less +++ b/app/design/adminhtml/Magento/backend/Magento_GiftCard/web/css/source/module.less @@ -3,19 +3,13 @@ // * See COPYING.txt for license details. // */ -// -// IE9 styles -// --------------------------------------------- - -.ie9 { +.ie9 & { .giftcard-info-container { - .fieldset { - .admin__field { - .admin__field-label { - display: table; - span { - display: table-cell; - } + .admin__field { + .admin__field-label { + display: table; + span { + display: table-cell; } } } diff --git a/app/design/adminhtml/Magento/backend/Magento_Reward/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Reward/web/css/source/_module.less new file mode 100644 index 0000000000000..b44b2bc3aa7d2 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/Magento_Reward/web/css/source/_module.less @@ -0,0 +1,41 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Reward Page +// _____________________________________________ + +// +// Variables +// --------------------------------------------- + +@boundary__margin: 30px; +@boundary__ratio: 1.75; + +.adminhtml-reward-rate-edit { + .field-rate { + .admin__field-control { + &:extend(.abs-clearfix all); + } + .boundary { + float: left; + width: 125px; + } + .boundary-upper { + margin-left: @boundary__margin; + position: relative; + &:before { + content: '»'; + left: -(@boundary__margin / @boundary__ratio); + position: absolute; + top: 25%; + } + label { + .lib-visibility-hidden(); + display: block; + } + } + } +} diff --git a/app/design/adminhtml/Magento/backend/Magento_VersionsCms/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_VersionsCms/web/css/source/_module.less new file mode 100644 index 0000000000000..5aba4abd3f465 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/Magento_VersionsCms/web/css/source/_module.less @@ -0,0 +1,35 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Hierarchy styles +// _____________________________________________ + +.cms-hierarchy { + &:extend(.abs-clearfix all); + + .cms-hierarchy-tree, + .cms-hierarchy-node { + float: left; + width: 50%; + } + + .cms_page_grid_container { + clear: both; + } + + .admin__page-section-title { + .actions { + float: right; + } + } + + .buttons-set { + margin: 0 0 1.14rem; + button { + margin-right: 0.36rem; + } + } +}