claritas-web-framework 8.5.8 → 8.5.91
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/.prettierrc +10 -10
- package/README.md +1 -1
- package/dist/index.css +1 -1
- package/index.html +20 -20
- package/index.js +2 -2
- package/package.json +33 -33
- package/sass/_functions.scss +55 -55
- package/sass/_helpers.scss +8 -8
- package/sass/_mixins.scss +12 -12
- package/sass/_modules.scss +30 -30
- package/sass/_reboot.scss +264 -264
- package/sass/_root.scss +56 -56
- package/sass/_utilities.scss +17 -17
- package/sass/_variables.scss +445 -445
- package/sass/helpers/_container.scss +11 -11
- package/sass/helpers/_embed.scss +36 -36
- package/sass/helpers/_grid.scss +53 -53
- package/sass/helpers/_image.scss +5 -5
- package/sass/helpers/_link.scss +15 -15
- package/sass/helpers/_rfs.scss +303 -303
- package/sass/helpers/_screenReader.scss +13 -13
- package/sass/helpers/_wrap.scss +5 -5
- package/sass/index.scss +12 -12
- package/sass/mixins/_breakpoints.scss +133 -133
- package/sass/mixins/_button.scss +116 -116
- package/sass/mixins/_caret.scss +41 -41
- package/sass/mixins/_clearfix.scss +7 -7
- package/sass/mixins/_colors.scss +23 -23
- package/sass/mixins/_container.scss +21 -21
- package/sass/mixins/_gradient.scss +55 -55
- package/sass/mixins/_grid.scss +156 -156
- package/sass/mixins/_group.scss +70 -70
- package/sass/mixins/_list.scss +18 -18
- package/sass/mixins/_screenReader.scss +22 -22
- package/sass/mixins/_wrap.scss +7 -7
- package/sass/modules/_alert.scss +60 -60
- package/sass/modules/_breadcrumbs.scss +43 -43
- package/sass/modules/_button.scss +170 -170
- package/sass/modules/_card.scss +107 -107
- package/sass/modules/_close.scss +59 -59
- package/sass/modules/_details.scss +48 -48
- package/sass/modules/_dialog.scss +47 -47
- package/sass/modules/_dropdown.scss +44 -43
- package/sass/modules/_form.scss +261 -261
- package/sass/modules/_list.scss +78 -78
- package/sass/modules/_loader.scss +183 -183
- package/sass/modules/_modal.scss +45 -45
- package/sass/modules/_nav.scss +136 -135
- package/sass/modules/_pill.scss +61 -61
- package/sass/modules/_table.scss +96 -96
- package/sass/modules/_tabs.scss +88 -93
- package/sass/modules/_tag.scss +72 -72
- package/sass/modules/_tile.scss +101 -101
- package/sass/modules/_tooltip.scss +108 -108
- package/sass/modules/form/_checkbox.scss +78 -78
- package/sass/modules/form/_file.scss +149 -149
- package/sass/modules/form/_formFieldGroup.scss +60 -60
- package/sass/modules/form/_output.scss +6 -6
- package/sass/modules/form/_progress.scss +55 -55
- package/sass/modules/form/_radio.scss +57 -57
- package/sass/modules/form/_range.scss +144 -144
- package/sass/modules/form/_select.scss +22 -22
- package/sass/modules/form/_text.scss +28 -28
- package/sass/modules/form/_textarea.scss +3 -3
- package/sass/modules/form/_toggle.scss +68 -68
- package/sass/utilities/_align.scss +25 -25
- package/sass/utilities/_border.scss +59 -59
- package/sass/utilities/_colors.scss +76 -76
- package/sass/utilities/_display.scss +25 -25
- package/sass/utilities/_flex.scss +65 -65
- package/sass/utilities/_float.scss +17 -17
- package/sass/utilities/_order.scss +23 -23
- package/sass/utilities/_overflow.scss +25 -25
- package/sass/utilities/_pointerEvents.scss +17 -17
- package/sass/utilities/_position.scss +59 -59
- package/sass/utilities/_shadow.scss +7 -7
- package/sass/utilities/_size.scss +118 -118
- package/sass/utilities/_spacing.scss +107 -107
- package/sass/utilities/_translate.scss +15 -15
- package/sass/utilities/_typography.scss +62 -62
- package/sass/utilities/_visibility.scss +17 -17
- package/sass/utilities/_zIndex.scss +15 -15
- package/tests.js +5 -5
- package/webpack.config.js +27 -27
- package/webpack.plugins.js +15 -15
- package/webpack.rules.js +8 -8
package/sass/_reboot.scss
CHANGED
|
@@ -1,264 +1,264 @@
|
|
|
1
|
-
@use "sass:color";
|
|
2
|
-
@use "./helpers" as *;
|
|
3
|
-
@use "./variables" as *;
|
|
4
|
-
@use "./mixins" as *;
|
|
5
|
-
|
|
6
|
-
body {
|
|
7
|
-
font-family: var(--font-family-body);
|
|
8
|
-
font-size: var(--font-size-body);
|
|
9
|
-
font-weight: var(--font-weight-body);
|
|
10
|
-
line-height: var(--line-height-body);
|
|
11
|
-
color: var(--body-color);
|
|
12
|
-
text-align: var(--body-text-align);
|
|
13
|
-
background-color: var(--body-background);
|
|
14
|
-
text-size-adjust: 100%;
|
|
15
|
-
-webkit-tap-highlight-color: transparent;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
hr {
|
|
19
|
-
--hr-border-color: var(--border-color-main);
|
|
20
|
-
|
|
21
|
-
margin: 1rem 0;
|
|
22
|
-
border: 0;
|
|
23
|
-
border-top: 1px solid var(--hr-border-color);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
%heading {
|
|
27
|
-
margin: 0 0 0.5rem;
|
|
28
|
-
font-style: $headings-font-style;
|
|
29
|
-
font-weight: $headings-font-weight;
|
|
30
|
-
line-height: $headings-line-height;
|
|
31
|
-
color: $headings-color;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
h1,
|
|
35
|
-
.h1 {
|
|
36
|
-
@extend %heading;
|
|
37
|
-
|
|
38
|
-
font-size: var(--font-size-1);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
h2,
|
|
42
|
-
.h2 {
|
|
43
|
-
@extend %heading;
|
|
44
|
-
|
|
45
|
-
font-size: var(--font-size-2);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
h3,
|
|
49
|
-
.h3 {
|
|
50
|
-
@extend %heading;
|
|
51
|
-
|
|
52
|
-
font-size: var(--font-size-3);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
h4,
|
|
56
|
-
.h4 {
|
|
57
|
-
@extend %heading;
|
|
58
|
-
|
|
59
|
-
font-size: var(--font-size-4);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
h5,
|
|
63
|
-
.h5 {
|
|
64
|
-
@extend %heading;
|
|
65
|
-
|
|
66
|
-
font-size: var(--font-size-5);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
h6,
|
|
70
|
-
.h6 {
|
|
71
|
-
@extend %heading;
|
|
72
|
-
|
|
73
|
-
font-size: var(--font-size-6);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
p {
|
|
77
|
-
margin: 0 0 0.5rem;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
abbr[title] {
|
|
81
|
-
cursor: help;
|
|
82
|
-
text-decoration-skip-ink: none;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
address {
|
|
86
|
-
margin: 0 0 1rem;
|
|
87
|
-
font-style: normal;
|
|
88
|
-
line-height: inherit;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
ol,
|
|
92
|
-
ul {
|
|
93
|
-
padding-left: 2rem;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
ol,
|
|
97
|
-
ul,
|
|
98
|
-
dl {
|
|
99
|
-
margin: 0 0 1rem;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
ol ol,
|
|
103
|
-
ul ul,
|
|
104
|
-
ol ul,
|
|
105
|
-
ul ol {
|
|
106
|
-
margin: 0;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
dt {
|
|
110
|
-
font-weight: bolder;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
dd {
|
|
114
|
-
margin-bottom: 0.5rem;
|
|
115
|
-
margin-left: 0;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
a {
|
|
119
|
-
color: var(--primary);
|
|
120
|
-
text-decoration: $link-decoration;
|
|
121
|
-
|
|
122
|
-
&:hover {
|
|
123
|
-
color: color-mix(in oklab, var(--primary), #000 #{$link-shade-percentage});
|
|
124
|
-
text-decoration: $link-hover-decoration;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
a:not([href], [class]) {
|
|
129
|
-
&,
|
|
130
|
-
&:hover {
|
|
131
|
-
color: inherit;
|
|
132
|
-
text-decoration: none;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
figure {
|
|
137
|
-
margin: 0 0 1rem;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
img,
|
|
141
|
-
svg {
|
|
142
|
-
vertical-align: middle;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
table {
|
|
146
|
-
caption-side: bottom;
|
|
147
|
-
border-collapse: collapse;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
caption {
|
|
151
|
-
padding-top: $table-cell-padding-y;
|
|
152
|
-
padding-bottom: $table-cell-padding-y;
|
|
153
|
-
color: $table-caption-color;
|
|
154
|
-
text-align: left;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
th {
|
|
158
|
-
font-weight: $table-th-font-weight;
|
|
159
|
-
text-align: inherit;
|
|
160
|
-
text-align: -webkit-match-parent;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
thead,
|
|
164
|
-
tbody,
|
|
165
|
-
tfoot,
|
|
166
|
-
tr,
|
|
167
|
-
td,
|
|
168
|
-
th {
|
|
169
|
-
border-color: inherit;
|
|
170
|
-
border-style: solid;
|
|
171
|
-
border-width: 0;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
label {
|
|
175
|
-
display: inline-block;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
button {
|
|
179
|
-
border-radius: 0;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
[role="button"] {
|
|
183
|
-
cursor: pointer;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
select {
|
|
187
|
-
word-wrap: normal;
|
|
188
|
-
|
|
189
|
-
&:disabled {
|
|
190
|
-
opacity: 1;
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
[list]:not(
|
|
195
|
-
[type="date"],
|
|
196
|
-
[type="datetime-local"],
|
|
197
|
-
[type="month"],
|
|
198
|
-
[type="week"],
|
|
199
|
-
[type="time"]
|
|
200
|
-
)::-webkit-calendar-picker-indicator {
|
|
201
|
-
display: none !important;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
button:focus:not(:focus-visible) {
|
|
205
|
-
outline: 0;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
textarea {
|
|
209
|
-
resize: vertical;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
fieldset {
|
|
213
|
-
min-width: 0;
|
|
214
|
-
padding: 0;
|
|
215
|
-
margin: 0;
|
|
216
|
-
border: 0;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
legend {
|
|
220
|
-
float: left;
|
|
221
|
-
width: 100%;
|
|
222
|
-
margin: 0 0 0.5rem;
|
|
223
|
-
font-size: var(--font-size-5);
|
|
224
|
-
line-height: inherit;
|
|
225
|
-
|
|
226
|
-
+ * {
|
|
227
|
-
clear: left;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
::-webkit-datetime-edit-fields-wrapper,
|
|
232
|
-
::-webkit-datetime-edit-text,
|
|
233
|
-
::-webkit-datetime-edit-minute,
|
|
234
|
-
::-webkit-datetime-edit-hour-field,
|
|
235
|
-
::-webkit-datetime-edit-day-field,
|
|
236
|
-
::-webkit-datetime-edit-month-field,
|
|
237
|
-
::-webkit-datetime-edit-year-field {
|
|
238
|
-
padding: 0;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
::-webkit-color-swatch-wrapper {
|
|
242
|
-
padding: 0;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
::file-selector-button {
|
|
246
|
-
font: inherit;
|
|
247
|
-
appearance: button;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
output {
|
|
251
|
-
display: inline-block;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
iframe {
|
|
255
|
-
border: 0;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
summary {
|
|
259
|
-
cursor: pointer;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
[hidden] {
|
|
263
|
-
display: none !important;
|
|
264
|
-
}
|
|
1
|
+
@use "sass:color";
|
|
2
|
+
@use "./helpers" as *;
|
|
3
|
+
@use "./variables" as *;
|
|
4
|
+
@use "./mixins" as *;
|
|
5
|
+
|
|
6
|
+
body {
|
|
7
|
+
font-family: var(--font-family-body);
|
|
8
|
+
font-size: var(--font-size-body);
|
|
9
|
+
font-weight: var(--font-weight-body);
|
|
10
|
+
line-height: var(--line-height-body);
|
|
11
|
+
color: var(--body-color);
|
|
12
|
+
text-align: var(--body-text-align);
|
|
13
|
+
background-color: var(--body-background);
|
|
14
|
+
text-size-adjust: 100%;
|
|
15
|
+
-webkit-tap-highlight-color: transparent;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
hr {
|
|
19
|
+
--hr-border-color: var(--border-color-main);
|
|
20
|
+
|
|
21
|
+
margin: 1rem 0;
|
|
22
|
+
border: 0;
|
|
23
|
+
border-top: 1px solid var(--hr-border-color);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
%heading {
|
|
27
|
+
margin: 0 0 0.5rem;
|
|
28
|
+
font-style: $headings-font-style;
|
|
29
|
+
font-weight: $headings-font-weight;
|
|
30
|
+
line-height: $headings-line-height;
|
|
31
|
+
color: $headings-color;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1,
|
|
35
|
+
.h1 {
|
|
36
|
+
@extend %heading;
|
|
37
|
+
|
|
38
|
+
font-size: var(--font-size-1);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
h2,
|
|
42
|
+
.h2 {
|
|
43
|
+
@extend %heading;
|
|
44
|
+
|
|
45
|
+
font-size: var(--font-size-2);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
h3,
|
|
49
|
+
.h3 {
|
|
50
|
+
@extend %heading;
|
|
51
|
+
|
|
52
|
+
font-size: var(--font-size-3);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
h4,
|
|
56
|
+
.h4 {
|
|
57
|
+
@extend %heading;
|
|
58
|
+
|
|
59
|
+
font-size: var(--font-size-4);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
h5,
|
|
63
|
+
.h5 {
|
|
64
|
+
@extend %heading;
|
|
65
|
+
|
|
66
|
+
font-size: var(--font-size-5);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
h6,
|
|
70
|
+
.h6 {
|
|
71
|
+
@extend %heading;
|
|
72
|
+
|
|
73
|
+
font-size: var(--font-size-6);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
p {
|
|
77
|
+
margin: 0 0 0.5rem;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
abbr[title] {
|
|
81
|
+
cursor: help;
|
|
82
|
+
text-decoration-skip-ink: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
address {
|
|
86
|
+
margin: 0 0 1rem;
|
|
87
|
+
font-style: normal;
|
|
88
|
+
line-height: inherit;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
ol,
|
|
92
|
+
ul {
|
|
93
|
+
padding-left: 2rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
ol,
|
|
97
|
+
ul,
|
|
98
|
+
dl {
|
|
99
|
+
margin: 0 0 1rem;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
ol ol,
|
|
103
|
+
ul ul,
|
|
104
|
+
ol ul,
|
|
105
|
+
ul ol {
|
|
106
|
+
margin: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
dt {
|
|
110
|
+
font-weight: bolder;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
dd {
|
|
114
|
+
margin-bottom: 0.5rem;
|
|
115
|
+
margin-left: 0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
a {
|
|
119
|
+
color: var(--primary);
|
|
120
|
+
text-decoration: $link-decoration;
|
|
121
|
+
|
|
122
|
+
&:hover {
|
|
123
|
+
color: color-mix(in oklab, var(--primary), #000 #{$link-shade-percentage});
|
|
124
|
+
text-decoration: $link-hover-decoration;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
a:not([href], [class]) {
|
|
129
|
+
&,
|
|
130
|
+
&:hover {
|
|
131
|
+
color: inherit;
|
|
132
|
+
text-decoration: none;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
figure {
|
|
137
|
+
margin: 0 0 1rem;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
img,
|
|
141
|
+
svg {
|
|
142
|
+
vertical-align: middle;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
table {
|
|
146
|
+
caption-side: bottom;
|
|
147
|
+
border-collapse: collapse;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
caption {
|
|
151
|
+
padding-top: $table-cell-padding-y;
|
|
152
|
+
padding-bottom: $table-cell-padding-y;
|
|
153
|
+
color: $table-caption-color;
|
|
154
|
+
text-align: left;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
th {
|
|
158
|
+
font-weight: $table-th-font-weight;
|
|
159
|
+
text-align: inherit;
|
|
160
|
+
text-align: -webkit-match-parent;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
thead,
|
|
164
|
+
tbody,
|
|
165
|
+
tfoot,
|
|
166
|
+
tr,
|
|
167
|
+
td,
|
|
168
|
+
th {
|
|
169
|
+
border-color: inherit;
|
|
170
|
+
border-style: solid;
|
|
171
|
+
border-width: 0;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
label {
|
|
175
|
+
display: inline-block;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
button {
|
|
179
|
+
border-radius: 0;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
[role="button"] {
|
|
183
|
+
cursor: pointer;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
select {
|
|
187
|
+
word-wrap: normal;
|
|
188
|
+
|
|
189
|
+
&:disabled {
|
|
190
|
+
opacity: 1;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
[list]:not(
|
|
195
|
+
[type="date"],
|
|
196
|
+
[type="datetime-local"],
|
|
197
|
+
[type="month"],
|
|
198
|
+
[type="week"],
|
|
199
|
+
[type="time"]
|
|
200
|
+
)::-webkit-calendar-picker-indicator {
|
|
201
|
+
display: none !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
button:focus:not(:focus-visible) {
|
|
205
|
+
outline: 0;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
textarea {
|
|
209
|
+
resize: vertical;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
fieldset {
|
|
213
|
+
min-width: 0;
|
|
214
|
+
padding: 0;
|
|
215
|
+
margin: 0;
|
|
216
|
+
border: 0;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
legend {
|
|
220
|
+
float: left;
|
|
221
|
+
width: 100%;
|
|
222
|
+
margin: 0 0 0.5rem;
|
|
223
|
+
font-size: var(--font-size-5);
|
|
224
|
+
line-height: inherit;
|
|
225
|
+
|
|
226
|
+
+ * {
|
|
227
|
+
clear: left;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
::-webkit-datetime-edit-fields-wrapper,
|
|
232
|
+
::-webkit-datetime-edit-text,
|
|
233
|
+
::-webkit-datetime-edit-minute,
|
|
234
|
+
::-webkit-datetime-edit-hour-field,
|
|
235
|
+
::-webkit-datetime-edit-day-field,
|
|
236
|
+
::-webkit-datetime-edit-month-field,
|
|
237
|
+
::-webkit-datetime-edit-year-field {
|
|
238
|
+
padding: 0;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
::-webkit-color-swatch-wrapper {
|
|
242
|
+
padding: 0;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
::file-selector-button {
|
|
246
|
+
font: inherit;
|
|
247
|
+
appearance: button;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
output {
|
|
251
|
+
display: inline-block;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
iframe {
|
|
255
|
+
border: 0;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
summary {
|
|
259
|
+
cursor: pointer;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
[hidden] {
|
|
263
|
+
display: none !important;
|
|
264
|
+
}
|
package/sass/_root.scss
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
@use "./variables" as *;
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
interpolate-size: allow-keywords;
|
|
5
|
-
|
|
6
|
-
--spacer: #{$spacer};
|
|
7
|
-
--body-color: #{$body-color};
|
|
8
|
-
--body-background: #{$body-background};
|
|
9
|
-
--font-family-body: #{$font-family-base};
|
|
10
|
-
--font-size-body: #{$font-size-base};
|
|
11
|
-
--font-size-base: #{$font-size-base};
|
|
12
|
-
--font-weight-body: #{$font-weight-base};
|
|
13
|
-
--line-height-body: #{$line-height-base};
|
|
14
|
-
--body-text-align: #{$body-text-align};
|
|
15
|
-
--headings-color: #{$headings-color};
|
|
16
|
-
--box-shadow-small: #{$box-shadow-small};
|
|
17
|
-
--box-shadow-medium: #{$box-shadow-medium};
|
|
18
|
-
--box-shadow-large: #{$box-shadow-large};
|
|
19
|
-
--border-color-main: #{$border-color-main};
|
|
20
|
-
--border-color-hover-main: #{$border-color-hover-main};
|
|
21
|
-
--border-color-active-main: #{$border-color-active-main};
|
|
22
|
-
--border-color-focus-main: #{$border-color-focus-main};
|
|
23
|
-
--border-color-disabled-main: #{$border-color-disabled-main};
|
|
24
|
-
|
|
25
|
-
@if $font-size-root {
|
|
26
|
-
@include font-size(var(--root-font-size));
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@each $key, $value in $grays {
|
|
30
|
-
--#{$key}: #{$value};
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@each $key, $value in $all-colors {
|
|
34
|
-
--#{$key}: #{$value};
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@each $key, $value in $zindexes {
|
|
38
|
-
--zindex-#{$key}: #{$value};
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@each $key, $value in $font-sizes {
|
|
42
|
-
--font-size-#{$key}: #{$value};
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@each $key, $value in $border-radii {
|
|
46
|
-
--border-radius-#{$key}: #{$value};
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@each $name, $value in $breakpoints {
|
|
50
|
-
--breakpoint-#{$name}: #{$value};
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
54
|
-
scroll-behavior: smooth;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
1
|
+
@use "./variables" as *;
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
interpolate-size: allow-keywords;
|
|
5
|
+
|
|
6
|
+
--spacer: #{$spacer};
|
|
7
|
+
--body-color: #{$body-color};
|
|
8
|
+
--body-background: #{$body-background};
|
|
9
|
+
--font-family-body: #{$font-family-base};
|
|
10
|
+
--font-size-body: #{$font-size-base};
|
|
11
|
+
--font-size-base: #{$font-size-base};
|
|
12
|
+
--font-weight-body: #{$font-weight-base};
|
|
13
|
+
--line-height-body: #{$line-height-base};
|
|
14
|
+
--body-text-align: #{$body-text-align};
|
|
15
|
+
--headings-color: #{$headings-color};
|
|
16
|
+
--box-shadow-small: #{$box-shadow-small};
|
|
17
|
+
--box-shadow-medium: #{$box-shadow-medium};
|
|
18
|
+
--box-shadow-large: #{$box-shadow-large};
|
|
19
|
+
--border-color-main: #{$border-color-main};
|
|
20
|
+
--border-color-hover-main: #{$border-color-hover-main};
|
|
21
|
+
--border-color-active-main: #{$border-color-active-main};
|
|
22
|
+
--border-color-focus-main: #{$border-color-focus-main};
|
|
23
|
+
--border-color-disabled-main: #{$border-color-disabled-main};
|
|
24
|
+
|
|
25
|
+
@if $font-size-root {
|
|
26
|
+
@include font-size(var(--root-font-size));
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@each $key, $value in $grays {
|
|
30
|
+
--#{$key}: #{$value};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@each $key, $value in $all-colors {
|
|
34
|
+
--#{$key}: #{$value};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@each $key, $value in $zindexes {
|
|
38
|
+
--zindex-#{$key}: #{$value};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@each $key, $value in $font-sizes {
|
|
42
|
+
--font-size-#{$key}: #{$value};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@each $key, $value in $border-radii {
|
|
46
|
+
--border-radius-#{$key}: #{$value};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@each $name, $value in $breakpoints {
|
|
50
|
+
--breakpoint-#{$name}: #{$value};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
54
|
+
scroll-behavior: smooth;
|
|
55
|
+
}
|
|
56
|
+
}
|
package/sass/_utilities.scss
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
@forward "./utilities/align";
|
|
2
|
-
@forward "./utilities/border";
|
|
3
|
-
@forward "./utilities/colors";
|
|
4
|
-
@forward "./utilities/display";
|
|
5
|
-
@forward "./utilities/flex";
|
|
6
|
-
@forward "./utilities/float";
|
|
7
|
-
@forward "./utilities/order";
|
|
8
|
-
@forward "./utilities/overflow";
|
|
9
|
-
@forward "./utilities/pointerEvents";
|
|
10
|
-
@forward "./utilities/position";
|
|
11
|
-
@forward "./utilities/shadow";
|
|
12
|
-
@forward "./utilities/size";
|
|
13
|
-
@forward "./utilities/spacing";
|
|
14
|
-
@forward "./utilities/translate";
|
|
15
|
-
@forward "./utilities/typography";
|
|
16
|
-
@forward "./utilities/visibility";
|
|
17
|
-
@forward "./utilities/zIndex";
|
|
1
|
+
@forward "./utilities/align";
|
|
2
|
+
@forward "./utilities/border";
|
|
3
|
+
@forward "./utilities/colors";
|
|
4
|
+
@forward "./utilities/display";
|
|
5
|
+
@forward "./utilities/flex";
|
|
6
|
+
@forward "./utilities/float";
|
|
7
|
+
@forward "./utilities/order";
|
|
8
|
+
@forward "./utilities/overflow";
|
|
9
|
+
@forward "./utilities/pointerEvents";
|
|
10
|
+
@forward "./utilities/position";
|
|
11
|
+
@forward "./utilities/shadow";
|
|
12
|
+
@forward "./utilities/size";
|
|
13
|
+
@forward "./utilities/spacing";
|
|
14
|
+
@forward "./utilities/translate";
|
|
15
|
+
@forward "./utilities/typography";
|
|
16
|
+
@forward "./utilities/visibility";
|
|
17
|
+
@forward "./utilities/zIndex";
|