_button.scss
5 years ago
_checkbox.scss
5 years ago
_collapse.scss
5 years ago
_colorpicker.scss
5 years ago
_dimensions.scss
5 years ago
_f-select.scss
5 years ago
_iconpicker.scss
5 years ago
_input.scss
5 years ago
_list-table.scss
5 years ago
_notice.scss
5 years ago
_pagination.scss
5 years ago
_radio.scss
5 years ago
_repeater.scss
5 years ago
_select.scss
5 years ago
_switcher.scss
5 years ago
_tabs.scss
5 years ago
_textarea.scss
5 years ago
_time.scss
5 years ago
_wp-media.scss
5 years ago
_dimensions.scss
76 lines
| 1 | .cx-vui-dimensions { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | justify-content: flex-start; |
| 5 | align-items: stretch; |
| 6 | |
| 7 | &__units { |
| 8 | display: flex; |
| 9 | justify-content: flex-end; |
| 10 | align-items: center; |
| 11 | margin: 0 42px 5px 0; |
| 12 | .rtl & { |
| 13 | margin: 0 0 5px 42px; |
| 14 | } |
| 15 | |
| 16 | span { |
| 17 | color: #7B7E81; |
| 18 | cursor: pointer; |
| 19 | margin: 0 0 0 2px; |
| 20 | .rtl & { |
| 21 | margin: 0 2px 0 0; |
| 22 | } |
| 23 | |
| 24 | &:first-child { |
| 25 | margin: 0; |
| 26 | } |
| 27 | |
| 28 | &.active { |
| 29 | color: $color__accent; |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | &__inputs { |
| 35 | display: flex; |
| 36 | justify-content: flex-start; |
| 37 | align-items: flex-start; |
| 38 | |
| 39 | .cx-vui-component-raw { |
| 40 | flex: 1 1 100px; |
| 41 | margin: 0 0 0 5px; |
| 42 | .rtl & { |
| 43 | margin: 0 5px 0 0; |
| 44 | } |
| 45 | |
| 46 | &:first-child { |
| 47 | margin: 0; |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | &__link { |
| 53 | width: 32px; |
| 54 | height: 32px; |
| 55 | display: flex; |
| 56 | justify-content: center; |
| 57 | align-items: center; |
| 58 | flex-shrink: 0; |
| 59 | margin: 0 0 0 10px; |
| 60 | cursor: pointer; |
| 61 | .rtl & { |
| 62 | margin: 0 10px 0 0; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | &.size-default { |
| 67 | max-width: 100%; |
| 68 | width: 442px; |
| 69 | } |
| 70 | |
| 71 | &.size-fullwidth { |
| 72 | max-width: 100%; |
| 73 | width: 100%; |
| 74 | } |
| 75 | } |
| 76 |