@itcase/ui 1.0.80 → 1.0.82
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.
- package/dist/components/Accordion.js +3 -5
- package/dist/components/Avatar.js +4 -3
- package/dist/components/Badge.js +5 -9
- package/dist/components/Breadcrumbs.js +45 -51
- package/dist/components/Button.js +10 -35
- package/dist/components/Cell.js +103 -97
- package/dist/components/Choice.js +1 -1
- package/dist/components/ContextMenu.js +1 -1
- package/dist/components/DatePicker.js +86 -15
- package/dist/components/Icon.js +8 -8
- package/dist/components/Label.js +7 -4
- package/dist/components/MenuItem.js +2 -2
- package/dist/components/Modal.js +17 -15
- package/dist/components/Pagination.js +64 -2
- package/dist/components/Search.js +14 -61
- package/dist/components/Segmented.js +18 -4
- package/dist/components/Swiper.js +2 -2
- package/dist/components/Tab.js +108 -110
- package/dist/components/Text.js +1 -1
- package/dist/components/Tile.js +1 -1
- package/dist/components/Title.js +1 -1
- package/dist/constants/componentProps/borderColor.js +1 -1
- package/dist/constants/componentProps/fill.js +1 -1
- package/dist/constants/componentProps/strokeColor.js +1 -1
- package/dist/constants/componentProps/textColor.js +1 -1
- package/dist/constants/componentProps/textColorActive.js +1 -1
- package/dist/constants/componentProps/textColorHover.js +1 -1
- package/dist/css/components/Accordion/Accordion.css +1 -2
- package/dist/css/components/Avatar/Avatar.css +7 -4
- package/dist/css/components/Badge/Badge.css +1 -18
- package/dist/css/components/Button/Button.css +3 -14
- package/dist/css/components/Cell/Cell.css +12 -22
- package/dist/css/components/Chips/Chips.css +1 -2
- package/dist/css/components/Choice/Choice.css +4 -4
- package/dist/css/components/Choice/css/__item/choice__item.css +1 -2
- package/dist/css/components/Code/Code.css +1 -1
- package/dist/css/components/ContextMenu/ContextMenu.css +2 -7
- package/dist/css/components/ContextMenu/css/__item/context-menu__item.css +1 -2
- package/dist/css/components/DadataHintField/DadataHintField.css +1 -0
- package/dist/css/components/DatePicker/DatePicker.css +30 -0
- package/dist/css/components/Divider/Divider.css +24 -42
- package/dist/css/components/Dot/Dot.css +5 -9
- package/dist/css/components/Dropdown/Dropdown.css +9 -0
- package/dist/css/components/Flex/Flex.css +2 -2
- package/dist/css/components/Flex/css/__item/flex__item_shape.css +1 -1
- package/dist/css/components/Grid/Grid.css +1 -1
- package/dist/css/components/Group/Group.css +1 -1
- package/dist/css/components/Icon/Icon.css +1 -1
- package/dist/css/components/Label/Label.css +1 -1
- package/dist/css/components/MenuItem/MenuItem.css +11 -1
- package/dist/css/components/Modal/Modal.css +1 -1
- package/dist/css/components/Notification/Notification.css +38 -25
- package/dist/css/components/Notification/css/__item/notification__item_set_float.css +3 -10
- package/dist/css/components/Notification/css/__item/notification__item_set_form.css +2 -3
- package/dist/css/components/Notification/css/__item/notification__item_set_toast.css +19 -0
- package/dist/css/components/Notification/css/__item/notification__item_set_top.css +1 -2
- package/dist/css/components/Notification/css/__item/notification__item_status.css +3 -3
- package/dist/css/components/Notification/css/__item/notification__item_type_close-button.css +10 -7
- package/dist/css/components/Pagination/Pagination.css +14 -14
- package/dist/css/components/Pagination/css/__item/pagination__item.css +14 -14
- package/dist/css/components/RadioButton/RadioButton.css +2 -2
- package/dist/css/components/Search/Search.css +8 -9
- package/dist/css/components/Search/css/search-input/search-input.css +6 -7
- package/dist/css/components/Search/css/search-input/search-input_shape.css +1 -1
- package/dist/css/components/Segmented/Segmented.css +1 -1
- package/dist/css/components/Select/Select.css +18 -5
- package/dist/css/components/Select/css/__control/select__control_shape.css +1 -1
- package/dist/css/components/Select/css/__multi-value/select__multi-value.css +5 -2
- package/dist/css/components/Swiper/Swiper.css +2 -2
- package/dist/css/components/Tab/Tab.css +3 -14
- package/dist/css/components/Textarea/Textarea.css +5 -5
- package/dist/css/components/Tile/Tile.css +2 -2
- package/dist/css/styles/border-color/border-color.css +2 -1
- package/dist/css/styles/fill/fill.css +19 -15
- package/dist/css/styles/text-color/text-color.css +2 -2
- package/package.json +15 -15
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
&_set {
|
|
3
3
|
&_form {
|
|
4
4
|
width: 100%;
|
|
5
|
+
padding: var(--notification-item-set-form-padding, 12px 16px);
|
|
6
|
+
border-radius: var(--notification-item-set-form-border-radius, 8px);
|
|
5
7
|
^^&-wrapper {
|
|
6
8
|
text-align: left;
|
|
7
|
-
padding: 12px 16px;
|
|
8
|
-
border-radius: 8px;
|
|
9
|
-
position: relative;
|
|
10
9
|
display: flex;
|
|
11
10
|
flex-direction: column;
|
|
12
11
|
gap: 4px;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.notification__item {
|
|
2
|
+
&_set {
|
|
3
|
+
&_toast {
|
|
4
|
+
width: 100%;
|
|
5
|
+
background: var(--color-surface-primary);
|
|
6
|
+
padding: var(--notification-item-set-toast-padding, 12px 16px);
|
|
7
|
+
border-radius: var(--notification-item-set-toast-border-radius, 8px);
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
gap: 24px;
|
|
11
|
+
@mixin elevation-8;
|
|
12
|
+
^^&-wrapper {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
gap: 4px;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
.notification__item {
|
|
2
2
|
&_status {
|
|
3
3
|
&_success {
|
|
4
|
+
background: var(--color-success-primary);
|
|
4
5
|
^^&-wrapper {
|
|
5
|
-
background: var(--color-success-primary);
|
|
6
6
|
^^^&-title {
|
|
7
7
|
color: var(--color-success-text-secondary);
|
|
8
8
|
}
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
&_error {
|
|
15
|
+
background: var(--color-error-primary);
|
|
15
16
|
^^&-wrapper {
|
|
16
|
-
background: var(--color-error-primary);
|
|
17
17
|
^^^&-title {
|
|
18
18
|
color: var(--color-error-text-secondary);
|
|
19
19
|
}
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
&_warning {
|
|
26
|
+
background: var(--color-primary-primary);
|
|
26
27
|
^^&-wrapper {
|
|
27
|
-
background: var(--color-primary-primary);
|
|
28
28
|
^^^&-title {
|
|
29
29
|
color: var(--color-primary-text-primary);
|
|
30
30
|
}
|
package/dist/css/components/Notification/css/__item/notification__item_type_close-button.css
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
.notification__item {
|
|
2
2
|
&_type {
|
|
3
3
|
&_close-button {
|
|
4
|
-
^^&-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
^^&-wrapper {
|
|
5
|
+
position: relative;
|
|
6
|
+
^^^&-title {
|
|
7
|
+
margin-right: 40px;
|
|
8
|
+
}
|
|
9
|
+
^^^&-close {
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 0;
|
|
12
|
+
right: 0;
|
|
13
|
+
}
|
|
11
14
|
}
|
|
12
15
|
}
|
|
13
16
|
}
|
|
@@ -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
|
-
|
|
21
|
-
border-radius: 6px;
|
|
18
|
+
height: 40px;
|
|
22
19
|
background: var(--paginator-item-default-fill);
|
|
23
|
-
|
|
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
|
-
|
|
7
|
-
border-radius: 6px;
|
|
4
|
+
height: 40px;
|
|
8
5
|
background: var(--paginator-item-default-fill);
|
|
9
|
-
|
|
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
|
}
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
width: 100%;
|
|
24
24
|
position: relative;
|
|
25
25
|
display: grid;
|
|
26
|
-
grid-template-columns: 1fr 1fr;
|
|
27
|
-
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
28
26
|
align-items: center;
|
|
27
|
+
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
28
|
+
grid-template-columns: 1fr 1fr;
|
|
29
29
|
}
|
|
30
30
|
&__value {
|
|
31
31
|
background: none;
|
|
32
|
+
padding: 1px 0 !important;
|
|
32
33
|
border: none;
|
|
33
34
|
position: relative;
|
|
34
35
|
display: block;
|
|
36
|
+
z-index: 2;
|
|
35
37
|
grid-column: 1/3;
|
|
36
38
|
grid-row-start: 1;
|
|
37
|
-
z-index: 2;
|
|
38
|
-
padding: 1.25px 0 !important;
|
|
39
39
|
&:focus {
|
|
40
40
|
outline: 0;
|
|
41
41
|
}
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
background: none;
|
|
50
50
|
border: none;
|
|
51
51
|
position: relative;
|
|
52
|
-
display:
|
|
52
|
+
display: grid;
|
|
53
53
|
grid-column: 1/3;
|
|
54
54
|
grid-row-start: 1;
|
|
55
55
|
&:focus {
|
|
@@ -60,10 +60,9 @@
|
|
|
60
60
|
margin: 0 4px 0 0;
|
|
61
61
|
position: absolute;
|
|
62
62
|
top: 50%;
|
|
63
|
-
transform: translate(0, -50%);
|
|
64
63
|
right: 0;
|
|
65
|
-
cursor: pointer;
|
|
66
64
|
z-index: 2;
|
|
65
|
+
transform: translate(0, -50%);
|
|
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
|
}
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
width: 100%;
|
|
13
13
|
position: relative;
|
|
14
14
|
display: grid;
|
|
15
|
-
grid-template-columns: 1fr 1fr;
|
|
16
|
-
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
17
15
|
align-items: center;
|
|
16
|
+
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
17
|
+
grid-template-columns: 1fr 1fr;
|
|
18
18
|
}
|
|
19
19
|
&__value {
|
|
20
20
|
background: none;
|
|
21
|
+
padding: 1px 0 !important;
|
|
21
22
|
border: none;
|
|
22
23
|
position: relative;
|
|
23
24
|
display: block;
|
|
25
|
+
z-index: 2;
|
|
24
26
|
grid-column: 1/3;
|
|
25
27
|
grid-row-start: 1;
|
|
26
|
-
z-index: 2;
|
|
27
|
-
padding: 1.25px 0 !important;
|
|
28
28
|
&:focus {
|
|
29
29
|
outline: 0;
|
|
30
30
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
background: none;
|
|
39
39
|
border: none;
|
|
40
40
|
position: relative;
|
|
41
|
-
display:
|
|
41
|
+
display: grid;
|
|
42
42
|
grid-column: 1/3;
|
|
43
43
|
grid-row-start: 1;
|
|
44
44
|
&:focus {
|
|
@@ -49,10 +49,9 @@
|
|
|
49
49
|
margin: 0 4px 0 0;
|
|
50
50
|
position: absolute;
|
|
51
51
|
top: 50%;
|
|
52
|
-
transform: translate(0, -50%);
|
|
53
52
|
right: 0;
|
|
54
|
-
cursor: pointer;
|
|
55
53
|
z-index: 2;
|
|
54
|
+
transform: translate(0, -50%);
|
|
56
55
|
}
|
|
57
56
|
&&_state_focus,
|
|
58
57
|
&&_state_filled {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
.select {
|
|
34
34
|
&&_size {
|
|
35
|
-
@each $size in normal,
|
|
35
|
+
@each $size in xs, s, m, l, xl, xxl, tiny, compact, normal, large {
|
|
36
36
|
&_$(size) {
|
|
37
37
|
^^&__control {
|
|
38
38
|
padding: var(--select-size-$(size)-padding);
|
|
@@ -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;
|
|
@@ -109,7 +120,7 @@
|
|
|
109
120
|
&__control {
|
|
110
121
|
&_shape {
|
|
111
122
|
&_rounded {
|
|
112
|
-
border-radius: 6px;
|
|
123
|
+
border-radius: var(--select-control-shape-rounded, 6px);
|
|
113
124
|
}
|
|
114
125
|
&_circular {
|
|
115
126
|
border-radius: 50%;
|
|
@@ -234,8 +245,11 @@
|
|
|
234
245
|
|
|
235
246
|
.select__multi-value {
|
|
236
247
|
&-wrapper {
|
|
237
|
-
padding: 4px 6px;
|
|
238
|
-
border-radius: 6px;
|
|
248
|
+
padding: var(--select-multi-value-padding, 4px 6px);
|
|
249
|
+
border-radius: var(--select-multi-value-border-radius, 6px);
|
|
250
|
+
^&__label {
|
|
251
|
+
display: flex;
|
|
252
|
+
}
|
|
239
253
|
}
|
|
240
254
|
}
|
|
241
255
|
|
|
@@ -320,4 +334,3 @@
|
|
|
320
334
|
}
|
|
321
335
|
}
|
|
322
336
|
}
|
|
323
|
-
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Swiper 11.0.
|
|
2
|
+
* Swiper 11.0.4
|
|
3
3
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
4
4
|
* https://swiperjs.com
|
|
5
5
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Released under the MIT License
|
|
9
9
|
*
|
|
10
|
-
* Released on:
|
|
10
|
+
* Released on: November 9, 2023
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/* FONT_START */
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
.tab {
|
|
18
18
|
&_shape {
|
|
19
19
|
&_rounded {
|
|
20
|
-
border-radius: 12px;
|
|
20
|
+
border-radius: var(--tab-shape-rounded, 12px);
|
|
21
21
|
}
|
|
22
22
|
&_circular {
|
|
23
23
|
border-radius: 50%;
|
|
@@ -39,13 +39,12 @@
|
|
|
39
39
|
.tab-group {
|
|
40
40
|
position: relative;
|
|
41
41
|
display: flex;
|
|
42
|
-
align-items: stretch;
|
|
43
42
|
flex-flow: row wrap;
|
|
43
|
+
align-items: stretch;
|
|
44
44
|
& .tab {
|
|
45
45
|
display: flex;
|
|
46
46
|
flex-flow: column nowrap;
|
|
47
47
|
justify-content: flex-end;
|
|
48
|
-
cursor: pointer;
|
|
49
48
|
&__wrapper {
|
|
50
49
|
display: flex;
|
|
51
50
|
flex: 1;
|
|
@@ -54,24 +53,14 @@
|
|
|
54
53
|
gap: 4px;
|
|
55
54
|
}
|
|
56
55
|
&__label {
|
|
57
|
-
flex: 1;
|
|
58
56
|
display: flex;
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
.tab {
|
|
63
|
-
&_state {
|
|
64
|
-
&_active {
|
|
65
|
-
^^&__label {
|
|
66
|
-
color: var(--color-surface-text-accent);
|
|
67
|
-
}
|
|
57
|
+
flex: 1;
|
|
68
58
|
}
|
|
69
59
|
}
|
|
70
60
|
}
|
|
71
61
|
:root {
|
|
72
62
|
--tab-size-normal-padding: 10px;
|
|
73
63
|
--tab-size-normal-gap: 10px;
|
|
74
|
-
|
|
75
64
|
--tab-size-compact-padding: 10px;
|
|
76
65
|
--tab-size-compact-gap: 10px;
|
|
77
66
|
}
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
min-width: 100%;
|
|
4
4
|
min-height: 160px;
|
|
5
5
|
max-height: 160px;
|
|
6
|
-
padding: 16px 16px;
|
|
6
|
+
padding: var(--textarea-padding, 16px 16px);
|
|
7
|
+
padding: 0;
|
|
8
|
+
margin: 0;
|
|
9
|
+
border: none;
|
|
7
10
|
z-index: 1;
|
|
8
11
|
outline: 0;
|
|
9
12
|
resize: none;
|
|
10
|
-
border: none;
|
|
11
13
|
appearance: none;
|
|
12
|
-
padding: 0;
|
|
13
|
-
margin: 0;
|
|
14
14
|
&:read-only {
|
|
15
15
|
color: var(--color-surface-text-tertiary);
|
|
16
16
|
}
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
.textarea {
|
|
19
19
|
&_shape {
|
|
20
20
|
&_rounded {
|
|
21
|
-
border-radius: 4px;
|
|
21
|
+
border-radius: var(--textarea-shape-rounded, 4px);
|
|
22
22
|
position: relative;
|
|
23
23
|
}
|
|
24
24
|
&_underline {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
.tile {
|
|
7
7
|
&_shape {
|
|
8
8
|
&_rounded {
|
|
9
|
-
border-radius: 12px;
|
|
9
|
+
border-radius: var(--tile-shape-rounded, 12px);
|
|
10
10
|
}
|
|
11
11
|
&_circular {
|
|
12
12
|
border-radius: 50%;
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
.tile {
|
|
32
32
|
&_type {
|
|
33
33
|
&_icon {
|
|
34
|
-
padding: 16px;
|
|
34
|
+
padding: var(--tile-type-icon-padding, 16px);
|
|
35
35
|
^^&__icon {
|
|
36
36
|
margin: 0 0 16px 0;
|
|
37
37
|
}
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
@each $type in accent, primary, secondary, tertiary, surface, success, error {
|
|
3
3
|
&_$(type) {
|
|
4
4
|
&-border {
|
|
5
|
-
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, active,
|
|
5
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, active,
|
|
6
|
+
disabled, hover, invert {
|
|
6
7
|
&-$(color) {
|
|
7
8
|
border-width: 1px;
|
|
8
9
|
border-color: var(--color-$(type)-border-$(color));
|
|
@@ -1,21 +1,13 @@
|
|
|
1
1
|
.fill {
|
|
2
|
-
@each $type in accent, primary, secondary, tertiary, surface, success, error, info,
|
|
2
|
+
@each $type in accent, primary, secondary, tertiary, surface, success, error, info, gradient,
|
|
3
|
+
warning {
|
|
3
4
|
&_$(type) {
|
|
4
|
-
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled, hover {
|
|
5
|
-
&-$(color) {
|
|
6
|
-
background: var(--color-$(type)-$(color));
|
|
7
|
-
@each $alpha in 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85, 90, 95 {
|
|
8
|
-
&$(alpha) {
|
|
9
|
-
background: var(--color-$(type)-$(color)-$(alpha));
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
5
|
&-item {
|
|
15
|
-
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled,
|
|
6
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled,
|
|
7
|
+
hover {
|
|
16
8
|
&-$(color) {
|
|
17
9
|
background: var(--color-$(type)-item-$(color));
|
|
18
|
-
@each $alpha in 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85, 90, 95
|
|
10
|
+
@each $alpha in 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85, 90, 95 {
|
|
19
11
|
&$(alpha) {
|
|
20
12
|
background: var(--color-$(type)-item-$(color)-$(alpha));
|
|
21
13
|
}
|
|
@@ -23,13 +15,25 @@
|
|
|
23
15
|
}
|
|
24
16
|
}
|
|
25
17
|
}
|
|
18
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled,
|
|
19
|
+
hover {
|
|
20
|
+
&-$(color) {
|
|
21
|
+
background: var(--color-$(type)-$(color));
|
|
22
|
+
@each $alpha in 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85, 90, 95 {
|
|
23
|
+
&$(alpha) {
|
|
24
|
+
background: var(--color-$(type)-$(color)-$(alpha));
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
26
29
|
}
|
|
27
30
|
}
|
|
28
|
-
@each $type in accent, primary, secondary, tertiary, quaternary, quinary, surface, success, error,
|
|
31
|
+
@each $type in accent, primary, secondary, tertiary, quaternary, quinary, surface, success, error,
|
|
32
|
+
info, warning {
|
|
29
33
|
&_$(type) {
|
|
30
34
|
&-primary {
|
|
31
35
|
background: var(--color-$(type)-primary);
|
|
32
|
-
@each $opacity in 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85, 90, 95
|
|
36
|
+
@each $opacity in 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85, 90, 95 {
|
|
33
37
|
&$(alpha) {
|
|
34
38
|
background: var(--color-$(type)-primary$(opacity));
|
|
35
39
|
}
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
@each $type in accent, primary, secondary, tertiary, surface, success, error, info, warning {
|
|
3
3
|
&_$(type) {
|
|
4
4
|
&-text {
|
|
5
|
-
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled,
|
|
5
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled,
|
|
6
|
+
hover, invert {
|
|
6
7
|
&-$(color) {
|
|
7
8
|
color: var(--color-$(type)-text-$(color));
|
|
8
9
|
}
|
|
@@ -11,4 +12,3 @@
|
|
|
11
12
|
}
|
|
12
13
|
}
|
|
13
14
|
}
|
|
14
|
-
|