@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,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--color-menu-item: #323232;
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
|
|
33
33
|
&__label {
|
|
34
34
|
color: $color-menu-item;
|
|
35
|
-
font-size:
|
|
36
|
-
line-height:
|
|
35
|
+
font-size: variables.$font-size-xs;
|
|
36
|
+
line-height: variables.$line-height-xs;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
&__icon {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
&:hover {
|
|
61
|
-
background-color:
|
|
61
|
+
background-color: variables.$gray;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
&_hasBorder{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--color-icon: #323232;
|
|
@@ -31,8 +31,8 @@ $color-icon: var(--color-icon);
|
|
|
31
31
|
|
|
32
32
|
svg {
|
|
33
33
|
stroke: $color-icon;
|
|
34
|
-
width:
|
|
35
|
-
height:
|
|
34
|
+
width: variables.$icon-size-lg;
|
|
35
|
+
height: variables.$icon-size-lg;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
svg rect {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
|
|
4
4
|
:root {
|
|
@@ -24,9 +24,9 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
24
24
|
|
|
25
25
|
&__input {
|
|
26
26
|
width: 100%;
|
|
27
|
-
border: 1px solid
|
|
28
|
-
background-color:
|
|
29
|
-
color:
|
|
27
|
+
border: 1px solid variables.$element-border-color;
|
|
28
|
+
background-color: variables.$element-field-background-color;
|
|
29
|
+
color: variables.$text-color;
|
|
30
30
|
transition: border-color 150ms ease-in-out;
|
|
31
31
|
font-size: inherit;
|
|
32
32
|
line-height: inherit;
|
|
@@ -34,7 +34,7 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
34
34
|
|
|
35
35
|
&_opened {
|
|
36
36
|
#{$root}__input {
|
|
37
|
-
border-color:
|
|
37
|
+
border-color: variables.$primary;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -45,26 +45,26 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
45
45
|
position: absolute;
|
|
46
46
|
z-index: 9999;
|
|
47
47
|
margin-top: 8px;
|
|
48
|
-
border-radius:
|
|
49
|
-
background-color:
|
|
50
|
-
border: 1px solid
|
|
48
|
+
border-radius: variables.$radius-large;
|
|
49
|
+
background-color: variables.$element-background-color;
|
|
50
|
+
border: 1px solid variables.$element-border-color;
|
|
51
51
|
overflow: hidden;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
&__list {
|
|
55
55
|
display: flex;
|
|
56
56
|
flex-flow: column nowrap;
|
|
57
|
-
@include mixins.scrollWrapper(240px, 0,
|
|
57
|
+
@include mixins.scrollWrapper(240px, 0, variables.$scroll-thumb-color, variables.$scroll-track-color);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
&__item {
|
|
61
61
|
width: 100%;
|
|
62
|
-
background-color:
|
|
62
|
+
background-color: variables.$element-background-color;
|
|
63
63
|
outline: none;
|
|
64
64
|
border: none;
|
|
65
65
|
text-align: left;
|
|
66
66
|
|
|
67
|
-
color:
|
|
67
|
+
color: variables.$text-color;
|
|
68
68
|
cursor: pointer;
|
|
69
69
|
|
|
70
70
|
font-size: inherit;
|
|
@@ -105,13 +105,13 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
&__category {
|
|
108
|
-
background-color:
|
|
108
|
+
background-color: variables.$element-background-color;
|
|
109
109
|
width: 100%;
|
|
110
110
|
|
|
111
111
|
&__label {
|
|
112
112
|
display: block;
|
|
113
113
|
padding: 12px 8px;
|
|
114
|
-
color:
|
|
114
|
+
color: variables.$element-placeholder-color;
|
|
115
115
|
}
|
|
116
116
|
&__content {
|
|
117
117
|
width: 100%;
|
|
@@ -123,23 +123,23 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
&__nothing {
|
|
126
|
-
color:
|
|
126
|
+
color: variables.$element-placeholder-color;
|
|
127
127
|
width: 100%;
|
|
128
128
|
margin-bottom: 48px;
|
|
129
129
|
padding: 8px 12px;
|
|
130
|
-
font-size:
|
|
131
|
-
line-height:
|
|
130
|
+
font-size: variables.$font-size-xs;
|
|
131
|
+
line-height: variables.$line-height-xs;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
&_size {
|
|
135
135
|
&_lg {
|
|
136
|
-
font-size:
|
|
137
|
-
line-height:
|
|
136
|
+
font-size: variables.$font-size-lg;
|
|
137
|
+
line-height: variables.$line-height-lg;
|
|
138
138
|
|
|
139
139
|
#{$root}__input {
|
|
140
140
|
padding: 16px 8px;
|
|
141
|
-
height:
|
|
142
|
-
border-radius:
|
|
141
|
+
height: variables.$input-height-lg;
|
|
142
|
+
border-radius: variables.$radius-large;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
#{$root}__item {
|
|
@@ -153,20 +153,20 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
153
153
|
|
|
154
154
|
|
|
155
155
|
&__label {
|
|
156
|
-
font-size:
|
|
157
|
-
line-height:
|
|
156
|
+
font-size: variables.$font-size-base;
|
|
157
|
+
line-height: variables.$line-height-base;
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
&_md {
|
|
163
|
-
font-size:
|
|
164
|
-
line-height:
|
|
163
|
+
font-size: variables.$font-size-base;
|
|
164
|
+
line-height: variables.$line-height-lg;
|
|
165
165
|
|
|
166
166
|
#{$root}__input {
|
|
167
167
|
padding: 11px 8px;
|
|
168
|
-
height:
|
|
169
|
-
border-radius:
|
|
168
|
+
height: variables.$input-height-md;
|
|
169
|
+
border-radius: variables.$radius-large;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
#{$root}__item {
|
|
@@ -179,20 +179,20 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
&__label {
|
|
182
|
-
font-size:
|
|
183
|
-
line-height:
|
|
182
|
+
font-size: variables.$font-size-sm;
|
|
183
|
+
line-height: variables.$line-height-sm;
|
|
184
184
|
}
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
&_sm {
|
|
189
|
-
font-size:
|
|
190
|
-
line-height:
|
|
189
|
+
font-size: variables.$font-size-sm;
|
|
190
|
+
line-height: variables.$line-height-lg;
|
|
191
191
|
|
|
192
192
|
#{$root}__input {
|
|
193
193
|
padding: 5px 8px;
|
|
194
|
-
height:
|
|
195
|
-
border-radius:
|
|
194
|
+
height: variables.$input-height-sm;
|
|
195
|
+
border-radius: variables.$radius-small;
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
#{$root}__item {
|
|
@@ -205,8 +205,8 @@ $autocomplete-icon-color: var(--autocomplete-icon-color);
|
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
&__label {
|
|
208
|
-
font-size:
|
|
209
|
-
line-height:
|
|
208
|
+
font-size: variables.$font-size-xs;
|
|
209
|
+
line-height: variables.$line-height-xs;
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
212
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
|
|
4
4
|
$btn-font-weight-sm: 400;
|
|
@@ -10,7 +10,7 @@ $btn-letter-spacing: 0.1em;
|
|
|
10
10
|
$root: &;
|
|
11
11
|
|
|
12
12
|
transition-property: color, background-color, border-color, box-shadow;
|
|
13
|
-
transition-duration:
|
|
13
|
+
transition-duration: variables.$transition-duration;
|
|
14
14
|
transition-timing-function: ease-in-out;
|
|
15
15
|
|
|
16
16
|
display: flex;
|
|
@@ -21,7 +21,7 @@ $btn-letter-spacing: 0.1em;
|
|
|
21
21
|
|
|
22
22
|
&_button {
|
|
23
23
|
position: relative;
|
|
24
|
-
border-radius:
|
|
24
|
+
border-radius: variables.$radius-small;
|
|
25
25
|
user-select: none;
|
|
26
26
|
border: 3px solid transparent;
|
|
27
27
|
|
|
@@ -31,18 +31,18 @@ $btn-letter-spacing: 0.1em;
|
|
|
31
31
|
align-items: center;
|
|
32
32
|
|
|
33
33
|
font-weight: $btn-font-weight-sm;
|
|
34
|
-
font-size:
|
|
34
|
+
font-size: variables.$font-size-sm;
|
|
35
35
|
line-height: $btn-line-height;
|
|
36
36
|
outline: none;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
@each $colorName, $colorMap in
|
|
39
|
+
@each $colorName, $colorMap in variables.$color-themes {
|
|
40
40
|
&_color_#{$colorName} {
|
|
41
41
|
@include mixins.button-theme($colorMap, $colorName, $root);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
@each $colorName, $colorMap in
|
|
45
|
+
@each $colorName, $colorMap in variables.$color-themes {
|
|
46
46
|
&_outline_#{$colorName} {
|
|
47
47
|
@include mixins.button-outline-theme($colorMap, $colorName, $root);
|
|
48
48
|
}
|
|
@@ -82,18 +82,18 @@ $btn-letter-spacing: 0.1em;
|
|
|
82
82
|
&_size {
|
|
83
83
|
&_sm {
|
|
84
84
|
height: 34px;
|
|
85
|
-
font-size:
|
|
86
|
-
border-radius:
|
|
85
|
+
font-size: variables.$font-size-sm;
|
|
86
|
+
border-radius: variables.$radius-small;
|
|
87
87
|
}
|
|
88
88
|
&_md {
|
|
89
89
|
height: 46px;
|
|
90
|
-
font-size:
|
|
91
|
-
border-radius:
|
|
90
|
+
font-size: variables.$font-size-base;
|
|
91
|
+
border-radius: variables.$radius-large;
|
|
92
92
|
}
|
|
93
93
|
&_lg {
|
|
94
94
|
height: 56px;
|
|
95
|
-
font-size:
|
|
96
|
-
border-radius:
|
|
95
|
+
font-size: variables.$font-size-lg;
|
|
96
|
+
border-radius: variables.$radius-large;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
|
|
@@ -118,12 +118,12 @@ $btn-letter-spacing: 0.1em;
|
|
|
118
118
|
align-items: center;
|
|
119
119
|
|
|
120
120
|
#{$root}__text {
|
|
121
|
-
color:
|
|
121
|
+
color: variables.$link-color;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
&:hover {
|
|
125
125
|
#{$root}__text {
|
|
126
|
-
color:
|
|
126
|
+
color: variables.$link-color-hover;
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
}
|
|
@@ -140,8 +140,8 @@ $btn-letter-spacing: 0.1em;
|
|
|
140
140
|
&_failed {
|
|
141
141
|
&,
|
|
142
142
|
&:hover {
|
|
143
|
-
border-color:
|
|
144
|
-
box-shadow: 0 0 1rem rgba(
|
|
143
|
+
border-color: variables.$danger;
|
|
144
|
+
box-shadow: 0 0 1rem rgba(variables.$danger, 0.2);
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
147
|
|
|
@@ -160,18 +160,18 @@ $btn-letter-spacing: 0.1em;
|
|
|
160
160
|
position: relative;
|
|
161
161
|
top: -1px;
|
|
162
162
|
margin-left: 4px;
|
|
163
|
-
border-radius:
|
|
164
|
-
font-size:
|
|
163
|
+
border-radius: variables.$radius-small;
|
|
164
|
+
font-size: variables.$font-size-xs;
|
|
165
165
|
line-height: 16px;
|
|
166
166
|
padding: 3px 5px;
|
|
167
167
|
|
|
168
168
|
$badge-types: (
|
|
169
|
-
"primary":
|
|
170
|
-
"secondary":
|
|
171
|
-
"success":
|
|
172
|
-
"danger":
|
|
173
|
-
"warning":
|
|
174
|
-
"info":
|
|
169
|
+
"primary": variables.$primary,
|
|
170
|
+
"secondary": variables.$secondary,
|
|
171
|
+
"success": variables.$success,
|
|
172
|
+
"danger": variables.$danger,
|
|
173
|
+
"warning": variables.$warning,
|
|
174
|
+
"info": variables.$info,
|
|
175
175
|
);
|
|
176
176
|
|
|
177
177
|
@each $type, $color in $badge-types {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--disabled-text-color: rgba(0, 0, 0, 0.3);
|
|
@@ -15,7 +15,7 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
15
15
|
|
|
16
16
|
display: inline-flex;
|
|
17
17
|
|
|
18
|
-
font-family:
|
|
18
|
+
font-family: variables.$font-family-nunito;
|
|
19
19
|
|
|
20
20
|
&__input + &__label {
|
|
21
21
|
display: inline-flex;
|
|
@@ -36,8 +36,8 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
36
36
|
flex-shrink: 0;
|
|
37
37
|
flex-grow: 0;
|
|
38
38
|
|
|
39
|
-
border: 1px solid
|
|
40
|
-
border-radius:
|
|
39
|
+
border: 1px solid variables.$gray;
|
|
40
|
+
border-radius: variables.$radius-small;
|
|
41
41
|
|
|
42
42
|
background-repeat: no-repeat;
|
|
43
43
|
background-position: center center;
|
|
@@ -58,15 +58,15 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
58
58
|
transition: opacity 150ms ease-in-out;
|
|
59
59
|
opacity: 0;
|
|
60
60
|
|
|
61
|
-
border-radius:
|
|
62
|
-
border: 4px solid
|
|
61
|
+
border-radius: variables.$radius-large;
|
|
62
|
+
border: 4px solid variables.$primary-light;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
&-text {
|
|
66
66
|
margin-left: 8px;
|
|
67
|
-
color:
|
|
68
|
-
font-size:
|
|
69
|
-
font-weight:
|
|
67
|
+
color: variables.$text-color;
|
|
68
|
+
font-size: variables.$font-size-sm;
|
|
69
|
+
font-weight: variables.$font-weight-md;
|
|
70
70
|
transform: translateY(1px);
|
|
71
71
|
}
|
|
72
72
|
}
|
|
@@ -83,7 +83,7 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
83
83
|
|
|
84
84
|
//ACTIVE
|
|
85
85
|
&:not(:disabled):not(:checked):active + #{$root}__label::before {
|
|
86
|
-
border-color:
|
|
86
|
+
border-color: variables.$primary;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
&:active:checked + #{$root}__label::after {
|
|
@@ -91,7 +91,7 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
&:checked:active + #{$root}__label::before {
|
|
94
|
-
background-color:
|
|
94
|
+
background-color: variables.$primary-light;
|
|
95
95
|
border-color: transparent;
|
|
96
96
|
}
|
|
97
97
|
|
|
@@ -102,8 +102,8 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
102
102
|
|
|
103
103
|
//CHECKED
|
|
104
104
|
&:checked + #{$root}__label::before {
|
|
105
|
-
border-color:
|
|
106
|
-
background-color:
|
|
105
|
+
border-color: variables.$primary;
|
|
106
|
+
background-color: variables.$primary;
|
|
107
107
|
background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.20898 1L3.70898 7L1.20898 4.27273' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
|
108
108
|
}
|
|
109
109
|
|
|
@@ -115,13 +115,13 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
&::before {
|
|
118
|
-
background:
|
|
118
|
+
background: variables.$element-background-color-disabled;
|
|
119
119
|
border: none;
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
&:disabled:checked #{$root}__label::before {
|
|
124
|
-
background-color:
|
|
124
|
+
background-color: variables.$element-background-color-disabled;
|
|
125
125
|
border-color: none;
|
|
126
126
|
background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.8584 1.48401L4.3584 7.48401L1.8584 4.75674' stroke='black' stroke-opacity='0.1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
|
127
127
|
}
|
|
@@ -133,17 +133,17 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
133
133
|
&::before {
|
|
134
134
|
width: 24px;
|
|
135
135
|
height: 24px;
|
|
136
|
-
border-radius:
|
|
136
|
+
border-radius: variables.$radius-small;
|
|
137
137
|
}
|
|
138
138
|
&::after {
|
|
139
139
|
width: 26px;
|
|
140
140
|
height: 26px;
|
|
141
|
-
border-radius:
|
|
141
|
+
border-radius: variables.$radius-large;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
&-text {
|
|
145
145
|
margin-left: 12px;
|
|
146
|
-
font-size:
|
|
146
|
+
font-size: variables.$font-size-lg;
|
|
147
147
|
line-height: 24px;
|
|
148
148
|
}
|
|
149
149
|
}
|
|
@@ -160,13 +160,13 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
160
160
|
&::after {
|
|
161
161
|
width: 22px;
|
|
162
162
|
height: 22px;
|
|
163
|
-
border-radius:
|
|
163
|
+
border-radius: variables.$radius-medium;
|
|
164
164
|
transform: translate(-13.5%, -13.5%);
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
&-text {
|
|
168
168
|
margin-left: 8px;
|
|
169
|
-
font-size:
|
|
169
|
+
font-size: variables.$font-size-base;
|
|
170
170
|
line-height: 22px;
|
|
171
171
|
}
|
|
172
172
|
}
|
|
@@ -183,13 +183,13 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
183
183
|
&::after {
|
|
184
184
|
width: 18px;
|
|
185
185
|
height: 18px;
|
|
186
|
-
border-radius:
|
|
186
|
+
border-radius: variables.$radius-medium;
|
|
187
187
|
transform: translate(-15.5%, -15.5%);
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
&-text {
|
|
191
191
|
margin-left: 8px;
|
|
192
|
-
font-size:
|
|
192
|
+
font-size: variables.$font-size-sm;
|
|
193
193
|
line-height: 18px;
|
|
194
194
|
}
|
|
195
195
|
}
|
|
@@ -198,10 +198,10 @@ $disabled-text-color: var(--disabled-text-color);
|
|
|
198
198
|
}
|
|
199
199
|
.has-errors label {
|
|
200
200
|
&::before {
|
|
201
|
-
border-color:
|
|
201
|
+
border-color: variables.$danger;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
span {
|
|
205
|
-
color:
|
|
205
|
+
color: variables.$danger;
|
|
206
206
|
}
|
|
207
207
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
|
|
4
4
|
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
&__dropdown {
|
|
22
|
-
background:
|
|
22
|
+
background: variables.$element-background-color;
|
|
23
23
|
|
|
24
24
|
@include mixins.calendar-border();
|
|
25
25
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
|
|
4
4
|
:root {
|
|
@@ -22,7 +22,7 @@ $date-range-separator-color: var(--date-range-separator-color);
|
|
|
22
22
|
@include mixins.date-range-sizes($root);
|
|
23
23
|
|
|
24
24
|
&__split {
|
|
25
|
-
background:
|
|
25
|
+
background: variables.$element-background-color;
|
|
26
26
|
@include mixins.calendar-border();
|
|
27
27
|
|
|
28
28
|
.DayPicker-Months {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
|
|
4
4
|
.DateTimeFieldView {
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
&__dropdown {
|
|
20
20
|
@include mixins.calendar-border();
|
|
21
|
-
background:
|
|
21
|
+
background: variables.$element-background-color;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -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
|
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
|
|
43
43
|
&__dropdown {
|
|
44
44
|
@include mixins.calendar-border();
|
|
45
|
-
background-color:
|
|
45
|
+
background-color: variables.$element-background-color;
|
|
46
46
|
}
|
|
47
47
|
}
|