@steroidsjs/bootstrap 3.0.0-beta.86 → 3.0.0-beta.88
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.js +1 -1
- 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
|
|
|
4
4
|
:root {
|
|
5
5
|
--accordion-light-background: var(--gray);
|
|
@@ -125,7 +125,7 @@ $accordion-chevron-color: var(--accordion-chevron-color);
|
|
|
125
125
|
|
|
126
126
|
&_position {
|
|
127
127
|
&_top {
|
|
128
|
-
border-radius:
|
|
128
|
+
border-radius: variables.$radius-large variables.$radius-large 0 0;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
&_middle {
|
|
@@ -133,7 +133,7 @@ $accordion-chevron-color: var(--accordion-chevron-color);
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
&_bottom {
|
|
136
|
-
border-radius: 0 0
|
|
136
|
+
border-radius: 0 0 variables.$radius-large variables.$radius-large;
|
|
137
137
|
|
|
138
138
|
#{$root}__content {
|
|
139
139
|
grid-row-start: 1;
|
|
@@ -175,7 +175,7 @@ $accordion-chevron-color: var(--accordion-chevron-color);
|
|
|
175
175
|
width: 24px;
|
|
176
176
|
height: 24px;
|
|
177
177
|
box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
|
|
178
|
-
border-radius:
|
|
178
|
+
border-radius: variables.$radius-small;
|
|
179
179
|
|
|
180
180
|
transform: rotate(0deg);
|
|
181
181
|
transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
@@ -195,7 +195,7 @@ $accordion-chevron-color: var(--accordion-chevron-color);
|
|
|
195
195
|
padding: 16px;
|
|
196
196
|
align-self: center;
|
|
197
197
|
|
|
198
|
-
font-size:
|
|
198
|
+
font-size: variables.$font-size-lg;
|
|
199
199
|
line-height: 24px;
|
|
200
200
|
}
|
|
201
201
|
|
|
@@ -224,7 +224,7 @@ $accordion-chevron-color: var(--accordion-chevron-color);
|
|
|
224
224
|
overflow: hidden;
|
|
225
225
|
max-height: 0;
|
|
226
226
|
padding: 0 16px;
|
|
227
|
-
color:
|
|
227
|
+
color: variables.$text-color;
|
|
228
228
|
|
|
229
229
|
&_visible {
|
|
230
230
|
max-height: 1024px;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
|
-
@use "../../scss/variables"
|
|
2
|
+
@use "../../scss/variables";
|
|
3
3
|
|
|
4
4
|
:root {
|
|
5
5
|
--alert-text-color: #152536;
|
|
@@ -15,24 +15,24 @@ $alert-themes: () !default;
|
|
|
15
15
|
$alert-themes: map.merge(
|
|
16
16
|
(
|
|
17
17
|
"success": (
|
|
18
|
-
"background-color":
|
|
19
|
-
"icon-color":
|
|
18
|
+
"background-color": variables.$success-light,
|
|
19
|
+
"icon-color": variables.$success,
|
|
20
20
|
),
|
|
21
21
|
"info": (
|
|
22
|
-
"background-color":
|
|
23
|
-
"icon-color":
|
|
22
|
+
"background-color": variables.$info-light,
|
|
23
|
+
"icon-color": variables.$info,
|
|
24
24
|
),
|
|
25
25
|
"warning": (
|
|
26
|
-
"background-color":
|
|
27
|
-
"icon-color":
|
|
26
|
+
"background-color": variables.$warning-light,
|
|
27
|
+
"icon-color": variables.$warning,
|
|
28
28
|
),
|
|
29
29
|
"error": (
|
|
30
|
-
"background-color":
|
|
31
|
-
"icon-color":
|
|
30
|
+
"background-color": variables.$danger-light,
|
|
31
|
+
"icon-color": variables.$danger,
|
|
32
32
|
),
|
|
33
33
|
"default": (
|
|
34
|
-
"background-color":
|
|
35
|
-
"icon-color":
|
|
34
|
+
"background-color": variables.$light-gray,
|
|
35
|
+
"icon-color": variables.$gray-dark,
|
|
36
36
|
),
|
|
37
37
|
),
|
|
38
38
|
$alert-themes
|
|
@@ -43,8 +43,8 @@ $alert-themes: map.merge(
|
|
|
43
43
|
|
|
44
44
|
position: relative;
|
|
45
45
|
padding: 16px;
|
|
46
|
-
border-radius:
|
|
47
|
-
font-family:
|
|
46
|
+
border-radius: variables.$radius-large;
|
|
47
|
+
font-family: variables.$font-family-nunito;
|
|
48
48
|
|
|
49
49
|
&_close-animation {
|
|
50
50
|
animation: hide_slide 0.4s ease-in;
|
|
@@ -107,7 +107,7 @@ $alert-themes: map.merge(
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
&__message {
|
|
110
|
-
font-size:
|
|
110
|
+
font-size: variables.$font-size-lg;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
&__wrapper {
|
|
@@ -124,6 +124,6 @@ $alert-themes: map.merge(
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
&__description {
|
|
127
|
-
font-size:
|
|
127
|
+
font-size: variables.$font-size-base;
|
|
128
128
|
}
|
|
129
129
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--border-width-small: 1px;
|
|
@@ -62,7 +62,7 @@ $status-border-color: var(--status-border-color);
|
|
|
62
62
|
height: 64px;
|
|
63
63
|
width: 64px;
|
|
64
64
|
line-height: 64px;
|
|
65
|
-
font-size:
|
|
65
|
+
font-size: variables.$font-size-base;
|
|
66
66
|
}
|
|
67
67
|
--border-width: var(--border-width-large);
|
|
68
68
|
--status-border-width: var(--status-border-width-large);
|
|
@@ -74,7 +74,7 @@ $status-border-color: var(--status-border-color);
|
|
|
74
74
|
height: 50px;
|
|
75
75
|
width: 50px;
|
|
76
76
|
line-height: 50px;
|
|
77
|
-
font-size:
|
|
77
|
+
font-size: variables.$font-size-sm;
|
|
78
78
|
}
|
|
79
79
|
--border-width: var(--border-width-medium);
|
|
80
80
|
--status-border-width: var(--status-border-width-medium);
|
|
@@ -86,7 +86,7 @@ $status-border-color: var(--status-border-color);
|
|
|
86
86
|
height: 32px;
|
|
87
87
|
width: 32px;
|
|
88
88
|
line-height: 32px;
|
|
89
|
-
font-size:
|
|
89
|
+
font-size: variables.$font-size-xs;
|
|
90
90
|
}
|
|
91
91
|
--border-width: var(--border-width-small);
|
|
92
92
|
--status-border-width: var(--status-border-width-small);
|
|
@@ -125,17 +125,17 @@ $status-border-color: var(--status-border-color);
|
|
|
125
125
|
height: var(--status-size);
|
|
126
126
|
z-index: 10;
|
|
127
127
|
|
|
128
|
-
color:
|
|
128
|
+
color: variables.$success;
|
|
129
129
|
|
|
130
|
-
border-radius:
|
|
131
|
-
background-color:
|
|
130
|
+
border-radius: variables.$radius-circle;
|
|
131
|
+
background-color: variables.$success;
|
|
132
132
|
|
|
133
133
|
border: var(--status-border-width) solid $status-border-color;
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
&_has-border {
|
|
138
|
-
@include border(
|
|
138
|
+
@include border(variables.$gradient-blue);
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
&__body {
|
|
@@ -146,12 +146,12 @@ $status-border-color: var(--status-border-color);
|
|
|
146
146
|
white-space: nowrap;
|
|
147
147
|
vertical-align: middle;
|
|
148
148
|
|
|
149
|
-
color:
|
|
150
|
-
background:
|
|
149
|
+
color: variables.$white;
|
|
150
|
+
background: variables.$primary;
|
|
151
151
|
|
|
152
152
|
span {
|
|
153
153
|
display: block;
|
|
154
|
-
font-family:
|
|
154
|
+
font-family: variables.$font-family-nunito;
|
|
155
155
|
font-weight: 800;
|
|
156
156
|
letter-spacing: 0.1em;
|
|
157
157
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--counter-background-color: #ffffff;
|
|
@@ -23,9 +23,9 @@ $counter-cross-color: var(--counter-cross-color);
|
|
|
23
23
|
position: relative;
|
|
24
24
|
width: fit-content;
|
|
25
25
|
|
|
26
|
-
font-family:
|
|
27
|
-
color:
|
|
28
|
-
font-size:
|
|
26
|
+
font-family: variables.$font-family-nunito;
|
|
27
|
+
color: variables.$white;
|
|
28
|
+
font-size: variables.$font-size-xs;
|
|
29
29
|
line-height: 16px;
|
|
30
30
|
|
|
31
31
|
&__content {
|
|
@@ -43,12 +43,12 @@ $counter-cross-color: var(--counter-cross-color);
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
$badge-types: (
|
|
46
|
-
"primary":
|
|
47
|
-
"secondary":
|
|
48
|
-
"success":
|
|
49
|
-
"danger":
|
|
50
|
-
"warning":
|
|
51
|
-
"info":
|
|
46
|
+
"primary": variables.$primary,
|
|
47
|
+
"secondary": variables.$secondary,
|
|
48
|
+
"success": variables.$success,
|
|
49
|
+
"danger": variables.$danger,
|
|
50
|
+
"warning": variables.$warning,
|
|
51
|
+
"info": variables.$info,
|
|
52
52
|
);
|
|
53
53
|
|
|
54
54
|
@each $type, $color in $badge-types {
|
|
@@ -56,7 +56,7 @@ $counter-cross-color: var(--counter-cross-color);
|
|
|
56
56
|
background-color: $color;
|
|
57
57
|
|
|
58
58
|
@if ($type == "warning" or $type == "info") {
|
|
59
|
-
color:
|
|
59
|
+
color: variables.$static-text-color;
|
|
60
60
|
|
|
61
61
|
#{$root}__close {
|
|
62
62
|
svg {
|
|
@@ -82,11 +82,11 @@ $counter-cross-color: var(--counter-cross-color);
|
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
&_squarer {
|
|
85
|
-
border-radius:
|
|
85
|
+
border-radius: variables.$radius-small;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
&_rounder {
|
|
89
|
-
border-radius:
|
|
89
|
+
border-radius: variables.$radius-xlarge;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
&_hasClose {
|
|
@@ -99,8 +99,8 @@ $counter-cross-color: var(--counter-cross-color);
|
|
|
99
99
|
border: 1px solid $counter-border-color;
|
|
100
100
|
border-radius: 100px;
|
|
101
101
|
|
|
102
|
-
background:
|
|
103
|
-
color:
|
|
102
|
+
background: variables.$light-gray;
|
|
103
|
+
color: variables.$text-color;
|
|
104
104
|
padding: 3px 12px;
|
|
105
105
|
|
|
106
106
|
#{$root}__content {
|
|
@@ -119,17 +119,17 @@ $counter-cross-color: var(--counter-cross-color);
|
|
|
119
119
|
|
|
120
120
|
margin-right: 4px;
|
|
121
121
|
padding: 0 5.4px;
|
|
122
|
-
background-color:
|
|
122
|
+
background-color: variables.$white;
|
|
123
123
|
|
|
124
|
-
border-radius:
|
|
124
|
+
border-radius: variables.$radius-circle;
|
|
125
125
|
background-color: $counter-background-color;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
#{$root}__counter-content {
|
|
129
|
-
font-weight:
|
|
130
|
-
font-size:
|
|
129
|
+
font-weight: variables.$font-weight-sm;
|
|
130
|
+
font-size: variables.$font-size-xs;
|
|
131
131
|
line-height: 16px;
|
|
132
|
-
color:
|
|
132
|
+
color: variables.$text-color;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
#{$root}__close {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
|
|
4
4
|
:root {
|
|
@@ -17,12 +17,12 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
17
17
|
.CalendarView {
|
|
18
18
|
$root: &;
|
|
19
19
|
|
|
20
|
-
background-color:
|
|
21
|
-
border-radius:
|
|
20
|
+
background-color: variables.$element-background-color;
|
|
21
|
+
border-radius: variables.$radius-large;
|
|
22
22
|
border: 4px solid $calendar-border-color;
|
|
23
23
|
position: relative;
|
|
24
|
-
color:
|
|
25
|
-
font-weight:
|
|
24
|
+
color: variables.$text-color;
|
|
25
|
+
font-weight: variables.$font-weight-md;
|
|
26
26
|
user-select: none;
|
|
27
27
|
padding: 12px;
|
|
28
28
|
|
|
@@ -61,9 +61,9 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
61
61
|
color: inherit;
|
|
62
62
|
text-align: center;
|
|
63
63
|
vertical-align: middle;
|
|
64
|
-
font-size:
|
|
65
|
-
line-height:
|
|
66
|
-
font-weight:
|
|
64
|
+
font-size: variables.$font-size-base;
|
|
65
|
+
line-height: variables.$line-height-base;
|
|
66
|
+
font-weight: variables.$font-weight-lg;
|
|
67
67
|
text-transform: capitalize;
|
|
68
68
|
}
|
|
69
69
|
|
|
@@ -92,7 +92,7 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
92
92
|
.DayPicker-Day {
|
|
93
93
|
position: relative;
|
|
94
94
|
padding: 0;
|
|
95
|
-
border-radius:
|
|
95
|
+
border-radius: variables.$radius-large;
|
|
96
96
|
|
|
97
97
|
vertical-align: middle;
|
|
98
98
|
text-align: center;
|
|
@@ -142,14 +142,14 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
&--outside {
|
|
145
|
-
color:
|
|
145
|
+
color: variables.$element-placeholder-color;
|
|
146
146
|
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
&--today {
|
|
150
150
|
#{$root}__day {
|
|
151
|
-
border: 1px solid
|
|
152
|
-
color:
|
|
151
|
+
border: 1px solid variables.$primary;
|
|
152
|
+
color: variables.$primary;
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
|
|
@@ -175,12 +175,12 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
175
175
|
// Days selection
|
|
176
176
|
// Selected day
|
|
177
177
|
.DayPicker-Day--selected:not(.DayPicker-Day--inRange) {
|
|
178
|
-
color:
|
|
179
|
-
background-color:
|
|
178
|
+
color: variables.$white;
|
|
179
|
+
background-color: variables.$primary;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
.DayPicker-Day--selected.DayPicker-Day--today .CalendarView__day {
|
|
183
|
-
color:
|
|
183
|
+
color: variables.$white;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
// Hover
|
|
@@ -204,7 +204,7 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
204
204
|
width: 34px;
|
|
205
205
|
height: 34px;
|
|
206
206
|
line-height: 30px;
|
|
207
|
-
border-radius:
|
|
207
|
+
border-radius: variables.$radius-large;
|
|
208
208
|
display: flex;
|
|
209
209
|
justify-content: center;
|
|
210
210
|
align-items: center;
|
|
@@ -213,16 +213,16 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
213
213
|
&_ranged {
|
|
214
214
|
.DayPicker-Day {
|
|
215
215
|
&--start {
|
|
216
|
-
color:
|
|
216
|
+
color: variables.$white;
|
|
217
217
|
|
|
218
218
|
#{$root}__day {
|
|
219
|
-
background-color:
|
|
219
|
+
background-color: variables.$primary;
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
&::before {
|
|
223
223
|
width: 50px;
|
|
224
224
|
height: 42px;
|
|
225
|
-
background-color:
|
|
225
|
+
background-color: variables.$primary-light;
|
|
226
226
|
border-radius: 16px 0px 0px 16px;
|
|
227
227
|
}
|
|
228
228
|
}
|
|
@@ -231,20 +231,20 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
231
231
|
color: #fff;
|
|
232
232
|
|
|
233
233
|
#{$root}__day {
|
|
234
|
-
background-color:
|
|
234
|
+
background-color: variables.$calendar-primary-color;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
237
|
&::before {
|
|
238
238
|
width: 46px;
|
|
239
239
|
height: 42px;
|
|
240
|
-
background-color:
|
|
240
|
+
background-color: variables.$primary-light;
|
|
241
241
|
border-radius: 0px 16px 16px 0px;
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
244
|
|
|
245
245
|
&--inRange {
|
|
246
246
|
&::before {
|
|
247
|
-
background-color:
|
|
247
|
+
background-color: variables.$primary-light;
|
|
248
248
|
width: 50px;
|
|
249
249
|
height: 42px;
|
|
250
250
|
}
|
|
@@ -252,7 +252,7 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
252
252
|
|
|
253
253
|
//Today in range
|
|
254
254
|
&--inRange.DayPicker-Day--selected.DayPicker-Day--today .CalendarView__day {
|
|
255
|
-
color:
|
|
255
|
+
color: variables.$primary;
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
&--inRange:hover .CalendarView__day {
|
|
@@ -263,7 +263,7 @@ $calendar-border-color: var(--calendar-border-color);
|
|
|
263
263
|
&--outRange {
|
|
264
264
|
pointer-events: none;
|
|
265
265
|
&::before {
|
|
266
|
-
background-color:
|
|
266
|
+
background-color: variables.$calendar-primary-light-color;
|
|
267
267
|
}
|
|
268
268
|
}
|
|
269
269
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
@use '../../scss/mixins';
|
|
3
3
|
|
|
4
4
|
:root {
|
|
@@ -51,14 +51,14 @@ $separator-background-color: var(--separator-background-color);
|
|
|
51
51
|
cursor: pointer;
|
|
52
52
|
transition: color 0.1s ease-in;
|
|
53
53
|
|
|
54
|
-
font-weight:
|
|
55
|
-
font-size:
|
|
56
|
-
line-height:
|
|
54
|
+
font-weight: variables.$font-weight-lg;
|
|
55
|
+
font-size: variables.$font-size-lg;
|
|
56
|
+
line-height: variables.$line-height-lg;
|
|
57
57
|
|
|
58
58
|
&:hover,
|
|
59
59
|
&:active,
|
|
60
60
|
&:focus {
|
|
61
|
-
color:
|
|
61
|
+
color: variables.$calendar-primary-color;
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
|
|
@@ -98,7 +98,7 @@ $separator-background-color: var(--separator-background-color);
|
|
|
98
98
|
left: 0;
|
|
99
99
|
right: 0;
|
|
100
100
|
bottom: 50px;
|
|
101
|
-
background-color:
|
|
101
|
+
background-color: variables.$element-background-color;
|
|
102
102
|
margin-bottom: 12px;
|
|
103
103
|
max-height: 294px;
|
|
104
104
|
|
|
@@ -120,7 +120,7 @@ $separator-background-color: var(--separator-background-color);
|
|
|
120
120
|
|
|
121
121
|
text-align: center;
|
|
122
122
|
background-color: $caption-header-month-background-color;
|
|
123
|
-
font-weight:
|
|
123
|
+
font-weight: variables.$font-weight-lg;
|
|
124
124
|
|
|
125
125
|
&_months {
|
|
126
126
|
position: relative;
|
|
@@ -162,7 +162,7 @@ $separator-background-color: var(--separator-background-color);
|
|
|
162
162
|
|
|
163
163
|
&-years {
|
|
164
164
|
grid-area: YearsCol;
|
|
165
|
-
@include mixins.scrollWrapper(294px, 0,
|
|
165
|
+
@include mixins.scrollWrapper(294px, 0, variables.$scroll-thumb-color, variables.$scroll-track-color);
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
@@ -172,19 +172,19 @@ $separator-background-color: var(--separator-background-color);
|
|
|
172
172
|
}
|
|
173
173
|
display: block;
|
|
174
174
|
width: fit-content;
|
|
175
|
-
background-color:
|
|
175
|
+
background-color: variables.$element-background-color;
|
|
176
176
|
padding: 4px 8px;
|
|
177
177
|
cursor: pointer;
|
|
178
178
|
transition: background-color 0.1s ease-in;
|
|
179
179
|
margin: 0 auto;
|
|
180
|
-
border-radius:
|
|
180
|
+
border-radius: variables.$radius-large;
|
|
181
181
|
|
|
182
182
|
&_selected {
|
|
183
|
-
background-color:
|
|
183
|
+
background-color: variables.$primary-light;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
&:hover {
|
|
187
|
-
background-color:
|
|
187
|
+
background-color: variables.$primary-light;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
#{$root}__cell-value {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--card-footer-background-color: var(--additional-light-blue);
|
|
@@ -15,13 +15,13 @@ $card-dots-color: var(--card-dots-color);
|
|
|
15
15
|
|
|
16
16
|
%headTemplate {
|
|
17
17
|
font-weight: 700;
|
|
18
|
-
font-size:
|
|
18
|
+
font-size: variables.$font-size-lg;
|
|
19
19
|
line-height: 24px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
%subheadTemplate {
|
|
23
23
|
font-weight: 400;
|
|
24
|
-
font-size:
|
|
24
|
+
font-size: variables.$font-size-xs;
|
|
25
25
|
line-height: 16px;
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -30,7 +30,7 @@ $card-dots-color: var(--card-dots-color);
|
|
|
30
30
|
width: 4px;
|
|
31
31
|
height: 4px;
|
|
32
32
|
background-color: $card-dots-color;
|
|
33
|
-
border-radius:
|
|
33
|
+
border-radius: variables.$radius-circle;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.CardView {
|
|
@@ -41,10 +41,10 @@ $card-dots-color: var(--card-dots-color);
|
|
|
41
41
|
overflow: hidden;
|
|
42
42
|
height: fit-content;
|
|
43
43
|
|
|
44
|
-
border: 1px solid
|
|
45
|
-
border-radius:
|
|
46
|
-
color:
|
|
47
|
-
background-color:
|
|
44
|
+
border: 1px solid variables.$element-border-color;
|
|
45
|
+
border-radius: variables.$radius-large;
|
|
46
|
+
color: variables.$text-color;
|
|
47
|
+
background-color: variables.$element-background-color;
|
|
48
48
|
|
|
49
49
|
&__header {
|
|
50
50
|
display: flex;
|
|
@@ -111,7 +111,7 @@ $card-dots-color: var(--card-dots-color);
|
|
|
111
111
|
width: 100%;
|
|
112
112
|
height: 227px;
|
|
113
113
|
overflow: hidden;
|
|
114
|
-
border-radius:
|
|
114
|
+
border-radius: variables.$radius-large;
|
|
115
115
|
|
|
116
116
|
img {
|
|
117
117
|
display: block;
|
|
@@ -137,7 +137,7 @@ $card-dots-color: var(--card-dots-color);
|
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
&__description {
|
|
140
|
-
font-size:
|
|
140
|
+
font-size: variables.$font-size-base;
|
|
141
141
|
line-height: 22px;
|
|
142
142
|
}
|
|
143
143
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--detail-background-color-value: $white;
|
|
@@ -14,7 +14,7 @@ $detail-background-color-value: var(--detail-background-color-value);
|
|
|
14
14
|
$detail-background-color-label: var(--detail-background-color-label);
|
|
15
15
|
|
|
16
16
|
.DetailView {
|
|
17
|
-
font-family:
|
|
17
|
+
font-family: variables.$font-family-nunito;
|
|
18
18
|
|
|
19
19
|
&__header {
|
|
20
20
|
display: flex;
|
|
@@ -24,10 +24,10 @@ $detail-background-color-label: var(--detail-background-color-label);
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
&__title {
|
|
27
|
-
color:
|
|
27
|
+
color: variables.$black-30;
|
|
28
28
|
font-size: 56px;
|
|
29
29
|
line-height: 56px;
|
|
30
|
-
font-weight:
|
|
30
|
+
font-weight: variables.$font-weight-lg;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
&__controls {
|
|
@@ -37,7 +37,7 @@ $detail-background-color-label: var(--detail-background-color-label);
|
|
|
37
37
|
&__table-container {
|
|
38
38
|
display: flex;
|
|
39
39
|
border-radius: 10px;
|
|
40
|
-
border: 1px solid
|
|
40
|
+
border: 1px solid variables.$gray;
|
|
41
41
|
overflow: hidden;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -51,33 +51,33 @@ $detail-background-color-label: var(--detail-background-color-label);
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
&__row:not(:last-child) {
|
|
54
|
-
border-bottom: 1px solid
|
|
54
|
+
border-bottom: 1px solid variables.$gray;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
&__label,
|
|
58
58
|
&__value {
|
|
59
59
|
&:not(:last-child) {
|
|
60
|
-
border-right: 1px solid
|
|
60
|
+
border-right: 1px solid variables.$gray;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
padding: 12px;
|
|
64
64
|
|
|
65
|
-
font-weight:
|
|
66
|
-
font-size:
|
|
65
|
+
font-weight: variables.$font-weight-md;
|
|
66
|
+
font-size: variables.$font-size-sm;
|
|
67
67
|
line-height: 18px;
|
|
68
|
-
color:
|
|
68
|
+
color: variables.$text-color;
|
|
69
69
|
background-color: $detail-background-color-value;
|
|
70
70
|
text-align: start;
|
|
71
71
|
|
|
72
72
|
&_size_md {
|
|
73
73
|
padding: 16px 12px;
|
|
74
|
-
font-size:
|
|
74
|
+
font-size: variables.$font-size-base;
|
|
75
75
|
line-height: 22px;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
&_size_lg {
|
|
79
79
|
padding: 18px 12px;
|
|
80
|
-
font-size:
|
|
80
|
+
font-size: variables.$font-size-lg;
|
|
81
81
|
line-height: 24px;
|
|
82
82
|
}
|
|
83
83
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../../scss/variables"
|
|
1
|
+
@use "../../scss/variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
4
|
--dropdown-background: #fff;
|
|
@@ -113,7 +113,7 @@ $gap: 12px;
|
|
|
113
113
|
|
|
114
114
|
z-index: 1000;
|
|
115
115
|
position: absolute;
|
|
116
|
-
color:
|
|
116
|
+
color: variables.$text-color;
|
|
117
117
|
|
|
118
118
|
transform: translate(0, 0);
|
|
119
119
|
opacity: 0;
|
|
@@ -122,7 +122,7 @@ $gap: 12px;
|
|
|
122
122
|
z-index: 4;
|
|
123
123
|
min-width: 200px;
|
|
124
124
|
padding: 12px;
|
|
125
|
-
border-radius:
|
|
125
|
+
border-radius: variables.$radius-large;
|
|
126
126
|
background-color: $dropdown-background;
|
|
127
127
|
border: 1px solid $dropdown-border;
|
|
128
128
|
|