editor.scss
44 lines
| 1 | .components-base-control.components-gblocks-units-control-header__units { |
| 2 | display: block; |
| 3 | margin-bottom: 0; |
| 4 | |
| 5 | .components-base-control__field { |
| 6 | display: flex; |
| 7 | justify-content: space-between; |
| 8 | gap: 8px; |
| 9 | align-items: center; |
| 10 | } |
| 11 | |
| 12 | .components-base-control__label { |
| 13 | margin-bottom: 0; |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | .components-gblocks-control__units{ |
| 18 | .components-gblocks-control-buttons__units { |
| 19 | button.components-button { |
| 20 | background: #fff; |
| 21 | box-shadow: none !important; |
| 22 | color: #929da7; |
| 23 | font-size: 10px; |
| 24 | padding: 0 5px; |
| 25 | position: relative; |
| 26 | text-align: center; |
| 27 | text-shadow: none; |
| 28 | border: 0; |
| 29 | border-radius: 0 !important; |
| 30 | line-height: 20px; |
| 31 | padding: 0 5px; |
| 32 | height: auto; |
| 33 | |
| 34 | &.is-primary { |
| 35 | background: #fff !important; |
| 36 | color: #000 !important; |
| 37 | cursor: default; |
| 38 | z-index: 1; |
| 39 | font-weight: bold; |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 |