_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
_repeater.scss
133 lines
| 1 | .cx-vui-repeater { |
| 2 | &__actions { |
| 3 | display: flex; |
| 4 | align-items: center; |
| 5 | } |
| 6 | &__tip { |
| 7 | color: $color__text; |
| 8 | margin: 0 0 0 20px; |
| 9 | .rtl & { |
| 10 | margin: 0 20px 0 0; |
| 11 | } |
| 12 | } |
| 13 | .cx-vui-collapse__content > & { |
| 14 | margin-bottom: 25px; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | .cx-vui-repeater-item { |
| 19 | &__handle { |
| 20 | cursor: n-resize; |
| 21 | display: flex; |
| 22 | align-items: center; |
| 23 | justify-content: center; |
| 24 | width: 40px; |
| 25 | height: 40px; |
| 26 | margin: -12px 0 -10px -16px; |
| 27 | .rtl & { |
| 28 | margin: -12px -16px -10px 0; |
| 29 | } |
| 30 | svg { |
| 31 | line { |
| 32 | stroke: $color__border-off-panel; |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | &__heading { |
| 37 | display: flex; |
| 38 | border-bottom: 1px solid $color__border-in-panel; |
| 39 | padding: 18px 20px 16px; |
| 40 | align-items: center; |
| 41 | justify-content: space-between; |
| 42 | -webkit-touch-callout: none; |
| 43 | -webkit-user-select: none; |
| 44 | -khtml-user-select: none; |
| 45 | -moz-user-select: none; |
| 46 | -ms-user-select: none; |
| 47 | user-select: none; |
| 48 | &--is-collpased { |
| 49 | border-bottom: none; |
| 50 | } |
| 51 | &-start { |
| 52 | display: flex; |
| 53 | align-items: center; |
| 54 | cursor: pointer; |
| 55 | } |
| 56 | &-end { |
| 57 | display: flex; |
| 58 | align-items: center; |
| 59 | } |
| 60 | } |
| 61 | &__title, |
| 62 | &__subtitle { |
| 63 | font-size: 15px; |
| 64 | line-height: 17px; |
| 65 | } |
| 66 | &__title { |
| 67 | font-weight: 500; |
| 68 | color: $color__accent; |
| 69 | margin: 0 10px 0 0; |
| 70 | .rtl & { |
| 71 | margin: 0 0 0 10px; |
| 72 | } |
| 73 | } |
| 74 | &__subtitle { |
| 75 | font-style: italic; |
| 76 | color: $color__text; |
| 77 | } |
| 78 | &__collapse { |
| 79 | margin: 0 8px 0 0; |
| 80 | .rtl & { |
| 81 | margin: 0 0 0 8px; |
| 82 | } |
| 83 | |
| 84 | &--is-collpased { |
| 85 | margin: 0 8px 4px 0; |
| 86 | transform: rotate( -90deg ); |
| 87 | .rtl & { |
| 88 | margin: 0 0 4px 8px; |
| 89 | } |
| 90 | } |
| 91 | path { |
| 92 | fill: $color__accent; |
| 93 | } |
| 94 | } |
| 95 | &__content { |
| 96 | &--is-collpased { |
| 97 | display: none; |
| 98 | } |
| 99 | } |
| 100 | &__copy, |
| 101 | &__clean { |
| 102 | cursor: pointer; |
| 103 | width: 20px; |
| 104 | height: 20px; |
| 105 | display: flex; |
| 106 | align-items: center; |
| 107 | justify-content: center; |
| 108 | margin: 0 0 0 10px; |
| 109 | position: relative; |
| 110 | .rtl & { |
| 111 | margin: 0 10px 0 0; |
| 112 | } |
| 113 | .cx-vui-tooltip { |
| 114 | width: 80px; |
| 115 | } |
| 116 | path { |
| 117 | transition: all 150ms linear; |
| 118 | fill: $color__text; |
| 119 | } |
| 120 | &:hover { |
| 121 | path { |
| 122 | fill: $color__accent; |
| 123 | } |
| 124 | } |
| 125 | } |
| 126 | &__confrim-del, |
| 127 | &__cancel-del { |
| 128 | text-decoration: underline; |
| 129 | } |
| 130 | &__confrim-del { |
| 131 | color: $color__error; |
| 132 | } |
| 133 | } |