@laser-ui/themes 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +5 -0
  3. package/_mixins.scss +5 -0
  4. package/_variables.scss +17 -0
  5. package/animations.scss +19 -0
  6. package/common.scss +9 -0
  7. package/components/accordion.scss +52 -0
  8. package/components/alert.scss +110 -0
  9. package/components/anchor.scss +69 -0
  10. package/components/avatar.scss +36 -0
  11. package/components/badge.scss +54 -0
  12. package/components/breadcrumb.scss +50 -0
  13. package/components/button.scss +245 -0
  14. package/components/card.scss +77 -0
  15. package/components/cascader.scss +313 -0
  16. package/components/checkbox.scss +194 -0
  17. package/components/circular-progress.scss +30 -0
  18. package/components/compose.scss +121 -0
  19. package/components/date-picker.scss +310 -0
  20. package/components/drawer.scss +113 -0
  21. package/components/dropdown.scss +156 -0
  22. package/components/empty.scss +27 -0
  23. package/components/fab.scss +293 -0
  24. package/components/form.scss +137 -0
  25. package/components/icon.scss +17 -0
  26. package/components/image.scss +213 -0
  27. package/components/input.scss +172 -0
  28. package/components/mask.scss +11 -0
  29. package/components/menu.scss +327 -0
  30. package/components/modal.scss +139 -0
  31. package/components/notification.scss +127 -0
  32. package/components/pagination.scss +134 -0
  33. package/components/popover.scss +197 -0
  34. package/components/progress.scss +125 -0
  35. package/components/radio.scss +203 -0
  36. package/components/rating.scss +75 -0
  37. package/components/select.scss +282 -0
  38. package/components/separator.scss +95 -0
  39. package/components/skeleton.scss +44 -0
  40. package/components/slider.scss +202 -0
  41. package/components/slides.scss +211 -0
  42. package/components/spinner.scss +43 -0
  43. package/components/stepper.scss +226 -0
  44. package/components/switch.scss +151 -0
  45. package/components/table.scss +297 -0
  46. package/components/tabs.scss +517 -0
  47. package/components/tag.scss +59 -0
  48. package/components/textarea.scss +69 -0
  49. package/components/time-picker.scss +212 -0
  50. package/components/timeline.scss +107 -0
  51. package/components/toast.scss +101 -0
  52. package/components/tooltip.scss +118 -0
  53. package/components/transfer.scss +122 -0
  54. package/components/tree-select.scss +218 -0
  55. package/components/tree.scss +169 -0
  56. package/components/upload.scss +367 -0
  57. package/components/wave.scss +36 -0
  58. package/index.scss +58 -0
  59. package/mixins/_polyfill.scss +34 -0
  60. package/mixins/_utils.scss +5 -0
  61. package/mixins/bem/_bem.scss +71 -0
  62. package/mixins/bem/_config.scss +4 -0
  63. package/mixins/bem/_function.scss +45 -0
  64. package/package.json +28 -0
  65. package/reboot.scss +5 -0
  66. package/root.scss +90 -0
  67. package/theme-dark.scss +62 -0
