@steroidsjs/bootstrap 3.0.0-beta.86 → 3.0.0-beta.87
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/content/Accordion/AccordionItemView.scss +6 -6
- package/content/Alert/AlertView.scss +15 -15
- package/content/Avatar/AvatarView.scss +11 -11
- package/content/Badge/BadgeView.scss +20 -20
- package/content/Calendar/CalendarView.scss +24 -24
- package/content/Calendar/CaptionElement.scss +12 -12
- package/content/Card/CardView.scss +10 -10
- package/content/Detail/DetailView.scss +12 -12
- package/content/DropDown/DropDownView.scss +3 -3
- package/content/Menu/MenuItemView.scss +4 -4
- package/content/Menu/MenuView.scss +3 -3
- package/form/AutoCompleteField/AutoCompleteFieldView.scss +34 -34
- package/form/Button/ButtonView.scss +24 -24
- package/form/CheckboxField/CheckboxFieldView.scss +24 -24
- package/form/DateField/DateFieldView.scss +2 -2
- package/form/DateRangeField/DateRangeFieldView.scss +2 -2
- package/form/DateTimeField/DateTimeFieldView.scss +2 -2
- package/form/DateTimeRangeField/DateTimeRangeFieldView.scss +2 -2
- package/form/DropDownField/DropDownFieldView.scss +44 -44
- package/form/DropDownFieldItem/DropDownFieldItemView.scss +12 -12
- package/form/FieldLayout/FieldLayoutView.scss +26 -26
- package/form/FieldList/FieldListItemView.scss +2 -2
- package/form/FieldList/FieldListView.scss +9 -9
- package/form/FieldSet/FieldSetView.scss +2 -2
- package/form/FileField/FileFieldItemView.scss +17 -17
- package/form/FileField/FileFieldView.scss +2 -2
- package/form/ImageField/ImageFieldView.scss +2 -2
- package/form/InputField/InputFieldView.scss +32 -32
- package/form/NumberField/NumberFieldView.scss +22 -22
- package/form/PasswordField/PasswordFieldView.scss +21 -21
- package/form/RadioField/RadioFieldView.scss +25 -25
- package/form/RateField/RateFieldView.scss +9 -9
- package/form/SliderField/SliderFieldView.scss +16 -16
- package/form/SwitcherField/SwitcherFieldView.scss +18 -18
- package/form/TextField/TextFieldView.scss +21 -21
- package/form/TimeField/TimeFieldView.scss +2 -2
- package/form/TimeField/TimePanelView.scss +11 -11
- package/form/TimeRangeField/TimeRangeFieldView.scss +2 -2
- package/layout/Header/HeaderView.scss +14 -14
- package/layout/Loader/LoaderView.scss +2 -2
- package/layout/ProgressBar/CircleProgressBarView.scss +8 -8
- package/layout/ProgressBar/LineProgressBarView.scss +9 -9
- package/layout/Sidebar/FooterIcons/FooterIcons.scss +1 -1
- package/layout/Sidebar/SidebarLogo/SidebarLogo.scss +7 -7
- package/layout/Sidebar/SidebarUser/SidebarUser.scss +5 -5
- package/layout/Sidebar/SidebarView.scss +8 -8
- package/layout/Skeleton/SkeletonView.scss +6 -6
- package/layout/Tooltip/TooltipView.scss +2 -2
- package/list/Empty/EmptyView.scss +2 -2
- package/list/FlexGrid/FlexGridView.scss +4 -4
- package/list/Grid/GridView.scss +14 -14
- package/list/Grid/views/ContentColumnView/ContentColumnView.scss +8 -8
- package/list/Grid/views/DiagramColumnView/DiagramColumnView.scss +12 -12
- package/list/List/ListView.scss +2 -2
- package/list/Pagination/PaginationButtonView.scss +14 -14
- package/list/Steps/StepItemView.scss +13 -13
- package/list/Steps/StepsView.scss +2 -2
- package/modal/Modal/ModalView.scss +12 -12
- package/nav/Breadcrubms/BreadcrumbsView.scss +5 -5
- package/nav/ButtonGroup/ButtonGroupView.scss +4 -4
- package/nav/Nav/NavBarView.scss +4 -4
- package/nav/Nav/NavIconView.scss +5 -5
- package/nav/Nav/NavTabsView.scss +8 -8
- package/nav/Tree/TreeView.scss +6 -6
- package/package.json +1 -1
- package/typography/Text/TextView.scss +4 -4
- package/typography/Title/TitleView.scss +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
|
-
@use "../../scss/variables"
|
|
2
|
+
@use "../../scss/variables";
|
|
3
3
|
@use '../../scss/mixins';
|
|
4
4
|
|
|
5
5
|
:root {
|
|
@@ -53,45 +53,45 @@ $drop-down-color-themes: map.merge(
|
|
|
53
53
|
(
|
|
54
54
|
"basic": (
|
|
55
55
|
"background-color": $basic-color,
|
|
56
|
-
"hover-color":
|
|
56
|
+
"hover-color": variables.$element-border-color-hover,
|
|
57
57
|
"focus-color": $basic-focus-color,
|
|
58
58
|
"active-color": $basic-active-color
|
|
59
59
|
),
|
|
60
60
|
"primary": (
|
|
61
|
-
"background-color":
|
|
62
|
-
"hover-color":
|
|
63
|
-
"focus-color":
|
|
64
|
-
"active-color":
|
|
61
|
+
"background-color": variables.$primary,
|
|
62
|
+
"hover-color": variables.$primary-dark,
|
|
63
|
+
"focus-color": variables.$primary-light,
|
|
64
|
+
"active-color": variables.$primary-dark
|
|
65
65
|
),
|
|
66
66
|
"secondary": (
|
|
67
|
-
"background-color":
|
|
68
|
-
"hover-color":
|
|
69
|
-
"focus-color":
|
|
70
|
-
"active-color":
|
|
67
|
+
"background-color": variables.$secondary,
|
|
68
|
+
"hover-color": variables.$secondary-dark,
|
|
69
|
+
"focus-color": variables.$secondary-light,
|
|
70
|
+
"active-color": variables.$secondary-dark
|
|
71
71
|
),
|
|
72
72
|
"warning": (
|
|
73
|
-
"background-color":
|
|
74
|
-
"hover-color":
|
|
75
|
-
"focus-color":
|
|
76
|
-
"active-color":
|
|
73
|
+
"background-color": variables.$warning,
|
|
74
|
+
"hover-color": variables.$warning-dark,
|
|
75
|
+
"focus-color": variables.$warning-light,
|
|
76
|
+
"active-color": variables.$warning-dark
|
|
77
77
|
),
|
|
78
78
|
"danger": (
|
|
79
|
-
"background-color":
|
|
80
|
-
"hover-color":
|
|
81
|
-
"focus-color":
|
|
82
|
-
"active-color":
|
|
79
|
+
"background-color": variables.$danger,
|
|
80
|
+
"hover-color": variables.$danger-dark,
|
|
81
|
+
"focus-color": variables.$danger-light,
|
|
82
|
+
"active-color": variables.$danger-dark
|
|
83
83
|
),
|
|
84
84
|
"info": (
|
|
85
|
-
"background-color":
|
|
86
|
-
"hover-color":
|
|
87
|
-
"focus-color":
|
|
88
|
-
"active-color":
|
|
85
|
+
"background-color": variables.$info,
|
|
86
|
+
"hover-color": variables.$info-dark,
|
|
87
|
+
"focus-color": variables.$info-light,
|
|
88
|
+
"active-color": variables.$info-dark
|
|
89
89
|
),
|
|
90
90
|
"success": (
|
|
91
|
-
"background-color":
|
|
92
|
-
"hover-color":
|
|
93
|
-
"focus-color":
|
|
94
|
-
"active-color":
|
|
91
|
+
"background-color": variables.$success,
|
|
92
|
+
"hover-color": variables.$success-dark,
|
|
93
|
+
"focus-color": variables.$success-light,
|
|
94
|
+
"active-color": variables.$success-dark
|
|
95
95
|
)
|
|
96
96
|
),
|
|
97
97
|
$drop-down-color-themes
|
|
@@ -99,7 +99,7 @@ $drop-down-color-themes: map.merge(
|
|
|
99
99
|
|
|
100
100
|
@mixin dropDownTheme($colorMap, $root, $colorType) {
|
|
101
101
|
background-color: map.get($colorMap, background-color);
|
|
102
|
-
color:
|
|
102
|
+
color: variables.$text-color;
|
|
103
103
|
|
|
104
104
|
&::before {
|
|
105
105
|
border-color: map.get($colorMap, focus-color);
|
|
@@ -134,7 +134,7 @@ $drop-down-color-themes: map.merge(
|
|
|
134
134
|
color: #ffffff;
|
|
135
135
|
|
|
136
136
|
@if ($colorType == "basic") {
|
|
137
|
-
color:
|
|
137
|
+
color: variables.$text-color;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
@if ($colorType == "warning" or $colorType == "info") {
|
|
@@ -144,9 +144,9 @@ $drop-down-color-themes: map.merge(
|
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
@mixin dropDownOutlineTheme($colorMap, $root) {
|
|
147
|
-
background-color:
|
|
147
|
+
background-color: variables.$element-field-background-color;
|
|
148
148
|
border: 1px solid map.get($colorMap, background-color);
|
|
149
|
-
color:
|
|
149
|
+
color: variables.$text-color;
|
|
150
150
|
|
|
151
151
|
&::before {
|
|
152
152
|
border-color: map.get($colorMap, focus-color);
|
|
@@ -205,30 +205,30 @@ $drop-down-color-themes: map.merge(
|
|
|
205
205
|
$sizes: map.merge(
|
|
206
206
|
(
|
|
207
207
|
"lg": (
|
|
208
|
-
"border-radius":
|
|
209
|
-
"height":
|
|
208
|
+
"border-radius": variables.$radius-large,
|
|
209
|
+
"height": variables.$input-height-lg,
|
|
210
210
|
"beforeTransform": translateX(-4px) translateY(-4px),
|
|
211
211
|
"beforeRadius": 16px,
|
|
212
212
|
"selectedItemsPadding": 16px,
|
|
213
|
-
"font-size":
|
|
213
|
+
"font-size": variables.$font-size-lg,
|
|
214
214
|
"line-height": 24px
|
|
215
215
|
),
|
|
216
216
|
"md": (
|
|
217
|
-
"border-radius":
|
|
218
|
-
"height":
|
|
217
|
+
"border-radius": variables.$radius-large,
|
|
218
|
+
"height": variables.$input-height-md,
|
|
219
219
|
"beforeTransform": translateX(-4px) translateY(-4px),
|
|
220
220
|
"beforeRadius": 16px,
|
|
221
221
|
"selectedItemsPadding": 12px,
|
|
222
|
-
"font-size":
|
|
222
|
+
"font-size": variables.$font-size-base,
|
|
223
223
|
"line-height": 22px
|
|
224
224
|
),
|
|
225
225
|
"sm": (
|
|
226
|
-
"border-radius":
|
|
227
|
-
"height":
|
|
226
|
+
"border-radius": variables.$radius-small,
|
|
227
|
+
"height": variables.$input-height-sm,
|
|
228
228
|
"beforeTransform": translateX(-4px) translateY(-4px),
|
|
229
229
|
"beforeRadius": 12px,
|
|
230
230
|
"selectedItemsPadding": 8px,
|
|
231
|
-
"font-size":
|
|
231
|
+
"font-size": variables.$font-size-sm,
|
|
232
232
|
"line-height": 18px
|
|
233
233
|
)
|
|
234
234
|
),
|
|
@@ -312,14 +312,14 @@ $drop-down-color-themes: map.merge(
|
|
|
312
312
|
top: calc(100% + 8px);
|
|
313
313
|
left: 0;
|
|
314
314
|
|
|
315
|
-
background-color:
|
|
315
|
+
background-color: variables.$element-background-color;
|
|
316
316
|
|
|
317
317
|
border: 1px solid $drop-down-border-color;
|
|
318
318
|
overflow: hidden;
|
|
319
319
|
border-radius: 12px;
|
|
320
320
|
|
|
321
321
|
&-list {
|
|
322
|
-
@include mixins.scrollWrapper(240px, 0,
|
|
322
|
+
@include mixins.scrollWrapper(240px, 0, variables.$scroll-thumb-color, variables.$scroll-track-color);
|
|
323
323
|
}
|
|
324
324
|
}
|
|
325
325
|
|
|
@@ -364,12 +364,12 @@ $drop-down-color-themes: map.merge(
|
|
|
364
364
|
border-radius: 6px;
|
|
365
365
|
outline: none;
|
|
366
366
|
|
|
367
|
-
font-size:
|
|
367
|
+
font-size: variables.$font-size-base;
|
|
368
368
|
font-weight: 400;
|
|
369
369
|
line-height: 22px;
|
|
370
|
-
border: 1px solid
|
|
370
|
+
border: 1px solid variables.$element-border-color;
|
|
371
371
|
|
|
372
|
-
color:
|
|
372
|
+
color: variables.$text-color;
|
|
373
373
|
background-color: $search-background-color;
|
|
374
374
|
|
|
375
375
|
&:hover {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--drop-down-item-hover-background-color: #f5f8fa;
|
|
@@ -23,7 +23,7 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
%fontProperties {
|
|
26
|
-
font-size:
|
|
26
|
+
font-size: variables.$font-size-base;
|
|
27
27
|
font-weight: 400;
|
|
28
28
|
line-height: 22px;
|
|
29
29
|
}
|
|
@@ -43,8 +43,8 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
43
43
|
position: relative;
|
|
44
44
|
column-gap: 12px;
|
|
45
45
|
align-items: center;
|
|
46
|
-
background-color:
|
|
47
|
-
color:
|
|
46
|
+
background-color: variables.$element-background-color;
|
|
47
|
+
color: variables.$text-color;
|
|
48
48
|
|
|
49
49
|
&_size {
|
|
50
50
|
&_lg {
|
|
@@ -76,7 +76,7 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
76
76
|
&__img {
|
|
77
77
|
width: 24px;
|
|
78
78
|
height: 24px;
|
|
79
|
-
border-radius:
|
|
79
|
+
border-radius:variables.$radius-small;
|
|
80
80
|
overflow: hidden;
|
|
81
81
|
|
|
82
82
|
img {
|
|
@@ -146,7 +146,7 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
146
146
|
border: none;
|
|
147
147
|
|
|
148
148
|
&_visible {
|
|
149
|
-
border-bottom: 1px solid
|
|
149
|
+
border-bottom: 1px solid variables.$element-border-color;
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
152
|
|
|
@@ -157,7 +157,7 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
157
157
|
align-items: center;
|
|
158
158
|
|
|
159
159
|
border: none;
|
|
160
|
-
background-color:
|
|
160
|
+
background-color:variables.$element-background-color;
|
|
161
161
|
|
|
162
162
|
&:hover {
|
|
163
163
|
background-color: $drop-down-item-hover-background-color;
|
|
@@ -176,15 +176,15 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
176
176
|
&__icon-chevron {
|
|
177
177
|
box-shadow: none;
|
|
178
178
|
svg {
|
|
179
|
-
border: 1px solid
|
|
180
|
-
border-radius:
|
|
179
|
+
border: 1px solid variables.$element-border-color;
|
|
180
|
+
border-radius: variables.$radius-small;
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
&_size {
|
|
186
186
|
&_lg {
|
|
187
|
-
font-size:
|
|
187
|
+
font-size: variables.$font-size-lg;
|
|
188
188
|
line-height: 24px;
|
|
189
189
|
|
|
190
190
|
.AccordionItemView__title-container {
|
|
@@ -195,7 +195,7 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
&_md {
|
|
198
|
-
font-size:
|
|
198
|
+
font-size: variables.$font-size-base;
|
|
199
199
|
line-height: 22px;
|
|
200
200
|
|
|
201
201
|
.AccordionItemView__title-container {
|
|
@@ -206,7 +206,7 @@ $drop-down-item-hover-background-color: var(--drop-down-item-hover-background-co
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
&_sm {
|
|
209
|
-
font-size:
|
|
209
|
+
font-size: variables.$font-size-sm;
|
|
210
210
|
line-height: 18px;
|
|
211
211
|
|
|
212
212
|
.AccordionItemView__title-container {
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
.FieldLayoutView {
|
|
4
4
|
margin-bottom: 1rem;
|
|
5
5
|
$root: &;
|
|
6
|
-
font-family:
|
|
6
|
+
font-family: variables.$font-family-nunito;
|
|
7
7
|
|
|
8
8
|
&__label {
|
|
9
|
-
font-size:
|
|
9
|
+
font-size: variables.$font-size-sm;
|
|
10
10
|
line-height: 24px;
|
|
11
|
-
font-weight:
|
|
12
|
-
color:
|
|
11
|
+
font-weight: variables.$font-weight-sm;
|
|
12
|
+
color: variables.$text-color;
|
|
13
13
|
margin-bottom: 8px;
|
|
14
14
|
|
|
15
15
|
&_size {
|
|
16
16
|
&_sm {
|
|
17
|
-
font-size:
|
|
17
|
+
font-size: variables.$font-size-sm;
|
|
18
18
|
}
|
|
19
19
|
&_md {
|
|
20
|
-
font-size:
|
|
20
|
+
font-size: variables.$font-size-base;
|
|
21
21
|
}
|
|
22
22
|
&_lg {
|
|
23
|
-
font-size:
|
|
23
|
+
font-size: variables.$font-size-lg;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
&_required:after {
|
|
28
28
|
display: inline-block;
|
|
29
29
|
content: "*";
|
|
30
|
-
color:
|
|
30
|
+
color: variables.$danger;
|
|
31
31
|
margin: 0 0 0 3px;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
margin-top: 4px;
|
|
51
51
|
font-size: 80%;
|
|
52
52
|
|
|
53
|
-
color:
|
|
54
|
-
font-size:
|
|
53
|
+
color: variables.$text-color;
|
|
54
|
+
font-size: variables.$font-size-sm;
|
|
55
55
|
line-height: 16px;
|
|
56
|
-
font-weight:
|
|
56
|
+
font-weight: variables.$font-weight-sm;
|
|
57
57
|
|
|
58
58
|
display: flex;
|
|
59
59
|
align-items: center;
|
|
@@ -61,21 +61,21 @@
|
|
|
61
61
|
|
|
62
62
|
&_size {
|
|
63
63
|
&_lg {
|
|
64
|
-
font-size:
|
|
64
|
+
font-size: variables.$font-size-base;
|
|
65
65
|
line-height: 22px;
|
|
66
|
-
font-weight:
|
|
66
|
+
font-weight: variables.$font-weight-sm;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
&_md {
|
|
70
|
-
font-size:
|
|
70
|
+
font-size: variables.$font-size-sm;
|
|
71
71
|
line-height: 18px;
|
|
72
|
-
font-weight:
|
|
72
|
+
font-weight: variables.$font-weight-sm;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
&_sm {
|
|
76
|
-
font-size:
|
|
76
|
+
font-size: variables.$font-size-xs;
|
|
77
77
|
line-height: 16px;
|
|
78
|
-
font-weight:
|
|
78
|
+
font-weight: variables.$font-weight-sm;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
}
|
|
@@ -93,30 +93,30 @@
|
|
|
93
93
|
height: 100%;
|
|
94
94
|
|
|
95
95
|
rect {
|
|
96
|
-
color:
|
|
96
|
+
color: variables.$danger;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
&__error-text {
|
|
102
|
-
color:
|
|
102
|
+
color: variables.$danger;
|
|
103
103
|
&_size {
|
|
104
104
|
&_lg {
|
|
105
|
-
font-size:
|
|
105
|
+
font-size: variables.$font-size-base;
|
|
106
106
|
line-height: 22px;
|
|
107
|
-
font-weight:
|
|
107
|
+
font-weight: variables.$font-weight-sm;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
&_md {
|
|
111
|
-
font-size:
|
|
111
|
+
font-size: variables.$font-size-sm;
|
|
112
112
|
line-height: 18px;
|
|
113
|
-
font-weight:
|
|
113
|
+
font-weight: variables.$font-weight-sm;
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
&_sm {
|
|
117
|
-
font-size:
|
|
117
|
+
font-size: variables.$font-size-xs;
|
|
118
118
|
line-height: 16px;
|
|
119
|
-
font-weight:
|
|
119
|
+
font-weight: variables.$font-weight-sm;
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
@use "../../scss/variables"
|
|
2
|
+
@use "../../scss/variables";
|
|
3
3
|
|
|
4
4
|
:root {
|
|
5
5
|
--background-th: var(--light-gray);
|
|
@@ -18,7 +18,7 @@ $background-td-alternating: var(--background-td-alternating);
|
|
|
18
18
|
table {
|
|
19
19
|
width: 100%;
|
|
20
20
|
background-color: transparent;
|
|
21
|
-
border: 1px solid
|
|
21
|
+
border: 1px solid variables.$gray-dark;
|
|
22
22
|
border-collapse: separate;
|
|
23
23
|
border-radius: 10px;
|
|
24
24
|
border-spacing: 0;
|
|
@@ -27,23 +27,23 @@ $background-td-alternating: var(--background-td-alternating);
|
|
|
27
27
|
|
|
28
28
|
th:not(:last-child),
|
|
29
29
|
td:not(:last-child) {
|
|
30
|
-
border-right: 1px solid
|
|
30
|
+
border-right: 1px solid variables.$gray-dark;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
tr th {
|
|
34
|
-
border-bottom: 1px solid
|
|
34
|
+
border-bottom: 1px solid variables.$gray-dark;
|
|
35
35
|
background-color: $background-th;
|
|
36
|
-
color:
|
|
36
|
+
color: variables.$text-color;
|
|
37
37
|
font-size: 14px;
|
|
38
38
|
line-height: 18px;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
tr:not(:last-child) td {
|
|
42
|
-
border-bottom: 1px solid
|
|
42
|
+
border-bottom: 1px solid variables.$gray-dark;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
tfoot > tr > td {
|
|
46
|
-
border-top: 1px solid
|
|
46
|
+
border-top: 1px solid variables.$gray-dark;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
tr td {
|
|
@@ -60,7 +60,7 @@ $background-td-alternating: var(--background-td-alternating);
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
td {
|
|
63
|
-
background:
|
|
63
|
+
background: variables.$element-background-color;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
&_hasAlternatingColors {
|
|
@@ -72,7 +72,7 @@ $background-td-alternating: var(--background-td-alternating);
|
|
|
72
72
|
&__button-add {
|
|
73
73
|
svg {
|
|
74
74
|
path {
|
|
75
|
-
stroke:
|
|
75
|
+
stroke: variables.$primary;
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
> span {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
@use "../../scss/variables"
|
|
2
|
+
@use "../../scss/variables";
|
|
3
3
|
|
|
4
4
|
:root {
|
|
5
5
|
--legend-color: #152536;
|
|
@@ -19,7 +19,7 @@ $fieldset-border-color: var(--fieldset-border-color);
|
|
|
19
19
|
border-radius: 8px;
|
|
20
20
|
|
|
21
21
|
&__legend {
|
|
22
|
-
background-color:
|
|
22
|
+
background-color: variables.$background-color;
|
|
23
23
|
color: $legend-color;
|
|
24
24
|
|
|
25
25
|
padding: 8px;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
@use '../../scss/animations' as anim;
|
|
4
4
|
|
|
@@ -26,11 +26,11 @@ $image-border-radius: 8px;
|
|
|
26
26
|
column-gap: 8px;
|
|
27
27
|
padding: 12px 30px 12px 12px;
|
|
28
28
|
width: 100%;
|
|
29
|
-
font-size:
|
|
29
|
+
font-size: variables.$font-size-sm;
|
|
30
30
|
|
|
31
31
|
&_images {
|
|
32
32
|
padding: 8px;
|
|
33
|
-
border: 1px solid
|
|
33
|
+
border: 1px solid variables.$gray;
|
|
34
34
|
border-radius: 12px;
|
|
35
35
|
|
|
36
36
|
#{$root}__icon-wrapper {
|
|
@@ -40,7 +40,7 @@ $image-border-radius: 8px;
|
|
|
40
40
|
width: $small-image-size;
|
|
41
41
|
height: $small-image-size;
|
|
42
42
|
border-radius: $image-border-radius;
|
|
43
|
-
background-color:
|
|
43
|
+
background-color: variables.$light-gray;
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
@@ -52,7 +52,7 @@ $image-border-radius: 8px;
|
|
|
52
52
|
padding: 5px;
|
|
53
53
|
width: 128px;
|
|
54
54
|
height: 128px;
|
|
55
|
-
border: 1px solid
|
|
55
|
+
border: 1px solid variables.$gray;
|
|
56
56
|
border-radius: 20px;
|
|
57
57
|
|
|
58
58
|
#{$root}__title {
|
|
@@ -102,7 +102,7 @@ $image-border-radius: 8px;
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
#{$root}__link {
|
|
105
|
-
@include mixins.svg-color(
|
|
105
|
+
@include mixins.svg-color(variables.$white);
|
|
106
106
|
position: absolute;
|
|
107
107
|
top: 52px;
|
|
108
108
|
left: 70px;
|
|
@@ -110,7 +110,7 @@ $image-border-radius: 8px;
|
|
|
110
110
|
opacity: 0;
|
|
111
111
|
|
|
112
112
|
circle {
|
|
113
|
-
stroke:
|
|
113
|
+
stroke: variables.$white;
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
|
|
@@ -126,7 +126,7 @@ $image-border-radius: 8px;
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
#{$root}__remove {
|
|
129
|
-
@include mixins.svg-color(
|
|
129
|
+
@include mixins.svg-color(variables.$white);
|
|
130
130
|
position: absolute;
|
|
131
131
|
left: 30px;
|
|
132
132
|
z-index: 4;
|
|
@@ -157,7 +157,7 @@ $image-border-radius: 8px;
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
&#{$root}_error {
|
|
160
|
-
background-color:
|
|
160
|
+
background-color: variables.$light-gray;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
&#{$root}_error {
|
|
@@ -185,10 +185,10 @@ $image-border-radius: 8px;
|
|
|
185
185
|
|
|
186
186
|
&__link {
|
|
187
187
|
@include textEllipsis;
|
|
188
|
-
color:
|
|
188
|
+
color: variables.$link-color;
|
|
189
189
|
|
|
190
190
|
&:hover {
|
|
191
|
-
color:
|
|
191
|
+
color: variables.$link-color-hover;
|
|
192
192
|
text-decoration: none;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
@@ -203,21 +203,21 @@ $image-border-radius: 8px;
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
&_error {
|
|
206
|
-
@include mixins.svg-color(
|
|
206
|
+
@include mixins.svg-color(variables.$danger);
|
|
207
207
|
|
|
208
208
|
#{$root}__icon {
|
|
209
209
|
circle {
|
|
210
|
-
fill:
|
|
210
|
+
fill: variables.$danger;
|
|
211
211
|
}
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
#{$root}__title {
|
|
215
|
-
color:
|
|
215
|
+
color: variables.$danger;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
218
|
a,
|
|
219
219
|
a:hover {
|
|
220
|
-
color:
|
|
220
|
+
color: variables.$danger;
|
|
221
221
|
cursor: default;
|
|
222
222
|
pointer-events: none;
|
|
223
223
|
}
|
|
@@ -266,13 +266,13 @@ $image-border-radius: 8px;
|
|
|
266
266
|
&__progress-track {
|
|
267
267
|
margin-top: 4px;
|
|
268
268
|
height: 4px;
|
|
269
|
-
background-color:
|
|
269
|
+
background-color: variables.$gray;
|
|
270
270
|
border-radius: 4px;
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
&__progress-bar {
|
|
274
274
|
height: inherit;
|
|
275
|
-
background-color:
|
|
275
|
+
background-color: variables.$primary;
|
|
276
276
|
border-radius: 4px;
|
|
277
277
|
}
|
|
278
278
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
.FileFieldView {
|
|
4
4
|
$root: &;
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
width: 128px;
|
|
31
31
|
height: 128px;
|
|
32
32
|
border: 1px dashed #6F6B76;
|
|
33
|
-
background-color:
|
|
33
|
+
background-color: variables.$gray;
|
|
34
34
|
border-radius: 20px;
|
|
35
35
|
|
|
36
36
|
.ButtonView__label {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
.ImageFieldView {
|
|
4
4
|
$root: &;
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
&__button-label {
|
|
22
22
|
font-size: 16px;
|
|
23
|
-
color:
|
|
23
|
+
color: variables.$text-color;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
&__progress-bar {
|