@itcase/ui 1.0.81 → 1.0.83

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 (59) hide show
  1. package/dist/components/Accordion.js +23 -7
  2. package/dist/components/Badge.js +3 -7
  3. package/dist/components/Button.js +1 -1
  4. package/dist/components/Cell.js +59 -55
  5. package/dist/components/Choice.js +5 -3
  6. package/dist/components/ContextMenu.js +1 -1
  7. package/dist/components/DatePicker.js +6 -2
  8. package/dist/components/Dropdown.js +1 -1
  9. package/dist/components/Label.js +14 -3
  10. package/dist/components/Search.js +6 -23
  11. package/dist/components/Select.js +4 -1
  12. package/dist/components/Tab.js +103 -104
  13. package/dist/constants/componentProps/borderColor.js +1 -1
  14. package/dist/constants/componentProps/fill.js +1 -1
  15. package/dist/constants/componentProps/textColor.js +1 -1
  16. package/dist/constants/componentProps/textColorHover.js +1 -1
  17. package/dist/css/components/Accordion/Accordion.css +4 -3
  18. package/dist/css/components/Avatar/Avatar.css +1 -1
  19. package/dist/css/components/Badge/Badge.css +1 -18
  20. package/dist/css/components/Button/Button.css +3 -14
  21. package/dist/css/components/Cell/Cell.css +12 -22
  22. package/dist/css/components/Chips/Chips.css +1 -2
  23. package/dist/css/components/Choice/Choice.css +1 -1
  24. package/dist/css/components/Code/Code.css +1 -1
  25. package/dist/css/components/ContextMenu/ContextMenu.css +2 -7
  26. package/dist/css/components/ContextMenu/css/__item/context-menu__item.css +1 -2
  27. package/dist/css/components/DatePicker/DatePicker.css +3 -0
  28. package/dist/css/components/Divider/Divider.css +24 -42
  29. package/dist/css/components/Dot/Dot.css +5 -9
  30. package/dist/css/components/Flex/Flex.css +2 -2
  31. package/dist/css/components/Flex/css/__item/flex__item_shape.css +1 -1
  32. package/dist/css/components/Grid/Grid.css +4 -2
  33. package/dist/css/components/Group/Group.css +1 -1
  34. package/dist/css/components/Icon/Icon.css +1 -1
  35. package/dist/css/components/Label/Label.css +1 -1
  36. package/dist/css/components/Modal/Modal.css +1 -1
  37. package/dist/css/components/Notification/Notification.css +7 -7
  38. package/dist/css/components/Notification/css/__item/notification__item_set_float.css +2 -2
  39. package/dist/css/components/Notification/css/__item/notification__item_set_form.css +2 -2
  40. package/dist/css/components/Notification/css/__item/notification__item_set_toast.css +2 -2
  41. package/dist/css/components/Notification/css/__item/notification__item_set_top.css +1 -1
  42. package/dist/css/components/Pagination/Pagination.css +14 -14
  43. package/dist/css/components/Pagination/css/__item/pagination__item.css +14 -14
  44. package/dist/css/components/RadioButton/RadioButton.css +2 -2
  45. package/dist/css/components/Search/Search.css +2 -3
  46. package/dist/css/components/Search/css/search-input/search-input.css +0 -1
  47. package/dist/css/components/Search/css/search-input/search-input_shape.css +1 -1
  48. package/dist/css/components/Segmented/Segmented.css +1 -1
  49. package/dist/css/components/Select/Select.css +33 -5
  50. package/dist/css/components/Select/css/__menu/select__menu-list-item_size.css +15 -0
  51. package/dist/css/components/Select/css/__menu/select__menu.css +5 -4
  52. package/dist/css/components/Select/css/__placeholder/select__placeholder.css +1 -0
  53. package/dist/css/components/Tab/Tab.css +31 -25
  54. package/dist/css/components/Textarea/Textarea.css +6 -6
  55. package/dist/css/components/Tile/Tile.css +2 -2
  56. package/dist/css/styles/border-color/border-color.css +2 -1
  57. package/dist/css/styles/fill/fill.css +19 -15
  58. package/dist/css/styles/text-color/text-color.css +2 -2
  59. package/package.json +1 -1
