bootstrap-italia 2.17.3 → 3.0.0-alpha.0
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/README.EN.md +1 -1
- package/README.md +1 -1
- package/dist/css/bootstrap-italia.min.css +1 -9
- package/dist/css/bootstrap-italia.min.css.map +1 -1
- package/dist/fonts/Titillium_Sans_Pro/OFL.txt +92 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Bold.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Bold.woff2 +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-BoldItalic.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-BoldItalic.woff2 +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Italic.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Italic.woff2 +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Light.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Light.woff2 +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-LightItalic.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-LightItalic.woff2 +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Regular.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Regular.woff2 +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Semibold.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-Semibold.woff2 +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-SemiboldItalic.woff +0 -0
- package/dist/fonts/Titillium_Sans_Pro/TitilliumSansPro-SemiboldItalic.woff2 +0 -0
- package/dist/js/bootstrap-italia.bundle.min.js +10 -10
- package/dist/js/bootstrap-italia.min.js +4 -4
- package/dist/plugins/dropdown.js +1 -1
- package/dist/plugins/dropdown.js.map +1 -1
- package/dist/plugins/fonts-loader.js +340 -111
- package/dist/plugins/fonts-loader.js.map +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +3 -3
- package/src/fonts/Titillium_Sans_Pro/OFL.txt +92 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Bold.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Bold.woff2 +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-BoldItalic.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-BoldItalic.woff2 +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Italic.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Italic.woff2 +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Light.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Light.woff2 +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-LightItalic.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-LightItalic.woff2 +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Regular.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Regular.woff2 +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Semibold.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-Semibold.woff2 +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-SemiboldItalic.woff +0 -0
- package/src/fonts/Titillium_Sans_Pro/TitilliumSansPro-SemiboldItalic.woff2 +0 -0
- package/src/js/plugins/dropdown.js +1 -1
- package/src/js/plugins/fonts-loader.js +340 -111
- package/src/js/version.js +1 -1
- package/src/scss/base/_maps.scss +11 -0
- package/src/scss/base/_mixins.scss +2 -1
- package/src/scss/base/_reboot.scss +15 -147
- package/src/scss/base/_root.scss +272 -45
- package/src/scss/base/_utilities.scss +3 -3
- package/src/scss/base/_variables.scss +44 -55
- package/src/scss/base/_version.scss +1 -1
- package/src/scss/base/mixins/_banner.scss +7 -9
- package/src/scss/base/mixins/_focus.scss +14 -0
- package/src/scss/bootstrap-italia.scss +29 -32
- package/src/scss/components/_accept-overlay.scss +74 -50
- package/src/scss/components/_accordion.scss +120 -97
- package/src/scss/components/_affix.scss +14 -0
- package/src/scss/components/_alert.scss +60 -45
- package/src/scss/components/_anchor.scss +14 -0
- package/src/scss/components/_avatar.scss +236 -369
- package/src/scss/components/_back-to-top.scss +70 -54
- package/src/scss/components/_badge.scss +69 -36
- package/src/scss/components/_bottomnav.scss +14 -0
- package/src/scss/components/_breadcrumb.scss +78 -71
- package/src/scss/components/_button-group.scss +21 -7
- package/src/scss/components/_buttons.scss +289 -318
- package/src/scss/components/_calendar.scss +22 -8
- package/src/scss/components/_callout.scss +133 -125
- package/src/scss/components/_card-old.scss +14 -0
- package/src/scss/components/_card.scss +476 -518
- package/src/scss/components/_carousel.scss +14 -0
- package/src/scss/components/_chips.scss +150 -209
- package/src/scss/components/_code.scss +31 -6
- package/src/scss/components/_cookiebar.scss +14 -0
- package/src/scss/components/_dimmer.scss +14 -0
- package/src/scss/components/_dropdown.scss +144 -179
- package/src/scss/components/_figcaption.scss +14 -0
- package/src/scss/components/_font.scss +14 -0
- package/src/scss/components/_footer.scss +99 -75
- package/src/scss/components/_forward.scss +14 -0
- package/src/scss/components/_grid.scss +31 -22
- package/src/scss/components/_gridlist.scss +41 -19
- package/src/scss/components/_header.scss +150 -142
- package/src/scss/components/_headercenter.scss +129 -193
- package/src/scss/components/_headercentertheme.scss +14 -0
- package/src/scss/components/_headernavbar.scss +22 -14
- package/src/scss/components/_headernavbartheme.scss +16 -2
- package/src/scss/components/_headerslim.scss +133 -137
- package/src/scss/components/_headerslimtheme.scss +14 -0
- package/src/scss/components/_hero.scss +93 -202
- package/src/scss/components/_images.scss +14 -0
- package/src/scss/components/_imgresponsive.scss +14 -0
- package/src/scss/components/_linklist.scss +241 -262
- package/src/scss/components/_list-group.scss +26 -14
- package/src/scss/components/_list.scss +66 -123
- package/src/scss/components/_map.scss +14 -0
- package/src/scss/components/_masonry-loader.scss +14 -0
- package/src/scss/components/_megamenu.scss +191 -256
- package/src/scss/components/_modal.scss +115 -204
- package/src/scss/components/_nav.scss +43 -41
- package/src/scss/components/_navbar.scss +408 -91
- package/src/scss/components/_navigation.scss +56 -459
- package/src/scss/components/_navigationtheme.scss +109 -171
- package/src/scss/components/_navscroll.scss +210 -208
- package/src/scss/components/_navscrolltheme.scss +14 -0
- package/src/scss/components/_notifications.scss +14 -0
- package/src/scss/components/_offcanvas.scss +14 -0
- package/src/scss/components/_overlay-panel.scss +14 -0
- package/src/scss/components/_page-scroll.scss +14 -0
- package/src/scss/components/_pagination.scss +135 -80
- package/src/scss/components/_placeholders.scss +14 -0
- package/src/scss/components/_point-list.scss +15 -0
- package/src/scss/components/_popover.scss +29 -19
- package/src/scss/components/_print.scss +14 -0
- package/src/scss/components/_progress-bars.scss +14 -0
- package/src/scss/components/_progress-donuts.scss +14 -0
- package/src/scss/components/_progress-spinners.scss +14 -0
- package/src/scss/components/_rating-list.scss +14 -0
- package/src/scss/components/_rating.scss +76 -45
- package/src/scss/components/_sections.scss +51 -30
- package/src/scss/components/_sidebar.scss +119 -121
- package/src/scss/components/_sidebarthemes.scss +14 -0
- package/src/scss/components/_skiplinks.scss +14 -0
- package/src/scss/components/_steppers.scss +14 -0
- package/src/scss/components/_sticky.scss +14 -0
- package/src/scss/components/_tab.scss +14 -0
- package/src/scss/components/_tables.scss +14 -0
- package/src/scss/components/_thumbnav.scss +14 -0
- package/src/scss/components/_timeline.scss +14 -0
- package/src/scss/components/_toasts.scss +14 -0
- package/src/scss/components/_toolbar.scss +14 -0
- package/src/scss/components/_tooltip.scss +23 -9
- package/src/scss/components/_type.scss +176 -176
- package/src/scss/components/_videoplayer.scss +25 -5
- package/src/scss/forms/_accessible-autocomplete.scss +25 -27
- package/src/scss/forms/_autocomplete.scss +99 -144
- package/src/scss/forms/_form-control.scss +47 -116
- package/src/scss/forms/_form-input-file.scss +7 -6
- package/src/scss/forms/_form-input-number.scss +38 -22
- package/src/scss/forms/_form-input-upload.scss +149 -147
- package/src/scss/forms/_form-password.scss +14 -11
- package/src/scss/forms/_form-select.scss +3 -92
- package/src/scss/forms/_forms.scss +304 -247
- package/src/scss/forms/_input-group.scss +23 -36
- package/src/scss/forms/_just-validate.scss +11 -12
- package/src/scss/utilities/focus.scss +3 -12
- package/src/scss/utilities/icons.scss +59 -13
- package/src/scss/components/_pager.scss +0 -166
- package/src/scss/forms/_form-text.scss +0 -11
|
@@ -37,22 +37,14 @@
|
|
|
37
37
|
// Body
|
|
38
38
|
//
|
|
39
39
|
// 1. Remove the margin in all browsers.
|
|
40
|
-
// 2. As a best practice, apply a default `background-color`.
|
|
41
40
|
// 3. Prevent adjustments of font size after orientation changes in iOS.
|
|
42
41
|
// 4. Change the default tap highlight to be completely transparent in iOS.
|
|
43
42
|
|
|
44
43
|
// scss-docs-start reboot-body-rules
|
|
45
44
|
body {
|
|
46
45
|
margin: 0; // 1
|
|
47
|
-
font-family: var(--#{$prefix}body-font-family);
|
|
48
|
-
@include font-size(var(--#{$prefix}body-font-size));
|
|
49
|
-
font-weight: var(--#{$prefix}body-font-weight);
|
|
50
|
-
line-height: var(--#{$prefix}body-line-height);
|
|
51
|
-
color: var(--#{$prefix}body-color);
|
|
52
|
-
text-align: var(--#{$prefix}body-text-align);
|
|
53
|
-
background-color: var(--#{$prefix}body-bg); // 2
|
|
54
46
|
-webkit-text-size-adjust: 100%; // 3
|
|
55
|
-
-webkit-tap-highlight-color:
|
|
47
|
+
-webkit-tap-highlight-color: hsla(0, 0%, 0%, 0); // 4
|
|
56
48
|
}
|
|
57
49
|
// scss-docs-end reboot-body-rules
|
|
58
50
|
|
|
@@ -68,52 +60,6 @@ hr {
|
|
|
68
60
|
opacity: $hr-opacity;
|
|
69
61
|
}
|
|
70
62
|
|
|
71
|
-
// Typography
|
|
72
|
-
//
|
|
73
|
-
// 1. Remove top margins from headings
|
|
74
|
-
// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
|
|
75
|
-
// margin for easier control within type scales as it avoids margin collapsing.
|
|
76
|
-
|
|
77
|
-
%heading {
|
|
78
|
-
margin-top: 0; // 1
|
|
79
|
-
margin-bottom: $headings-margin-bottom;
|
|
80
|
-
font-family: $headings-font-family;
|
|
81
|
-
font-style: $headings-font-style;
|
|
82
|
-
font-weight: $headings-font-weight;
|
|
83
|
-
line-height: $headings-line-height;
|
|
84
|
-
color: $headings-color;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
h1 {
|
|
88
|
-
@extend %heading;
|
|
89
|
-
@include font-size($h1-font-size);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
h2 {
|
|
93
|
-
@extend %heading;
|
|
94
|
-
@include font-size($h2-font-size);
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
h3 {
|
|
98
|
-
@extend %heading;
|
|
99
|
-
@include font-size($h3-font-size);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
h4 {
|
|
103
|
-
@extend %heading;
|
|
104
|
-
@include font-size($h4-font-size);
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
h5 {
|
|
108
|
-
@extend %heading;
|
|
109
|
-
@include font-size($h5-font-size);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
h6 {
|
|
113
|
-
@extend %heading;
|
|
114
|
-
@include font-size($h6-font-size);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
63
|
// Reset margins on paragraphs
|
|
118
64
|
//
|
|
119
65
|
// Similarly, the top margin on `<p>`s get reset. However, we also reset the
|
|
@@ -121,7 +67,7 @@ h6 {
|
|
|
121
67
|
|
|
122
68
|
p {
|
|
123
69
|
margin-top: 0;
|
|
124
|
-
margin-bottom: $paragraph-
|
|
70
|
+
margin-bottom: var(--#{$prefix}paragraph-spacing);
|
|
125
71
|
}
|
|
126
72
|
|
|
127
73
|
// Abbreviations
|
|
@@ -139,7 +85,7 @@ abbr[title] {
|
|
|
139
85
|
// Address
|
|
140
86
|
|
|
141
87
|
address {
|
|
142
|
-
margin-bottom:
|
|
88
|
+
margin-bottom: var(--#{$prefix}spacing-s);
|
|
143
89
|
font-style: normal;
|
|
144
90
|
line-height: inherit;
|
|
145
91
|
}
|
|
@@ -148,14 +94,14 @@ address {
|
|
|
148
94
|
|
|
149
95
|
ol,
|
|
150
96
|
ul {
|
|
151
|
-
padding-left:
|
|
97
|
+
padding-left: var(--#{$prefix}spacing-l);
|
|
152
98
|
}
|
|
153
99
|
|
|
154
100
|
ol,
|
|
155
101
|
ul,
|
|
156
102
|
dl {
|
|
157
103
|
margin-top: 0;
|
|
158
|
-
margin-bottom:
|
|
104
|
+
margin-bottom: var(--#{$prefix}spacing-s);
|
|
159
105
|
}
|
|
160
106
|
|
|
161
107
|
ol ol,
|
|
@@ -166,44 +112,20 @@ ul ol {
|
|
|
166
112
|
}
|
|
167
113
|
|
|
168
114
|
dt {
|
|
169
|
-
font-weight: $
|
|
115
|
+
font-weight: var(--#{$prefix}font-weight-strong);
|
|
170
116
|
}
|
|
171
117
|
|
|
172
118
|
// 1. Undo browser default
|
|
173
119
|
|
|
174
120
|
dd {
|
|
175
|
-
margin-bottom:
|
|
121
|
+
margin-bottom: var(--#{$prefix}spacing-xxs);
|
|
176
122
|
margin-left: 0; // 1
|
|
177
123
|
}
|
|
178
124
|
|
|
179
125
|
// Blockquote
|
|
180
126
|
|
|
181
127
|
blockquote {
|
|
182
|
-
margin: 0 0
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
// Strong
|
|
186
|
-
//
|
|
187
|
-
// Add the correct font weight in Chrome, Edge, and Safari
|
|
188
|
-
|
|
189
|
-
b,
|
|
190
|
-
strong {
|
|
191
|
-
font-weight: $font-weight-bolder;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
// Small
|
|
195
|
-
//
|
|
196
|
-
// Add the correct font size in all browsers
|
|
197
|
-
|
|
198
|
-
small {
|
|
199
|
-
@include font-size($small-font-size);
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
// Mark
|
|
203
|
-
|
|
204
|
-
mark {
|
|
205
|
-
padding: $mark-padding;
|
|
206
|
-
background-color: var(--#{$prefix}highlight-bg);
|
|
128
|
+
margin: 0 0 var(--#{$prefix}spacing-s);
|
|
207
129
|
}
|
|
208
130
|
|
|
209
131
|
// Sub and Sup
|
|
@@ -214,7 +136,7 @@ mark {
|
|
|
214
136
|
sub,
|
|
215
137
|
sup {
|
|
216
138
|
position: relative;
|
|
217
|
-
|
|
139
|
+
font-size: var(--#{$prefix}font-size-1);
|
|
218
140
|
line-height: 0;
|
|
219
141
|
vertical-align: baseline;
|
|
220
142
|
}
|
|
@@ -229,25 +151,13 @@ sup {
|
|
|
229
151
|
// Links
|
|
230
152
|
|
|
231
153
|
a {
|
|
232
|
-
color: var(--#{$prefix}link
|
|
233
|
-
text-decoration:
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
color: var(--#{$prefix}link-hover-color);
|
|
237
|
-
text-decoration: $link-hover-decoration;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
154
|
+
color: var(--#{$prefix}color-link);
|
|
155
|
+
text-decoration: underline;
|
|
156
|
+
text-decoration-skip-ink: auto;
|
|
157
|
+
text-underline-offset: 2px;
|
|
240
158
|
|
|
241
|
-
// And undo these styles for placeholder links/named anchors (without href).
|
|
242
|
-
// It would be more straightforward to just use a[href] in previous block, but that
|
|
243
|
-
// causes specificity issues in many other styles that are too complex to fix.
|
|
244
|
-
// See https://github.com/twbs/bootstrap/issues/19402
|
|
245
|
-
|
|
246
|
-
a:not([href]):not([class]) {
|
|
247
|
-
&,
|
|
248
159
|
&:hover {
|
|
249
|
-
color:
|
|
250
|
-
text-decoration: none;
|
|
160
|
+
color: var(--#{$prefix}color-link-hover);
|
|
251
161
|
}
|
|
252
162
|
}
|
|
253
163
|
|
|
@@ -257,7 +167,6 @@ pre,
|
|
|
257
167
|
code,
|
|
258
168
|
kbd,
|
|
259
169
|
samp {
|
|
260
|
-
font-family: $font-family-code;
|
|
261
170
|
@include font-size(1em); // Correct the odd `em` font sizing in all browsers.
|
|
262
171
|
}
|
|
263
172
|
|
|
@@ -268,44 +177,22 @@ samp {
|
|
|
268
177
|
pre {
|
|
269
178
|
display: block;
|
|
270
179
|
margin-top: 0; // 1
|
|
271
|
-
margin-bottom:
|
|
180
|
+
margin-bottom: var(--#{$prefix}paragraph-spacing); // 2
|
|
272
181
|
overflow: auto; // 3
|
|
273
|
-
@include font-size($code-font-size);
|
|
274
|
-
color: $pre-color;
|
|
275
182
|
|
|
276
183
|
// Account for some code outputs that place code tags in pre tags
|
|
277
184
|
code {
|
|
278
|
-
@include font-size(inherit);
|
|
279
|
-
color: inherit;
|
|
280
185
|
word-break: normal;
|
|
281
186
|
}
|
|
282
187
|
}
|
|
283
188
|
|
|
284
189
|
code {
|
|
285
|
-
@include font-size($code-font-size);
|
|
286
|
-
color: var(--#{$prefix}code-color);
|
|
287
|
-
word-wrap: break-word;
|
|
288
|
-
|
|
289
190
|
// Streamline the style when inside anchors to avoid broken underline and more
|
|
290
191
|
a > & {
|
|
291
192
|
color: inherit;
|
|
292
193
|
}
|
|
293
194
|
}
|
|
294
195
|
|
|
295
|
-
kbd {
|
|
296
|
-
padding: $kbd-padding-y $kbd-padding-x;
|
|
297
|
-
@include font-size($kbd-font-size);
|
|
298
|
-
color: $kbd-color;
|
|
299
|
-
background-color: $kbd-bg;
|
|
300
|
-
@include border-radius($border-radius-sm);
|
|
301
|
-
|
|
302
|
-
kbd {
|
|
303
|
-
padding: 0;
|
|
304
|
-
@include font-size(1em);
|
|
305
|
-
font-weight: $nested-kbd-font-weight;
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
|
|
309
196
|
// Figures
|
|
310
197
|
//
|
|
311
198
|
// Apply a consistent margin strategy (matches our type styles).
|
|
@@ -471,25 +358,6 @@ fieldset {
|
|
|
471
358
|
border: 0; // 2
|
|
472
359
|
}
|
|
473
360
|
|
|
474
|
-
// 1. By using `float: left`, the legend will behave like a block element.
|
|
475
|
-
// This way the border of a fieldset wraps around the legend if present.
|
|
476
|
-
// 2. Fix wrapping bug.
|
|
477
|
-
// See https://github.com/twbs/bootstrap/issues/29712
|
|
478
|
-
|
|
479
|
-
legend {
|
|
480
|
-
float: left; // 1
|
|
481
|
-
width: 100%;
|
|
482
|
-
padding: 0;
|
|
483
|
-
margin-bottom: $legend-margin-bottom;
|
|
484
|
-
@include font-size($legend-font-size);
|
|
485
|
-
font-weight: $legend-font-weight;
|
|
486
|
-
line-height: inherit;
|
|
487
|
-
|
|
488
|
-
+ * {
|
|
489
|
-
clear: left; // 2
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
|
|
493
361
|
// Fix height of inputs with a type of datetime-local, date, month, week, or time
|
|
494
362
|
// See https://github.com/twbs/bootstrap/issues/18842
|
|
495
363
|
|
package/src/scss/base/_root.scss
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
//
|
|
3
|
-
|
|
4
|
-
//
|
|
5
|
-
//
|
|
6
|
-
// Generate palettes for full colors, grays, and theme colors.
|
|
7
|
-
|
|
8
|
-
@each $color, $value in $colors {
|
|
9
|
-
--#{$prefix}#{$color}: #{$value};
|
|
10
|
-
}
|
|
2
|
+
// @each $color, $value in $colors {
|
|
3
|
+
// --#{$prefix}#{$color}: #{$value};
|
|
4
|
+
// }
|
|
11
5
|
|
|
12
6
|
@each $color, $value in $grays {
|
|
13
7
|
--#{$prefix}gray-#{$color}: #{$value};
|
|
@@ -21,53 +15,286 @@
|
|
|
21
15
|
--#{$prefix}#{$color}-rgb: #{$value};
|
|
22
16
|
}
|
|
23
17
|
|
|
24
|
-
--#{$prefix}white-rgb: #{to-rgb($white)};
|
|
25
|
-
--#{$prefix}black-rgb: #{to-rgb($black)};
|
|
26
|
-
--#{$prefix}body-color-rgb: #{to-rgb($body-color)};
|
|
27
|
-
--#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};
|
|
18
|
+
// --#{$prefix}white-rgb: #{to-rgb($white)};
|
|
19
|
+
// --#{$prefix}black-rgb: #{to-rgb($black)};
|
|
20
|
+
// --#{$prefix}body-color-rgb: #{to-rgb($body-color)};
|
|
21
|
+
// --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};
|
|
28
22
|
|
|
29
23
|
// Fonts
|
|
30
24
|
|
|
31
25
|
// Note: Use `inspect` for lists so that quoted items keep the quotes.
|
|
32
26
|
// See https://github.com/sass/sass/issues/2383#issuecomment-336349172
|
|
33
|
-
--#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};
|
|
34
|
-
--#{$prefix}font-monospace: #{inspect($font-family-monospace)};
|
|
35
|
-
--#{$prefix}gradient: #{$gradient};
|
|
27
|
+
// --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};
|
|
28
|
+
// --#{$prefix}font-monospace: #{inspect($font-family-monospace)};
|
|
29
|
+
// --#{$prefix}gradient: #{$gradient};
|
|
36
30
|
|
|
37
31
|
// Root and body
|
|
38
|
-
//
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
--#{$prefix}body-font-
|
|
43
|
-
|
|
44
|
-
--#{$prefix}body-
|
|
45
|
-
--#{$prefix}body-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
32
|
+
// @if $font-size-root != null {
|
|
33
|
+
// --#{$prefix}root-font-size: #{$font-size-root};
|
|
34
|
+
// }
|
|
35
|
+
// --#{$prefix}body-font-family: #{$font-family-base};
|
|
36
|
+
// @include rfs($font-size-base, --#{$prefix}body-font-size);
|
|
37
|
+
// --#{$prefix}body-font-weight: #{$font-weight-base};
|
|
38
|
+
// --#{$prefix}body-line-height: #{$line-height-base};
|
|
39
|
+
// --#{$prefix}body-color: #{$body-color};
|
|
40
|
+
// @if $body-text-align != null {
|
|
41
|
+
// --#{$prefix}body-text-align: #{$body-text-align};
|
|
42
|
+
// }
|
|
43
|
+
// --#{$prefix}body-bg: #{$body-bg};
|
|
44
|
+
// --#{$prefix}border-width: #{$border-width};
|
|
45
|
+
// --#{$prefix}border-style: #{$border-style};
|
|
46
|
+
// --#{$prefix}border-color: #{$border-color};
|
|
47
|
+
// --#{$prefix}border-color-translucent: #{$border-color-translucent};
|
|
48
|
+
// --#{$prefix}border-radius: #{$border-radius};
|
|
49
|
+
// --#{$prefix}border-radius-sm: #{$border-radius-sm};
|
|
50
|
+
// --#{$prefix}border-radius-lg: #{$border-radius-lg};
|
|
51
|
+
// --#{$prefix}border-radius-xl: #{$border-radius-xl};
|
|
52
|
+
// --#{$prefix}border-radius-2xl: #{$border-radius-2xl};
|
|
53
|
+
// --#{$prefix}border-radius-pill: #{$border-radius-pill};
|
|
54
|
+
|
|
55
|
+
// ----------------------------------------------------------- //
|
|
56
|
+
|
|
57
|
+
// Theme colors
|
|
58
|
+
--#{$prefix}theme-primary: var(--it-theme-italia-base); // Theme base color
|
|
59
|
+
--#{$prefix}theme-primary-light: var(--it-theme-italia-light);
|
|
60
|
+
--#{$prefix}theme-primary-lighter: var(--it-theme-italia-lighter);
|
|
61
|
+
--#{$prefix}theme-primary-subtle: var(--it-theme-italia-subtle);
|
|
62
|
+
--#{$prefix}theme-primary-muted: var(--it-theme-italia-muted);
|
|
63
|
+
--#{$prefix}theme-primary-deep: var(--it-theme-italia-deep);
|
|
64
|
+
|
|
65
|
+
// Spacing
|
|
66
|
+
--#{$prefix}spacing-3xl: var(--it-spacing-3xl); // equal to 6rem (96px)
|
|
67
|
+
--#{$prefix}spacing-xxl: var(--it-spacing-xxl); // equal to 3rem (48px)
|
|
68
|
+
--#{$prefix}spacing-xl: var(--it-spacing-xl); // equal to 2.5rem (40px)
|
|
69
|
+
--#{$prefix}spacing-l: var(--it-spacing-l); // equal to 2rem (32px)
|
|
70
|
+
--#{$prefix}spacing-m: var(--it-spacing-m); // equal to 1.5rem (24px)
|
|
71
|
+
--#{$prefix}spacing-s: var(--it-spacing-s); // equal to 1rem (16px)
|
|
72
|
+
--#{$prefix}spacing-xs: var(--it-spacing-xs); // equal to 0.75rem (12px)
|
|
73
|
+
--#{$prefix}spacing-xxs: var(--it-spacing-xxs); // equal to 0.5rem (8px)
|
|
74
|
+
--#{$prefix}spacing-3xs: var(--it-spacing-3xs); // equal to 0.25rem (4px)
|
|
75
|
+
--#{$prefix}heading-spacing: var(--it-spacing-s);
|
|
76
|
+
--#{$prefix}paragraph-spacing: var(--it-spacing-m);
|
|
77
|
+
|
|
78
|
+
// Typography
|
|
79
|
+
--#{$prefix}font-mono: var(--it-font-mono);
|
|
80
|
+
--#{$prefix}font-serif: var(--it-font-serif);
|
|
81
|
+
--#{$prefix}font-sans: var(--it-font-sans);
|
|
82
|
+
--#{$prefix}font-weight-strong: var(--it-font-weight-bold);
|
|
83
|
+
--#{$prefix}font-weight-solid: var(--it-font-weight-semibold);
|
|
84
|
+
--#{$prefix}font-weight-base: var(--it-font-weight-regular);
|
|
85
|
+
--#{$prefix}font-weight-thin: var(--it-font-weight-light);
|
|
86
|
+
--#{$prefix}font-size-11: var(--it-font-size-11);
|
|
87
|
+
--#{$prefix}font-size-10: var(--it-font-size-10);
|
|
88
|
+
--#{$prefix}font-size-9: var(--it-font-size-9);
|
|
89
|
+
--#{$prefix}font-size-8: var(--it-font-size-8);
|
|
90
|
+
--#{$prefix}font-size-7: var(--it-font-size-7);
|
|
91
|
+
--#{$prefix}font-size-6: var(--it-font-size-6);
|
|
92
|
+
--#{$prefix}font-size-5: var(--it-font-size-5);
|
|
93
|
+
--#{$prefix}font-size-4: var(--it-font-size-4);
|
|
94
|
+
--#{$prefix}font-size-3: var(--it-font-size-3);
|
|
95
|
+
--#{$prefix}font-size-2: var(--it-font-size-2);
|
|
96
|
+
--#{$prefix}font-size-1: var(--it-font-size-1);
|
|
97
|
+
--#{$prefix}font-line-height-5: var(--it-font-line-height-5);
|
|
98
|
+
--#{$prefix}font-line-height-4: var(--it-font-line-height-4);
|
|
99
|
+
--#{$prefix}font-line-height-3: var(--it-font-line-height-3);
|
|
100
|
+
--#{$prefix}font-line-height-2: var(--it-font-line-height-2);
|
|
101
|
+
--#{$prefix}font-line-height-1: var(--it-font-line-height-1);
|
|
102
|
+
--#{$prefix}font-tracking-normal: var(--it-font-tracking-normal);
|
|
103
|
+
--#{$prefix}font-tracking-tight: var(--it-font-tracking-tight);
|
|
104
|
+
--#{$prefix}font-tracking-narrow: var(--it-font-tracking-narrow);
|
|
105
|
+
--#{$prefix}font-tracking-short: var(--it-font-tracking-short);
|
|
106
|
+
--#{$prefix}display-font-size: var(--it-font-size-11);
|
|
107
|
+
--#{$prefix}heading-6-font-size: var(--it-heading-6-font-size);
|
|
108
|
+
--#{$prefix}heading-5-font-size: var(--it-heading-5-font-size);
|
|
109
|
+
--#{$prefix}heading-4-font-size: var(--it-heading-4-font-size);
|
|
110
|
+
--#{$prefix}heading-3-font-size: var(--it-heading-3-font-size);
|
|
111
|
+
--#{$prefix}heading-2-font-size: var(--it-heading-2-font-size);
|
|
112
|
+
--#{$prefix}heading-1-font-size: var(--it-heading-1-font-size);
|
|
113
|
+
--#{$prefix}heading-font-weight: var(--it-heading-font-weight);
|
|
114
|
+
--#{$prefix}heading-font-weight-weak: var(--it-heading-font-weight-weak);
|
|
115
|
+
--#{$prefix}heading-line-height: var(--it-heading-line-height);
|
|
116
|
+
--#{$prefix}body-font-size: var(--it-body-font-size);
|
|
117
|
+
--#{$prefix}body-line-height: var(--it-body-line-height);
|
|
118
|
+
--#{$prefix}body-font-weight: var(--it-body-font-weight);
|
|
119
|
+
--#{$prefix}lead-font-size: var(--it-lead-font-size);
|
|
120
|
+
--#{$prefix}lead-line-height: var(--it-lead-line-height);
|
|
121
|
+
--#{$prefix}lead-font-weight: var(--it-lead-font-weight);
|
|
122
|
+
--#{$prefix}caption-font-size: var(--it-caption-font-size);
|
|
123
|
+
--#{$prefix}caption-line-height: var(--it-caption-line-height);
|
|
124
|
+
--#{$prefix}caption-font-weight-regular: var(--it-caption-font-weight-regular);
|
|
125
|
+
--#{$prefix}caption-font-weight-semibold: var(--it-caption-font-weight-semibold);
|
|
126
|
+
--#{$prefix}label-font-size: var(--it-label-font-size);
|
|
127
|
+
--#{$prefix}label-font-size-s: var(--it-label-font-size-s);
|
|
128
|
+
--#{$prefix}label-font-size-xs: var(--it-label-font-size-xs);
|
|
129
|
+
--#{$prefix}label-font-size-l: var(--it-label-font-size-l);
|
|
130
|
+
--#{$prefix}label-leading: var(--it-label-leading);
|
|
131
|
+
|
|
132
|
+
// Typography responsive properties
|
|
133
|
+
@include media-breakpoint-up(sm) {
|
|
134
|
+
--#{$prefix}heading-1-font-size: var(--it-heading-1-font-size-l);
|
|
135
|
+
--#{$prefix}heading-2-font-size: var(--it-heading-2-font-size-l);
|
|
136
|
+
--#{$prefix}heading-3-font-size: var(--it-heading-3-font-size-l);
|
|
137
|
+
--#{$prefix}heading-4-font-size: var(--it-heading-4-font-size-l);
|
|
138
|
+
--#{$prefix}heading-5-font-size: var(--it-heading-5-font-size-l);
|
|
139
|
+
--#{$prefix}heading-6-font-size: var(--it-heading-6-font-size-l);
|
|
140
|
+
--#{$prefix}lead-font-size: var(--it-lead-font-size-l);
|
|
141
|
+
--#{$prefix}body-font-size: var(--it-body-font-size-l);
|
|
49
142
|
}
|
|
50
|
-
--#{$prefix}body-bg: #{$body-bg};
|
|
51
|
-
// scss-docs-end root-body-variables
|
|
52
143
|
|
|
53
|
-
//
|
|
54
|
-
--#{$prefix}
|
|
55
|
-
--#{$prefix}
|
|
56
|
-
--#{$prefix}
|
|
57
|
-
--#{$prefix}
|
|
144
|
+
// Icons
|
|
145
|
+
--#{$prefix}icon-size-xl: var(--it-icon-size-xl);
|
|
146
|
+
--#{$prefix}icon-size-l: var(--it-icon-size-l);
|
|
147
|
+
--#{$prefix}icon-size-m: var(--it-icon-size-m);
|
|
148
|
+
--#{$prefix}icon-size-s: var(--it-icon-size-s);
|
|
149
|
+
--#{$prefix}icon-size-xs: var(--it-icon-size-xs);
|
|
150
|
+
|
|
151
|
+
// Border
|
|
152
|
+
--#{$prefix}border-broad: var(--it-border-broad);
|
|
153
|
+
--#{$prefix}border-thick: var(--it-border-thick);
|
|
154
|
+
--#{$prefix}border-double: var(--it-border-double);
|
|
155
|
+
--#{$prefix}border-base: var(--it-border-base);
|
|
156
|
+
--#{$prefix}radius-rounded: var(--it-radius-rounded);
|
|
157
|
+
--#{$prefix}radius-circle: var(--it-radius-circle);
|
|
158
|
+
--#{$prefix}radius-smooth: var(--it-radius-smooth);
|
|
159
|
+
|
|
160
|
+
// Sizing
|
|
161
|
+
--#{$prefix}sizing-full: var(--it-sizing-full);
|
|
162
|
+
--#{$prefix}sizing-two-thirds: var(--it-sizing-two-thirds);
|
|
163
|
+
--#{$prefix}sizing-half: var(--it-sizing-half);
|
|
164
|
+
--#{$prefix}sizing-quarter: var(--it-sizing-quarter);
|
|
165
|
+
|
|
166
|
+
// Shadow
|
|
167
|
+
--#{$prefix}elevation-high: var(--it-elevation-high);
|
|
168
|
+
--#{$prefix}elevation-medium: var(--it-elevation-medium);
|
|
169
|
+
--#{$prefix}elevation-low: var(--it-elevation-low-);
|
|
170
|
+
|
|
171
|
+
// Text colors
|
|
172
|
+
--#{$prefix}color-text-accent: var(--it-color-text-accent);
|
|
173
|
+
--#{$prefix}color-text-inverse: var(--it-color-text-inverse);
|
|
174
|
+
--#{$prefix}color-text-danger-active: var(--it-color-text-danger-active);
|
|
175
|
+
--#{$prefix}color-text-danger-hover: var(--it-color-text-danger-hover);
|
|
176
|
+
--#{$prefix}color-text-danger: var(--it-color-text-danger);
|
|
177
|
+
--#{$prefix}color-text-warning-active: var(--it-color-text-warning-active);
|
|
178
|
+
--#{$prefix}color-text-warning-hover: var(--it-color-text-warning-hover);
|
|
179
|
+
--#{$prefix}color-text-warning: var(--it-color-text-warning);
|
|
180
|
+
--#{$prefix}color-text-success-active: var(--it-color-text-success-active);
|
|
181
|
+
--#{$prefix}color-text-success-hover: var(--it-color-text-success-hover);
|
|
182
|
+
--#{$prefix}color-text-success: var(--it-color-text-success);
|
|
183
|
+
--#{$prefix}color-text-disabled: var(--it-color-text-disabled);
|
|
184
|
+
--#{$prefix}color-text-muted: var(--it-color-text-muted);
|
|
185
|
+
--#{$prefix}color-text-secondary: var(--it-color-text-secondary);
|
|
186
|
+
--#{$prefix}color-text-primary: var(--it-color-text-primary);
|
|
187
|
+
--#{$prefix}color-text-base: var(--it-color-text-base);
|
|
188
|
+
--#{$prefix}color-code: var(--it-color-text-secondary);
|
|
189
|
+
--#{$prefix}color-link: var(--it-color-link-base);
|
|
190
|
+
--#{$prefix}color-link-hover: var(--it-color-link-hover);
|
|
191
|
+
--#{$prefix}color-link-active: var(--it-color-link-active);
|
|
192
|
+
--#{$prefix}color-link-secondary: var(--it-color-link-secondary);
|
|
193
|
+
--#{$prefix}color-link-secondary-hover: var(--it-color-link-secondary-hover);
|
|
194
|
+
--#{$prefix}color-link-secondary-active: var(--it-color-link-secondary-active);
|
|
195
|
+
--#{$prefix}color-link-inverse: var(--it-color-link-inverse);
|
|
196
|
+
--#{$prefix}color-link-disabled: var(--it-color-link-disabled);
|
|
197
|
+
--#{$prefix}color-link-accent: var(--it-color-link-accent);
|
|
198
|
+
--#{$prefix}color-link-accent-hover: var(--it-color-link-accent-hover);
|
|
199
|
+
|
|
200
|
+
// Border colors
|
|
201
|
+
--#{$prefix}color-border-danger-active: var(--it-color-border-danger-active);
|
|
202
|
+
--#{$prefix}color-border-danger-hover: var(--it-color-border-danger-hover);
|
|
203
|
+
--#{$prefix}color-border-danger: var(--it-color-border-danger);
|
|
204
|
+
--#{$prefix}color-border-warning-active: var(--it-color-border-warning-active);
|
|
205
|
+
--#{$prefix}color-border-warning-hover: var(--it-color-border-warning-hover);
|
|
206
|
+
--#{$prefix}color-border-warning: var(--it-color-border-warning);
|
|
207
|
+
--#{$prefix}color-border-success-active: var(--it-color-border-success-active);
|
|
208
|
+
--#{$prefix}color-border-success-hover: var(--it-color-border-success-hover);
|
|
209
|
+
--#{$prefix}color-border-success: var(--it-color-border-success);
|
|
210
|
+
--#{$prefix}color-border-subtle: var(--it-color-border-subtle);
|
|
211
|
+
--#{$prefix}color-border-disabled: var(--it-color-border-disabled);
|
|
212
|
+
--#{$prefix}color-border-inverse: var(--it-color-border-inverse);
|
|
213
|
+
--#{$prefix}color-border-secondary-active: var(--it-color-border-secondary-active);
|
|
214
|
+
--#{$prefix}color-border-secondary-hover: var(--it-color-border-secondary-hover);
|
|
215
|
+
--#{$prefix}color-border-secondary: var(--it-color-border-secondary);
|
|
216
|
+
--#{$prefix}color-border-primary-active: var(--it-color-border-primary-active);
|
|
217
|
+
--#{$prefix}color-border-primary-hover: var(--it-color-border-primary-hover);
|
|
218
|
+
--#{$prefix}color-border-primary: var(--it-color-border-primary);
|
|
219
|
+
--#{$prefix}color-outline-focus: var(--it-color-outline-focus);
|
|
58
220
|
|
|
59
|
-
|
|
60
|
-
--#{$prefix}
|
|
61
|
-
--#{$prefix}
|
|
62
|
-
--#{$prefix}
|
|
63
|
-
--#{$prefix}
|
|
64
|
-
--#{$prefix}
|
|
65
|
-
|
|
221
|
+
// Background colors
|
|
222
|
+
--#{$prefix}color-background-primary: var(--it-color-background-primary);
|
|
223
|
+
--#{$prefix}color-background-primary-lighter: var(--it-color-background-primary-lighter);
|
|
224
|
+
--#{$prefix}color-background-primary-light: var(--it-color-background-primary-light);
|
|
225
|
+
--#{$prefix}color-background-primary-deep: var(--it-color-background-primary-deep);
|
|
226
|
+
--#{$prefix}color-background-primary-muted: var(--it-color-background-primary-muted);
|
|
227
|
+
--#{$prefix}color-background-primary-active: var(--it-color-background-primary-active);
|
|
228
|
+
--#{$prefix}color-background-primary-hover: var(--it-color-background-primary-hover);
|
|
229
|
+
--#{$prefix}color-background-danger-active: var(--it-color-background-danger-active);
|
|
230
|
+
--#{$prefix}color-background-danger-hover: var(--it-color-background-danger-hover);
|
|
231
|
+
--#{$prefix}color-background-danger-light: var(--it-color-background-danger-light);
|
|
232
|
+
--#{$prefix}color-background-danger: var(--it-color-background-danger);
|
|
233
|
+
--#{$prefix}color-background-warning-active: var(--it-color-background-warning-active);
|
|
234
|
+
--#{$prefix}color-background-warning-hover: var(--it-color-background-warning-hover);
|
|
235
|
+
--#{$prefix}color-background-warning-light: var(--it-color-background-warning-light);
|
|
236
|
+
--#{$prefix}color-background-warning: var(--it-color-background-warning);
|
|
237
|
+
--#{$prefix}color-background-success-active: var(--it-color-background-success-active);
|
|
238
|
+
--#{$prefix}color-background-success-hover: var(--it-color-background-success-hover);
|
|
239
|
+
--#{$prefix}color-background-success-light: var(--it-color-background-success-light);
|
|
240
|
+
--#{$prefix}color-background-success: var(--it-color-background-success);
|
|
241
|
+
--#{$prefix}color-background-emphasis: var(--it-color-background-emphasis);
|
|
242
|
+
--#{$prefix}color-background-subtle: var(--it-color-background-subtle);
|
|
243
|
+
--#{$prefix}color-background-disabled: var(--it-color-background-disabled);
|
|
244
|
+
--#{$prefix}color-background-inverse: var(--it-color-background-inverse);
|
|
245
|
+
--#{$prefix}color-background-inverse-hover: var(--it-color-slate-93); // TODO: replace with semantic token
|
|
246
|
+
--#{$prefix}color-background-muted: var(--it-color-background-muted);
|
|
247
|
+
--#{$prefix}color-background-accent-hover: var(--it-color-background-accent-hover);
|
|
248
|
+
--#{$prefix}color-background-accent: var(--it-color-background-accent);
|
|
249
|
+
--#{$prefix}color-background-secondary-lighter: var(--it-color-background-secondary-lighter);
|
|
250
|
+
--#{$prefix}color-background-secondary-light: var(--it-color-background-secondary-light);
|
|
251
|
+
--#{$prefix}color-background-secondary-active: var(--it-color-background-secondary-active);
|
|
252
|
+
--#{$prefix}color-background-secondary-hover: var(--it-color-background-secondary-hover);
|
|
253
|
+
--#{$prefix}color-background-secondary: var(--it-color-background-secondary);
|
|
254
|
+
--#{$prefix}overlay-background-light: hsla(0, 0%, 0%, 0.5);
|
|
255
|
+
--#{$prefix}overlay-background-primary: hsla(210, 100%, 40%, 0.8);
|
|
256
|
+
--#{$prefix}overlay-background-primary-muted: hsla(210, 54%, 20%, 0.8);
|
|
257
|
+
--#{$prefix}highlight-background: var(--it-color-teal-80); // TODO: replace with semantic token
|
|
258
|
+
--#{$prefix}code-background: var(--it-color-background-muted);
|
|
259
|
+
--#{$prefix}ins-background: var(--it-color-emerald-67);
|
|
260
|
+
--#{$prefix}del-background: var(--it-color-red-70);
|
|
261
|
+
--#{$prefix}page-background: var(--it-color-background-inverse);
|
|
66
262
|
|
|
67
|
-
|
|
68
|
-
--#{$prefix}
|
|
263
|
+
// Status colors - reference the background category colors only
|
|
264
|
+
--#{$prefix}color-status-danger: var(--it-color-background-danger);
|
|
265
|
+
--#{$prefix}color-status-danger-hover: var(--it-color-background-danger-hover);
|
|
266
|
+
--#{$prefix}color-status-danger-active: var(--it-color-background-danger-active);
|
|
267
|
+
--#{$prefix}color-status-success: var(--it-color-background-success);
|
|
268
|
+
--#{$prefix}color-status-success-hover: var(--it-color-background-success-hover);
|
|
269
|
+
--#{$prefix}color-status-success-active: var(--it-color-background-success-active);
|
|
270
|
+
--#{$prefix}color-status-info: var(--it-color-background-info);
|
|
271
|
+
--#{$prefix}color-status-info-hover: var(--it-color-background-info-hover);
|
|
272
|
+
--#{$prefix}color-status-info-active: var(--it-color-background-info-active);
|
|
273
|
+
--#{$prefix}color-status-warning: var(--it-color-background-warning);
|
|
274
|
+
--#{$prefix}color-status-warning-hover: var(--it-color-background-warning-hover);
|
|
275
|
+
--#{$prefix}color-status-warning-active: var(--it-color-background-warning-active);
|
|
69
276
|
|
|
70
|
-
|
|
277
|
+
// Icons colors
|
|
278
|
+
--#{$prefix}icon-danger-active: var(--it-icon-danger-active);
|
|
279
|
+
--#{$prefix}icon-danger-hover: var(--it-icon-danger-hover);
|
|
280
|
+
--#{$prefix}icon-danger: var(--it-icon-danger);
|
|
281
|
+
--#{$prefix}icon-warning-active: var(--it-icon-warning-active);
|
|
282
|
+
--#{$prefix}icon-warning-hover: var(--it-icon-warning-hover);
|
|
283
|
+
--#{$prefix}icon-warning: var(--it-icon-warning);
|
|
284
|
+
--#{$prefix}icon-success-active: var(--it-icon-success-active);
|
|
285
|
+
--#{$prefix}icon-success-hover: var(--it-icon-success-hover);
|
|
286
|
+
--#{$prefix}icon-success: var(--it-icon-success);
|
|
287
|
+
--#{$prefix}icon-secondary-active: var(--it-icon-secondary-active);
|
|
288
|
+
--#{$prefix}icon-inverse: var(--it-icon-inverse);
|
|
289
|
+
--#{$prefix}icon-secondary-hover: var(--it-icon-secondary-hover);
|
|
290
|
+
--#{$prefix}icon-secondary: var(--it-icon-secondary);
|
|
291
|
+
--#{$prefix}icon-primary-active: var(--it-icon-primary-active);
|
|
292
|
+
--#{$prefix}icon-primary-hover: var(--it-icon-primary-hover);
|
|
293
|
+
--#{$prefix}icon-primary: var(--it-icon-primary);
|
|
294
|
+
--#{$prefix}icon-default: var(--it-icon-default);
|
|
295
|
+
--#{$prefix}icon-disabled: var(--it-icon-disabled);
|
|
296
|
+
--#{$prefix}icon-spacing: var(--it-spacing-xs);
|
|
71
297
|
|
|
72
|
-
|
|
298
|
+
// Transitions
|
|
299
|
+
--#{$prefix}transition-instant: 0.2s;
|
|
73
300
|
}
|
|
@@ -61,9 +61,9 @@ $utilities: map-merge(
|
|
|
61
61
|
property: box-shadow,
|
|
62
62
|
class: shadow,
|
|
63
63
|
values: (
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
lg: $
|
|
64
|
+
sm: var(--#{$prefix}elevation-low),
|
|
65
|
+
md: var(--#{$prefix}elevation-medium),
|
|
66
|
+
lg: var(--#{$prefix}elevation-high),
|
|
67
67
|
none: none,
|
|
68
68
|
),
|
|
69
69
|
),
|