123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- // /**
- // * Copyright © Magento, Inc. All rights reserved.
- // * See COPYING.txt for license details.
- // */
- //
- // Rule tree component
- // _____________________________________________
- .rule-tree-wrapper {
- line-height: 28px;
- }
- .rule-tree {
- .admin__field-control & {
- padding-top: .3rem;
- }
- ul {
- border-left: 1px dotted @color-gray52;
- list-style: none;
- padding-left: 16px;
- }
- li {
- margin: 0 0 10px;
- }
- .x-tree ul {
- border-left: none !important;
- padding-left: 0 !important;
- }
- .x-tree li {
- margin-bottom: 0 !important;
- line-height: normal !important;
- }
- .legend {
- font-weight: @font-weight__semibold;
- }
- }
- .rule-tree .fieldset {
- border: 0;
- margin: 0;
- min-width: 0; // Fixed Chrome fieldset issue
- padding: 0;
- }
- @-moz-document url-prefix() { // Fixed Firefox fieldset issue
- .rule-tree .fieldset {
- display: table-cell;
- }
- }
- .rule-param .label {
- color: @color-black;
- float: none;
- padding: 0;
- text-align: left;
- vertical-align: baseline;
- width: auto;
- }
- .rule-param .label-disabled {
- color: @color-gray-darken0;
- cursor: default;
- text-decoration: none;
- }
- .rule-chooser,
- .rule-param .element,
- .rule-param-edit .label {
- display: none;
- }
- .rule-chooser .field-row {
- .lib-clearfix();
- display: block;
- margin-bottom: 17px;
- .input-text {
- margin-top: 5px;
- }
- .ui-datepicker-trigger {
- margin-left: 5px;
- margin-top: -2px;
- }
- }
- .rule-param input,
- .rule-param select {
- margin: 0;
- min-width: 170px;
- width: auto !important;
- }
- .rule-param-edit .element {
- display: inline;
- }
- .rule-param-edit .element .addafter {
- padding-left: 5px;
- }
- [class^='rule-param-'],
- .rule-chooser-trigger {
- img {
- vertical-align: middle;
- }
- }
- .rule-chooser {
- border: 1px solid @color-gray80;
- margin: 20px;
- overflow: auto;
- padding: 15px 10px 5px;
- }
- .rule-param-wait {
- background: url(../mui/images/ajax-loader-small.gif) no-repeat left center;
- padding-left: 20px;
- }
|