@@ -10,7 +10,7 @@
10
10
  .choice {
11
11
  &_shape {
12
12
  &_rounded {
13
- border-radius: 8px;
13
+ border-radius: var(--choice-shape-rounded, 8px);
14
14
  overflow: hidden;
15
15
  }
16
16
  &_circular {
@@ -25,7 +25,7 @@
25
25
  .code__input {
26
26
  &_shape {
27
27
  &_rounded {
28
- border-radius: 8px;
28
+ border-radius: var(--code-input-shape-rounded, 8px);
29
29
  }
30
30
  &_circular {
31
31
  border-radius: 50%;
@@ -1,11 +1,10 @@
1
1
  .context-menu__item {
2
- cursor: pointer;
3
2
  &-wrapper {
4
3
  display: flex;
5
4
  }
6
5
  &-title {
7
- flex: 1;
8
6
  white-space: nowrap;
7
+ flex: 1;
9
8
  }
10
9
  }
11
10
 
@@ -17,8 +16,8 @@
17
16
  .context-menu {
18
17
  &_shape {
19
18
  &_rounded {
19
+ border-radius: var(--context-menu-shape-rounded, 12px);
20
20
  overflow: hidden;
21
- border-radius: var(--context-menu-shape-rounded-default);
22
21
  }
23
22
  &_circular {
24
23
  border-radius: 50%;
@@ -37,7 +36,3 @@
37
36
  }
38
37
  }
39
38
  }
40
-
41
- :root {
42
- --context-menu-shape-rounded-default: 12px;
43
- }
@@ -1,10 +1,9 @@
1
1
  .context-menu__item {
2
- cursor: pointer;
3
2
  &-wrapper {
4
3
  display: flex;
5
4
  }
6
5
  &-title {
7
- flex: 1;
8
6
  white-space: nowrap;
7
+ flex: 1;
9
8
  }
10
9
  }
@@ -1115,6 +1115,9 @@
1115
1115
  right: 12px;
1116
1116
  transform: translateY(-50%);
1117
1117
  }
1118
+ &__clear-label {
1119
+ width: 100%;
1120
+ }
1118
1121
  &-wrapper {
1119
1122
  width: 100%;
1120
1123
  ^&__input-container {
@@ -5,58 +5,28 @@
5
5
  }
6
6
  .divider {
7
7
  &_size {
8
- &_xs {
9
- height: 1px;
10
- }
11
- &_s {
12
- height: 2px;
13
- }
14
- &_m {
15
- height: 3px;
16
- }
17
- &_l {
18
- height: 4px;
19
- }
20
- &_xl {
21
- height: 5px;
8
+ @each $size in xs, s, m, l, xl {
9
+ &_$(size) {
10
+ height: var(--divider-size-$(size)-height);
11
+ }
22
12
  }
23
13
  }
24
14
  &_direction {
25
15
  &_horizontal {
26
16
  &^^&_size {
27
- &_xs {
28
- height: 1px;
29
- }
30
- &_s {
31
- height: 2px;
32
- }
33
- &_m {
34
- height: 3px;
35
- }
36
- &_l {
37
- height: 4px;
38
- }
39
- &_xl {
40
- height: 5px;
17
+ @each $size in xs, s, m, l, xl {
18
+ &_$(size) {
19
+ height: var(--divider-size-$(size)-height);
20
+ }
41
21
  }
42
22
  }
43
23
  }
44
24
  &_vertical {
45
25
  &^^&_size {
46
- &_xs {
47
- width: 1px;
48
- }
49
- &_s {
50
- width: 2px;
51
- }
52
- &_m {
53
- width: 3px;
54
- }
55
- &_l {
56
- width: 4px;
57
- }
58
- &_xl {
59
- width: 5px;
26
+ @each $size in xs, s, m, l, xl {
27
+ &_$(size) {
28
+ width: var(--divider-size-$(size)-width);
29
+ }
60
30
  }
61
31
  }
62
32
  }
@@ -76,3 +46,15 @@
76
46
  }
77
47
  }
78
48
  }
49
+ :root {
50
+ --divider-size-xs-height: 1px;
51
+ --divider-size-s-height: 2px;
52
+ --divider-size-m-height: 3px;
53
+ --divider-size-l-height: 4px;
54
+ --divider-size-xl-height: 5px;
55
+ --divider-size-xs-width: 1px;
56
+ --divider-size-s-width: 2px;
57
+ --divider-size-m-width: 3px;
58
+ --divider-size-l-width: 4px;
59
+ --divider-size-xl-width: 5px;
60
+ }
@@ -1,14 +1,14 @@
1
1
  .dot {
2
2
  }
3
3
  .dot {
4
- min-width: var(--dot-width);
5
- min-height: var(--dot-height);
6
- max-width: var(--dot-width);
7
- max-height: var(--dot-height);
4
+ min-width: var(--dot-width, 16px);
5
+ min-height: var(--dot-height, 16px);
6
+ max-width: var(--dot-width, 16px);
7
+ max-height: var(--dot-height, 16px);
8
8
  }
9
9
  .dot_shape {
10
10
  &_rounded {
11
- border-radius: 12px;
11
+ border-radius: var(--dot-shape-rounded, 12px);
12
12
  }
13
13
  &_circular {
14
14
  border-radius: 50%;
@@ -17,7 +17,3 @@
17
17
  border-radius: 0;
18
18
  }
19
19
  }
20
- :root {
21
- --dot-width: 16px;
22
- --dot-height: 16px;
23
- }
@@ -74,7 +74,7 @@
74
74
  .flex {
75
75
  &_shape {
76
76
  &_rounded {
77
- border-radius: 12px;
77
+ border-radius: var(--flex-shape-rounded, 12px);
78
78
  }
79
79
  &_circular {
80
80
  border-radius: 50%;
@@ -159,7 +159,7 @@
159
159
  &__item {
160
160
  &_shape {
161
161
  &_rounded {
162
- border-radius: 12px;
162
+ border-radius: var(--flex-item-shape-rounded, 12px);
163
163
  }
164
164
  &_circular {
165
165
  border-radius: 50%;
@@ -2,7 +2,7 @@
2
2
  &__item {
3
3
  &_shape {
4
4
  &_rounded {
5
- border-radius: 12px;
5
+ border-radius: var(--flex-item-shape-rounded, 12px);
6
6
  }
7
7
  &_circular {
8
8
  border-radius: 50%;
@@ -58,6 +58,7 @@
58
58
  .grid {
59
59
  @each $val in 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200 {
60
60
  &_columns_$(val) {
61
+ grid-template-columns: repeat($(val), 1fr);
61
62
  & > ^&__wrapper {
62
63
  & > div {
63
64
  grid-template-columns: repeat($(val), 1fr);
@@ -101,10 +102,11 @@
101
102
  .grid {
102
103
  @each $val in 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200 {
103
104
  &_rows_$(val) {
105
+ grid-template-columns: repeat($(val), 1fr);
104
106
  & > ^&__wrapper {
105
107
  & > div {
106
108
  grid-template-columns: repeat($(val), 1fr);
107
- }
109
+ }
108
110
  }
109
111
  }
110
112
  }
@@ -112,7 +114,7 @@
112
114
  .grid {
113
115
  &_shape {
114
116
  &_rounded {
115
- border-radius: 12px;
117
+ border-radius: var(--grid-shape-rounded, 12px);
116
118
  }
117
119
  }
118
120
  }
@@ -46,7 +46,7 @@
46
46
  .group {
47
47
  &_shape {
48
48
  &_rounded {
49
- border-radius: 12px;
49
+ border-radius: var(--group-shape-rounded, 12px);
50
50
  }
51
51
  &_circular {
52
52
  border-radius: 50%;
@@ -116,7 +116,7 @@
116
116
  }
117
117
  .icon_shape {
118
118
  &_rounded {
119
- border-radius: 12px;
119
+ border-radius: var(--icon-shape-rounded, 12px);
120
120
  }
121
121
  &_circular {
122
122
  border-radius: 50%;
@@ -23,7 +23,7 @@
23
23
  .label {
24
24
  &_shape {
25
25
  &_rounded {
26
- border-radius: var(--label-shape-rounded-default);
26
+ border-radius: var(--label-shape-rounded-default, 6px);
27
27
  @each $size in xxs, xs, s, m, l, xl, xxl {
28
28
  &.label_size_$(size) {
29
29
  border-radius: var(--label-size-$(size)-shape-rounded);
@@ -17,7 +17,7 @@
17
17
  }
18
18
  .modal-shape {
19
19
  &_rounded {
20
- border-radius: 20px;
20
+ border-radius: var(--modal-shape-rounded, 20px);
21
21
  }
22
22
  &_circular {
23
23
  border-radius: 50%;
@@ -27,8 +27,8 @@
27
27
  &_set {
28
28
  &_float {
29
29
  width: 100%;
30
- border-radius: 8px;
31
- padding: 12px 16px;
30
+ padding: var(--notification-item-set-float-padding, 12px 16px);
31
+ border-radius: var(--notification-item-set-float-border-radius, 8px);
32
32
  @mixin elevation-8;
33
33
  ^^&-wrapper {
34
34
  display: flex;
@@ -43,7 +43,7 @@
43
43
  &_top {
44
44
  width: 100%;
45
45
  ^^&-wrapper {
46
- padding: 12px 0;
46
+ padding: var(--notification-item-set-top-padding, 12px 0);
47
47
  display: flex;
48
48
  flex-direction: column;
49
49
  justify-content: center;
@@ -57,8 +57,8 @@
57
57
  &_set {
58
58
  &_form {
59
59
  width: 100%;
60
- padding: 12px 16px;
61
- border-radius: 8px;
60
+ padding: var(--notification-item-set-form-padding, 12px 16px);
61
+ border-radius: var(--notification-item-set-form-border-radius, 8px);
62
62
  ^^&-wrapper {
63
63
  text-align: left;
64
64
  display: flex;
@@ -73,8 +73,8 @@
73
73
  &_toast {
74
74
  width: 100%;
75
75
  background: var(--color-surface-primary);
76
- padding: 12px 16px;
77
- border-radius: 8px;
76
+ padding: var(--notification-item-set-toast-padding, 12px 16px);
77
+ border-radius: var(--notification-item-set-toast-border-radius, 8px);
78
78
  display: flex;
79
79
  flex-direction: column;
80
80
  gap: 24px;
@@ -2,8 +2,8 @@
2
2
  &_set {
3
3
  &_float {
4
4
  width: 100%;
5
- border-radius: 8px;
6
- padding: 12px 16px;
5
+ padding: var(--notification-item-set-float-padding, 12px 16px);
6
+ border-radius: var(--notification-item-set-float-border-radius, 8px);
7
7
  @mixin elevation-8;
8
8
  ^^&-wrapper {
9
9
  display: flex;
@@ -2,8 +2,8 @@
2
2
  &_set {
3
3
  &_form {
4
4
  width: 100%;
5
- padding: 12px 16px;
6
- border-radius: 8px;
5
+ padding: var(--notification-item-set-form-padding, 12px 16px);
6
+ border-radius: var(--notification-item-set-form-border-radius, 8px);
7
7
  ^^&-wrapper {
8
8
  text-align: left;
9
9
  display: flex;
@@ -3,8 +3,8 @@
3
3
  &_toast {
4
4
  width: 100%;
5
5
  background: var(--color-surface-primary);
6
- padding: 12px 16px;
7
- border-radius: 8px;
6
+ padding: var(--notification-item-set-toast-padding, 12px 16px);
7
+ border-radius: var(--notification-item-set-toast-border-radius, 8px);
8
8
  display: flex;
9
9
  flex-direction: column;
10
10
  gap: 24px;
@@ -3,7 +3,7 @@
3
3
  &_top {
4
4
  width: 100%;
5
5
  ^^&-wrapper {
6
- padding: 12px 0;
6
+ padding: var(--notification-item-set-top-padding, 12px 0);
7
7
  display: flex;
8
8
  flex-direction: column;
9
9
  justify-content: center;
@@ -14,26 +14,17 @@
14
14
  }
15
15
  .pagination {
16
16
  &__item {
17
- border: solid 1px var(--paginator-item-default-border);
18
- height: 40px;
19
17
  width: 40px;
20
- display: flex;
21
- border-radius: 6px;
18
+ height: 40px;
22
19
  background: var(--paginator-item-default-fill);
23
- cursor: pointer;
20
+ border: solid 1px var(--paginator-item-default-border);
21
+ border-radius: var(--paginator-item-border-radius, 6px);
22
+ display: flex;
24
23
  transition: var(--paginator-item-transition);
24
+ cursor: pointer;
25
25
  &:hover {
26
26
  background: var(--paginator-item-default-fill-hover);
27
27
  }
28
- &-link {
29
- width: 100%;
30
- height: 100%;
31
- justify-content: center;
32
- align-items: center;
33
- display: flex;
34
- @mixin text-l;
35
- color: var(--paginator-item-default-text);
36
- }
37
28
  &_break {
38
29
  display: flex;
39
30
  ^&-link {
@@ -41,6 +32,15 @@
41
32
  align-items: flex-end;
42
33
  }
43
34
  }
35
+ &-link {
36
+ width: 100%;
37
+ height: 100%;
38
+ color: var(--paginator-item-default-text);
39
+ display: flex;
40
+ justify-content: center;
41
+ align-items: center;
42
+ @mixin text-l;
43
+ }
44
44
  }
45
45
  }
46
46
  .pagination {
@@ -1,25 +1,16 @@
1
1
  .pagination {
2
2
  &__item {
3
- border: solid 1px var(--paginator-item-default-border);
4
- height: 40px;
5
3
  width: 40px;
6
- display: flex;
7
- border-radius: 6px;
4
+ height: 40px;
8
5
  background: var(--paginator-item-default-fill);
9
- cursor: pointer;
6
+ border: solid 1px var(--paginator-item-default-border);
7
+ border-radius: var(--paginator-item-border-radius, 6px);
8
+ display: flex;
10
9
  transition: var(--paginator-item-transition);
10
+ cursor: pointer;
11
11
  &:hover {
12
12
  background: var(--paginator-item-default-fill-hover);
13
13
  }
14
- &-link {
15
- width: 100%;
16
- height: 100%;
17
- justify-content: center;
18
- align-items: center;
19
- display: flex;
20
- @mixin text-l;
21
- color: var(--paginator-item-default-text);
22
- }
23
14
  &_break {
24
15
  display: flex;
25
16
  ^&-link {
@@ -27,5 +18,14 @@
27
18
  align-items: flex-end;
28
19
  }
29
20
  }
21
+ &-link {
22
+ width: 100%;
23
+ height: 100%;
24
+ color: var(--paginator-item-default-text);
25
+ display: flex;
26
+ justify-content: center;
27
+ align-items: center;
28
+ @mixin text-l;
29
+ }
30
30
  }
31
31
  }
@@ -42,7 +42,7 @@
42
42
  z-index: 1;
43
43
  &_shape {
44
44
  &_rounded {
45
- border-radius: 4px;
45
+ border-radius: var(--radio-button-shape-rounded, 4px);
46
46
  position: relative;
47
47
  overflow: hidden;
48
48
  }
@@ -70,7 +70,7 @@
70
70
  &_shape {
71
71
  &_rounded {
72
72
  ^^&__item {
73
- border-radius: 4px;
73
+ border-radius: var(--radio-button-item-shape-rounded, 4px);
74
74
  position: relative;
75
75
  overflow: hidden;
76
76
  }
@@ -4,7 +4,7 @@
4
4
  .search {
5
5
  &_shape {
6
6
  &_rounded {
7
- border-radius: 6px;
7
+ border-radius: var(--search-shape-rounded, 6px);
8
8
  position: relative;
9
9
  }
10
10
  }
@@ -63,7 +63,6 @@
63
63
  right: 0;
64
64
  z-index: 2;
65
65
  transform: translate(0, -50%);
66
- cursor: pointer;
67
66
  }
68
67
  &&_state_focus,
69
68
  &&_state_filled {
@@ -85,7 +84,7 @@
85
84
  .search-input {
86
85
  &_shape {
87
86
  &_rounded {
88
- border-radius: 6px;
87
+ border-radius: var(--search-input-shape-rounded, 6px);
89
88
  position: relative;
90
89
  }
91
90
  }
@@ -52,7 +52,6 @@
52
52
  right: 0;
53
53
  z-index: 2;
54
54
  transform: translate(0, -50%);
55
- cursor: pointer;
56
55
  }
57
56
  &&_state_focus,
58
57
  &&_state_filled {
@@ -1,7 +1,7 @@
1
1
  .search-input {
2
2
  &_shape {
3
3
  &_rounded {
4
- border-radius: 6px;
4
+ border-radius: var(--search-input-shape-rounded, 6px);
5
5
  position: relative;
6
6
  }
7
7
  }
@@ -80,7 +80,7 @@
80
80
  .segmented {
81
81
  &_shape {
82
82
  &_rounded {
83
- border-radius: 8px;
83
+ border-radius: var(--segmented-shape-rounded, 8px);
84
84
  }
85
85
  &_circular {
86
86
  border-radius: 50%;
@@ -72,6 +72,17 @@
72
72
  }
73
73
  }
74
74
 
75
+ .select {
76
+ &_position {
77
+ &_right {
78
+ & .select__menu {
79
+ left: auto;
80
+ right: 0;
81
+ }
82
+ }
83
+ }
84
+ }
85
+
75
86
  .select {
76
87
  &__control {
77
88
  position: relative;
@@ -121,6 +132,7 @@
121
132
  .select {
122
133
  &__placeholder {
123
134
  position: absolute;
135
+ display: flex;
124
136
  }
125
137
  }
126
138
 
@@ -177,23 +189,40 @@
177
189
  }
178
190
  }
179
191
 
192
+ .select {
193
+ &__menu {
194
+ &-list {
195
+ &-item {
196
+ &_size {
197
+ @each $size in xs, s, m, l, xl, xxl {
198
+ &_$(size) {
199
+ padding: var(--select-menu-list-item-size-$(size)-padding, 5px 10px);
200
+ }
201
+ }
202
+ }
203
+ }
204
+ }
205
+ }
206
+ }
207
+
180
208
  .select {
181
209
  &__menu {
182
210
  width: 100%;
211
+ background: var(--color-surface-primary);
212
+ padding: 12px 0;
183
213
  margin: var(--select-menu-margin, 0);
214
+ border-radius: var(--select-menu-border-radius, 0);
184
215
  border-top: none;
185
216
  position: absolute;
186
217
  left: 0;
187
218
  top: 100%;
188
219
  z-index: 100000;
189
- border-radius: var(--select-menu-border-radius, 0);
190
220
  &-group-heading {
191
221
  z-index: 100000;
192
222
  }
193
223
  &-list {
194
224
  overflow-y: auto;
195
225
  max-height: 240px;
196
- border-radius: var(--select-menu-border-radius, 0);
197
226
  &-item {
198
227
  width: 100%;
199
228
  position: relative;
@@ -205,11 +234,11 @@
205
234
  }
206
235
  &_selected {
207
236
  height: 100%;
237
+ position: absolute;
208
238
  display: flex;
209
239
  align-items: center;
210
- position: absolute;
211
- right: 8px;
212
240
  top: 0;
241
+ right: 8px;
213
242
  }
214
243
  }
215
244
 
@@ -323,4 +352,3 @@
323
352
  }
324
353
  }
325
354
  }
326
-
@@ -0,0 +1,15 @@
1
+ .select {
2
+ &__menu {
3
+ &-list {
4
+ &-item {
5
+ &_size {
6
+ @each $size in xs, s, m, l, xl, xxl {
7
+ &_$(size) {
8
+ padding: var(--select-menu-list-item-size-$(size)-padding, 5px 10px);
9
+ }
10
+ }
11
+ }
12
+ }
13
+ }
14
+ }
15
+ }
@@ -1,20 +1,21 @@
1
1
  .select {
2
2
  &__menu {
3
3
  width: 100%;
4
+ background: var(--color-surface-primary);
5
+ padding: 12px 0;
4
6
  margin: var(--select-menu-margin, 0);
7
+ border-radius: var(--select-menu-border-radius, 0);
5
8
  border-top: none;
6
9
  position: absolute;
7
10
  left: 0;
8
11
  top: 100%;
9
12
  z-index: 100000;
10
- border-radius: var(--select-menu-border-radius, 0);
11
13
  &-group-heading {
12
14
  z-index: 100000;
13
15
  }
14
16
  &-list {
15
17
  overflow-y: auto;
16
18
  max-height: 240px;
17
- border-radius: var(--select-menu-border-radius, 0);
18
19
  &-item {
19
20
  width: 100%;
20
21
  position: relative;
@@ -26,11 +27,11 @@
26
27
  }
27
28
  &_selected {
28
29
  height: 100%;
30
+ position: absolute;
29
31
  display: flex;
30
32
  align-items: center;
31
- position: absolute;
32
- right: 8px;
33
33
  top: 0;
34
+ right: 8px;
34
35
  }
35
36
  }
36
37