@@ -0,0 +1,212 @@
1
+ @use '../variables';
2
+ @use '../mixins';
3
+
4
+ $time-picker-cell-height: 28px;
5
+
6
+ @include mixins.b(time-picker) {
7
+ $selector: &;
8
+
9
+ position: relative;
10
+ display: inline-flex;
11
+ align-items: center;
12
+ height: var(--size);
13
+ padding: 0 calc(var(--horizontal-space) - 1px);
14
+ font-size: var(--font-size);
15
+ vertical-align: top;
16
+ cursor: pointer;
17
+ background-color: var(--#{variables.$prefix}background-color-input);
18
+ border: 1px solid var(--#{variables.$prefix}color-border);
19
+ border-radius: var(--#{variables.$prefix}border-radius);
20
+ transition: border-color var(--#{variables.$prefix}animation-duration-base) linear;
21
+
22
+ &:hover,
23
+ &:focus-within {
24
+ border-color: var(--#{variables.$prefix}color-light-primary);
25
+ }
26
+
27
+ @each $invalid, $color in ('warning': 'warning', 'error': 'danger') {
28
+ &[data-l-form-invalid='#{$invalid}'] {
29
+ border-color: var(--#{variables.$prefix}color-#{$color}) !important;
30
+
31
+ #{$selector}__input {
32
+ caret-color: var(--#{variables.$prefix}color-#{$color}) !important;
33
+ }
34
+
35
+ #{$selector}__indicator {
36
+ background-color: var(--#{variables.$prefix}color-#{$color}) !important;
37
+ }
38
+ }
39
+ }
40
+
41
+ @include mixins.when(disabled) {
42
+ color: var(--#{variables.$prefix}color-disabled);
43
+ pointer-events: none;
44
+ background-color: var(--#{variables.$prefix}background-color-disabled);
45
+
46
+ @include mixins.e(icon) {
47
+ color: var(--#{variables.$prefix}color-disabled);
48
+ }
49
+ }
50
+
51
+ @include mixins.m(small) {
52
+ --size: var(--#{variables.$prefix}select-size, var(--#{variables.$prefix}size-small));
53
+ --horizontal-space: var(--#{variables.$prefix}select-horizontal-space, var(--#{variables.$prefix}horizontal-space-small));
54
+ --font-size: var(--#{variables.$prefix}select-font-size, var(--#{variables.$prefix}font-size-small));
55
+ }
56
+
57
+ @include mixins.m(medium) {
58
+ --size: var(--#{variables.$prefix}select-size, var(--#{variables.$prefix}size-medium));
59
+ --horizontal-space: var(--#{variables.$prefix}select-horizontal-space, var(--#{variables.$prefix}horizontal-space-medium));
60
+ --font-size: var(--#{variables.$prefix}select-font-size, var(--#{variables.$prefix}font-size-medium));
61
+ }
62
+
63
+ @include mixins.m(large) {
64
+ --size: var(--#{variables.$prefix}select-size, var(--#{variables.$prefix}size-large));
65
+ --horizontal-space: var(--#{variables.$prefix}select-horizontal-space, var(--#{variables.$prefix}horizontal-space-large));
66
+ --font-size: var(--#{variables.$prefix}select-font-size, var(--#{variables.$prefix}font-size-large));
67
+ }
68
+
69
+ @include mixins.e(input) {
70
+ display: inline-block;
71
+ flex: 1 0 0;
72
+ min-width: 0;
73
+ padding: 0;
74
+ margin: 0;
75
+ font: inherit;
76
+ color: var(--#{variables.$prefix}color-text);
77
+ letter-spacing: inherit;
78
+ appearance: none;
79
+ caret-color: var(--#{variables.$prefix}color-primary);
80
+ background-color: transparent;
81
+ border: none;
82
+ outline: none;
83
+
84
+ &::placeholder {
85
+ color: var(--#{variables.$prefix}color-disabled);
86
+ }
87
+
88
+ &:disabled {
89
+ color: var(--#{variables.$prefix}color-disabled);
90
+
91
+ &::placeholder {
92
+ opacity: 0.5;
93
+ }
94
+ }
95
+ }
96
+
97
+ @include mixins.e(indicator) {
98
+ position: absolute;
99
+ bottom: 0;
100
+ left: 0;
101
+ z-index: 1;
102
+ width: 0;
103
+ height: 2px;
104
+ pointer-events: none;
105
+ background-color: var(--#{variables.$prefix}color-primary);
106
+ opacity: 0;
107
+ transition:
108
+ opacity var(--#{variables.$prefix}animation-duration-base) linear,
109
+ left var(--#{variables.$prefix}animation-duration-slow) linear,
110
+ width var(--#{variables.$prefix}animation-duration-base) linear;
111
+ }
112
+
113
+ @include mixins.e(separator) {
114
+ flex-shrink: 0;
115
+ margin: 0 8px;
116
+ color: var(--#{variables.$prefix}color-icon-decorator);
117
+ }
118
+
119
+ @include mixins.e(clear) {
120
+ position: absolute;
121
+ right: calc(var(--horizontal-space) - 1px);
122
+ z-index: 1;
123
+ color: var(--#{variables.$prefix}color-icon-decorator);
124
+ transition: color var(--#{variables.$prefix}animation-duration-base) linear;
125
+
126
+ &:hover,
127
+ &:focus {
128
+ color: var(--#{variables.$prefix}color-light-primary);
129
+ }
130
+
131
+ &:active {
132
+ color: var(--#{variables.$prefix}color-dark-primary);
133
+ }
134
+ }
135
+
136
+ @include mixins.e(icon) {
137
+ flex-shrink: 0;
138
+ margin-left: 4px;
139
+ color: var(--#{variables.$prefix}color-icon-decorator);
140
+ }
141
+
142
+ @include mixins.e(panel) {
143
+ display: inline-block;
144
+ vertical-align: top;
145
+ }
146
+
147
+ @include mixins.e(header) {
148
+ display: flex;
149
+ align-items: center;
150
+ justify-content: center;
151
+ height: 41px;
152
+ border-bottom: 1px solid var(--#{variables.$prefix}color-divider);
153
+ }
154
+
155
+ @include mixins.e(column) {
156
+ position: relative;
157
+ display: inline-block;
158
+ height: calc(8px + #{$time-picker-cell-height} * 8);
159
+ padding: 4px 0;
160
+ margin: 0;
161
+ overflow: hidden auto;
162
+ vertical-align: top;
163
+ list-style: none;
164
+
165
+ &::after {
166
+ display: block;
167
+ height: calc(#{$time-picker-cell-height} * 7);
168
+ content: '';
169
+ }
170
+ }
171
+
172
+ @include mixins.e(cell) {
173
+ position: relative;
174
+ display: flex;
175
+ align-items: center;
176
+ justify-content: center;
177
+ width: 40px;
178
+ height: $time-picker-cell-height;
179
+ margin: 0;
180
+ font-variant-numeric: tabular-nums;
181
+ list-style: none;
182
+ cursor: pointer;
183
+
184
+ &:not(.is-active):hover {
185
+ background-color: var(--#{variables.$prefix}background-color-hover);
186
+ }
187
+
188
+ @include mixins.when(active) {
189
+ background-color: var(--#{variables.$prefix}background-color-primary);
190
+ }
191
+
192
+ @include mixins.when(disabled) {
193
+ color: var(--#{variables.$prefix}color-disabled);
194
+ pointer-events: none;
195
+ }
196
+ }
197
+
198
+ @include mixins.e(footer) {
199
+ display: flex;
200
+ align-items: center;
201
+ justify-content: center;
202
+ min-height: 41px;
203
+ border-top: 1px solid var(--#{variables.$prefix}color-divider);
204
+ }
205
+ }
206
+
207
+ @include mixins.b(time-picker-popup) {
208
+ position: fixed;
209
+ background-color: var(--#{variables.$prefix}background-color);
210
+ border-radius: var(--#{variables.$prefix}border-radius);
211
+ box-shadow: var(--#{variables.$prefix}box-shadow-popup);
212
+ }
@@ -0,0 +1,107 @@
1
+ @use '../variables';
2
+ @use '../mixins';
3
+
4
+ @include mixins.b(timeline) {
5
+ $selector: &;
6
+
7
+ @include mixins.e(content) {
8
+ display: flex;
9
+ align-items: stretch;
10
+
11
+ #{$selector}__text {
12
+ display: inline-flex;
13
+ align-items: center;
14
+ }
15
+
16
+ #{$selector}__track {
17
+ display: inline-flex;
18
+ flex-direction: column;
19
+ align-items: center;
20
+ }
21
+
22
+ #{$selector}__separator {
23
+ flex: 1 0 0;
24
+ width: 2px;
25
+ }
26
+
27
+ @include mixins.m(gap) {
28
+ height: 20px;
29
+ }
30
+ }
31
+
32
+ @include mixins.e(text-container) {
33
+ display: flex;
34
+
35
+ #{$selector}__text {
36
+ padding: 0 8px;
37
+ text-align: center;
38
+ }
39
+ }
40
+
41
+ @include mixins.e(text) {
42
+ flex: 1 0 0;
43
+
44
+ @include mixins.m(left) {
45
+ justify-content: flex-end;
46
+ text-align: right;
47
+ }
48
+ }
49
+
50
+ @include mixins.e(track-container) {
51
+ display: flex;
52
+
53
+ #{$selector}__track {
54
+ position: relative;
55
+ display: flex;
56
+ flex: 1 0 0;
57
+ align-items: center;
58
+ }
59
+
60
+ #{$selector}__separator {
61
+ flex: 1 0 0;
62
+ height: 2px;
63
+ }
64
+ }
65
+
66
+ @include mixins.e(track) {
67
+ color: var(--color);
68
+
69
+ @include mixins.when(wait) {
70
+ --color: var(--#{variables.$prefix}timeline-color, var(--#{variables.$prefix}color-disabled));
71
+ }
72
+
73
+ @include mixins.when(active) {
74
+ --color: var(--#{variables.$prefix}timeline-color, var(--#{variables.$prefix}color-primary));
75
+ }
76
+
77
+ @include mixins.when(completed) {
78
+ --color: var(--#{variables.$prefix}timeline-color, var(--#{variables.$prefix}color-success));
79
+ }
80
+
81
+ @include mixins.when(warning) {
82
+ --color: var(--#{variables.$prefix}timeline-color, var(--#{variables.$prefix}color-warning));
83
+ }
84
+
85
+ @include mixins.when(error) {
86
+ --color: var(--#{variables.$prefix}timeline-color, var(--#{variables.$prefix}color-danger));
87
+ }
88
+ }
89
+
90
+ @include mixins.e(dot) {
91
+ position: relative;
92
+ z-index: 5;
93
+ width: 12px;
94
+ height: 12px;
95
+ background-color: var(--#{variables.$prefix}background-color);
96
+ border: 2px solid currentcolor;
97
+ border-radius: 50%;
98
+ }
99
+
100
+ @include mixins.e(separator) {
101
+ background-color: var(--#{variables.$prefix}background-color-indicator);
102
+
103
+ @include mixins.m(hidden) {
104
+ background-color: transparent;
105
+ }
106
+ }
107
+ }
@@ -0,0 +1,101 @@
1
+ @use '../variables';
2
+ @use '../mixins';
3
+
4
+ @mixin toast-root {
5
+ position: fixed;
6
+ right: 20px;
7
+ left: 20px;
8
+ z-index: var(--#{variables.$prefix}zindex-max);
9
+ display: flex;
10
+ flex-direction: column;
11
+ pointer-events: none;
12
+ }
13
+
14
+ ##{variables.$prefix}toast-t-root {
15
+ top: 20px;
16
+
17
+ @include toast-root;
18
+ }
19
+
20
+ ##{variables.$prefix}toast-b-root {
21
+ bottom: 20px;
22
+
23
+ @include toast-root;
24
+ }
25
+
26
+ @include mixins.b(toast) {
27
+ --color: var(--#{variables.$prefix}toast-color);
28
+
29
+ display: flex;
30
+ align-items: center;
31
+ max-width: calc(100vw - 40px);
32
+ padding: 6px 16px;
33
+ margin: 0 auto 12px;
34
+ pointer-events: all;
35
+ background-color: var(--#{variables.$prefix}background-color);
36
+ border-radius: var(--#{variables.$prefix}border-radius);
37
+ outline: none;
38
+ box-shadow: var(--#{variables.$prefix}box-shadow-dialog);
39
+
40
+ @include mixins.m(success) {
41
+ --color: var(--#{variables.$prefix}toast-color, var(--#{variables.$prefix}color-success));
42
+ }
43
+
44
+ @include mixins.m(warning) {
45
+ --color: var(--#{variables.$prefix}toast-color, var(--#{variables.$prefix}color-warning));
46
+ }
47
+
48
+ @include mixins.m(error) {
49
+ --color: var(--#{variables.$prefix}toast-color, var(--#{variables.$prefix}color-danger));
50
+ }
51
+
52
+ @include mixins.m(info) {
53
+ --color: var(--#{variables.$prefix}toast-color, var(--#{variables.$prefix}color-primary));
54
+ }
55
+
56
+ @include mixins.e(icon) {
57
+ padding: 4px 0;
58
+ margin-right: 8px;
59
+ font-size: 1.5em;
60
+ color: var(--color);
61
+ }
62
+
63
+ @include mixins.e(message) {
64
+ flex: 1 0 0;
65
+ }
66
+
67
+ @include mixins.e(close) {
68
+ display: inline-flex;
69
+ align-items: center;
70
+ justify-content: center;
71
+ padding: 4px;
72
+ margin: 0 0 0 8px;
73
+ font: inherit;
74
+ font-size: 1.25em;
75
+ line-height: 1;
76
+ white-space: nowrap;
77
+ vertical-align: top;
78
+ appearance: none;
79
+ cursor: pointer;
80
+ background-color: transparent;
81
+ border: none;
82
+ border-radius: 50%;
83
+ outline: none;
84
+ transition:
85
+ color var(--#{variables.$prefix}animation-duration-base) linear,
86
+ background-color var(--#{variables.$prefix}animation-duration-base) linear;
87
+
88
+ &:hover,
89
+ &:focus {
90
+ background-color: var(--#{variables.$prefix}background-color-hover);
91
+ }
92
+
93
+ &:active {
94
+ color: var(--#{variables.$prefix}color-dark-primary);
95
+ }
96
+ }
97
+
98
+ @include mixins.e(message) {
99
+ padding: 4px 0;
100
+ }
101
+ }
@@ -0,0 +1,118 @@
1
+ @use '../variables';
2
+ @use '../mixins';
3
+
4
+ @include mixins.b(tooltip) {
5
+ position: fixed;
6
+ padding: 4px 12px;
7
+ /* stylelint-disable-next-line declaration-property-value-allowed-list */
8
+ color: #eef0f3;
9
+ white-space: pre;
10
+ background-color: var(--#{variables.$prefix}tooltip-background-color);
11
+ /* stylelint-disable-next-line declaration-property-value-allowed-list */
12
+ border-radius: 4px;
13
+ outline: none;
14
+
15
+ @include mixins.m(top) {
16
+ @include mixins.e(arrow) {
17
+ bottom: 0;
18
+ left: 50%;
19
+ transform: translate(-50%, 50%) rotate(45deg);
20
+ }
21
+ }
22
+
23
+ @include mixins.m(top-left) {
24
+ @include mixins.e(arrow) {
25
+ bottom: 0;
26
+ left: 20px;
27
+ transform: translate(0, 50%) rotate(45deg);
28
+ }
29
+ }
30
+
31
+ @include mixins.m(top-right) {
32
+ @include mixins.e(arrow) {
33
+ right: 20px;
34
+ bottom: 0;
35
+ transform: translate(0, 50%) rotate(45deg);
36
+ }
37
+ }
38
+
39
+ @include mixins.m(right) {
40
+ @include mixins.e(arrow) {
41
+ top: 50%;
42
+ left: 0;
43
+ transform: translate(-50%, -50%) rotate(45deg);
44
+ }
45
+ }
46
+
47
+ @include mixins.m(right-top) {
48
+ @include mixins.e(arrow) {
49
+ top: 12px;
50
+ left: 0;
51
+ transform: translate(-50%, 0) rotate(45deg);
52
+ }
53
+ }
54
+
55
+ @include mixins.m(right-bottom) {
56
+ @include mixins.e(arrow) {
57
+ bottom: 12px;
58
+ left: 0;
59
+ transform: translate(-50%, 0) rotate(45deg);
60
+ }
61
+ }
62
+
63
+ @include mixins.m(bottom) {
64
+ @include mixins.e(arrow) {
65
+ top: 0;
66
+ left: 50%;
67
+ transform: translate(-50%, -50%) rotate(45deg);
68
+ }
69
+ }
70
+
71
+ @include mixins.m(bottom-left) {
72
+ @include mixins.e(arrow) {
73
+ top: 0;
74
+ left: 20px;
75
+ transform: translate(0, -50%) rotate(45deg);
76
+ }
77
+ }
78
+
79
+ @include mixins.m(bottom-right) {
80
+ @include mixins.e(arrow) {
81
+ top: 0;
82
+ right: 20px;
83
+ transform: translate(0, -50%) rotate(45deg);
84
+ }
85
+ }
86
+
87
+ @include mixins.m(left) {
88
+ @include mixins.e(arrow) {
89
+ top: 50%;
90
+ right: 0;
91
+ transform: translate(50%, -50%) rotate(45deg);
92
+ }
93
+ }
94
+
95
+ @include mixins.m(left-top) {
96
+ @include mixins.e(arrow) {
97
+ top: 12px;
98
+ right: 0;
99
+ transform: translate(50%, 0) rotate(45deg);
100
+ }
101
+ }
102
+
103
+ @include mixins.m(left-bottom) {
104
+ @include mixins.e(arrow) {
105
+ right: 0;
106
+ bottom: 12px;
107
+ transform: translate(50%, 0) rotate(45deg);
108
+ }
109
+ }
110
+
111
+ @include mixins.e(arrow) {
112
+ position: absolute;
113
+ width: 6px;
114
+ height: 6px;
115
+ pointer-events: none;
116
+ background-color: inherit;
117
+ }
118
+ }
@@ -0,0 +1,122 @@
1
+ @use '../variables';
2
+ @use '../mixins';
3
+
4
+ $transfer-option-height: 32px;
5
+
6
+ @include mixins.b(transfer) {
7
+ $selector: &;
8
+
9
+ display: flex;
10
+ align-items: center;
11
+
12
+ @each $invalid, $color in ('warning': 'warning', 'error': 'danger') {
13
+ &[data-l-form-invalid='#{$invalid}'] {
14
+ #{$selector}__panel {
15
+ border-color: var(--#{variables.$prefix}color-#{$color}) !important;
16
+ }
17
+ }
18
+ }
19
+
20
+ @include mixins.when(disabled) {
21
+ pointer-events: none;
22
+ filter: opacity(50%);
23
+ }
24
+
25
+ @include mixins.e(panel) {
26
+ flex: 1 0 0;
27
+ overflow: hidden;
28
+ border: 1px solid var(--#{variables.$prefix}color-border);
29
+ border-radius: var(--#{variables.$prefix}border-radius);
30
+ }
31
+
32
+ @include mixins.e(actions) {
33
+ display: flex;
34
+ flex-direction: column;
35
+ margin: 0 8px;
36
+
37
+ .#{variables.$prefix}button {
38
+ --#{variables.$prefix}button-size: 20px;
39
+ --#{variables.$prefix}button-font-size: 14px;
40
+ }
41
+
42
+ .#{variables.$prefix}button + .#{variables.$prefix}button {
43
+ margin-top: 4px;
44
+ }
45
+ }
46
+
47
+ @include mixins.e(header) {
48
+ display: flex;
49
+ align-items: center;
50
+ height: 41px;
51
+ padding: 0 12px;
52
+ border-bottom: 1px solid var(--#{variables.$prefix}color-divider);
53
+ }
54
+
55
+ @include mixins.e(header-title) {
56
+ @include mixins.utils-ellipsis;
57
+
58
+ flex: 1 0 0;
59
+ text-align: right;
60
+ }
61
+
62
+ @include mixins.e(search) {
63
+ margin: 10px 12px;
64
+ }
65
+
66
+ @include mixins.e(list-container) {
67
+ position: relative;
68
+ }
69
+
70
+ @include mixins.e(list) {
71
+ position: relative;
72
+ height: calc(#{$transfer-option-height} * 6);
73
+ padding: 0;
74
+ margin: 0;
75
+ overflow: hidden auto;
76
+ list-style: none;
77
+ }
78
+
79
+ @include mixins.e(loading) {
80
+ position: absolute;
81
+ top: 0;
82
+ right: 0;
83
+ bottom: 0;
84
+ left: 0;
85
+ z-index: 5;
86
+ display: flex;
87
+ align-items: center;
88
+ justify-content: center;
89
+ color: var(--#{variables.$prefix}color-primary);
90
+ background-color: rgb(var(--#{variables.$prefix}background-color-rgb) / 80%);
91
+ }
92
+
93
+ @include mixins.e(option) {
94
+ position: relative;
95
+ display: flex;
96
+ align-items: center;
97
+ min-height: $transfer-option-height;
98
+ padding: 0 12px;
99
+ cursor: pointer;
100
+ transition: background-color var(--#{variables.$prefix}animation-duration-base) linear;
101
+
102
+ &:hover {
103
+ background-color: var(--#{variables.$prefix}background-color-hover);
104
+ }
105
+
106
+ @include mixins.when(disabled) {
107
+ color: var(--#{variables.$prefix}color-disabled);
108
+ pointer-events: none;
109
+ }
110
+ }
111
+
112
+ @include mixins.e(option-prefix) {
113
+ display: inline-flex;
114
+ margin-right: 8px;
115
+ }
116
+
117
+ @include mixins.e(option-content) {
118
+ @include mixins.utils-ellipsis;
119
+
120
+ flex: 1 0 0;
121
+ }
122
+ }