@itwin/itwinui-css 0.52.0 → 0.53.2
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/css/alert.css +44 -44
- package/css/all.css +2170 -1431
- package/css/badge.css +1 -1
- package/css/blockquote.css +2 -2
- package/css/breadcrumbs.css +12 -12
- package/css/button.css +40 -39
- package/css/carousel.css +24 -36
- package/css/code.css +5 -5
- package/css/color-picker.css +14 -10
- package/css/date-picker.css +402 -46
- package/css/expandable-block.css +19 -19
- package/css/fieldset.css +4 -4
- package/css/file-upload.css +11 -11
- package/css/footer.css +2 -2
- package/css/global.css +539 -208
- package/css/header.css +50 -38
- package/css/icon.css +24 -24
- package/css/information-panel.css +15 -8
- package/css/inputs.css +72 -72
- package/css/keyboard.css +4 -4
- package/css/location-marker.css +9 -9
- package/css/menu.css +25 -12
- package/css/modal.css +14 -14
- package/css/notification-marker.css +28 -28
- package/css/progress-indicator.css +32 -32
- package/css/side-navigation.css +18 -18
- package/css/skip-to-content.css +5 -3
- package/css/slider.css +13 -13
- package/css/surface.css +19 -0
- package/css/table.css +78 -74
- package/css/tabs.css +23 -23
- package/css/tag.css +4 -4
- package/css/text.css +1 -1
- package/css/tile.css +35 -35
- package/css/time-picker.css +15 -15
- package/css/toast-notification.css +34 -34
- package/css/tooltip.css +3 -1
- package/css/tree.css +7 -7
- package/css/user-icon.css +21 -18
- package/css/wizard.css +26 -26
- package/package.json +1 -1
- package/scss/button/button-group.scss +5 -3
- package/scss/button/classes.scss +4 -0
- package/scss/carousel/carousel.scss +22 -28
- package/scss/classes.scss +1 -0
- package/scss/color-picker/color-picker.scss +2 -2
- package/scss/date-picker/classes.scss +20 -0
- package/scss/date-picker/date-picker.scss +194 -33
- package/scss/fieldset/fieldset.scss +1 -1
- package/scss/header/header.scss +15 -10
- package/scss/index.scss +1 -0
- package/scss/information-panel/information-panel.scss +10 -3
- package/scss/menu/classes.scss +2 -1
- package/scss/menu/menu.scss +8 -11
- package/scss/modal/classes.scss +4 -0
- package/scss/modal/modal.scss +23 -19
- package/scss/progress-indicator/linear.scss +1 -1
- package/scss/progress-indicator/radial.scss +1 -1
- package/scss/side-navigation/side-navigation.scss +5 -5
- package/scss/skip-to-content/skip-to-content.scss +6 -3
- package/scss/slider/slider.scss +2 -2
- package/scss/style/elevation.scss +5 -5
- package/scss/style/global.scss +32 -21
- package/scss/style/mixins.scss +1 -1
- package/scss/style/theme.scss +248 -65
- package/scss/surface/classes.scss +7 -0
- package/scss/surface/index.scss +3 -0
- package/scss/surface/surface.scss +18 -0
- package/scss/table/column-filter.scss +2 -2
- package/scss/table/table.scss +3 -3
- package/scss/tile/tile.scss +5 -5
- package/scss/time-picker/time-picker.scss +2 -2
- package/scss/tooltip/tooltip.scss +1 -0
- package/scss/user-icon/sizes.scss +8 -0
- package/scss/user-icon/user-icon.scss +2 -2
- package/scss/wizard/wizard.scss +1 -1
package/css/badge.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
5
|
.iui-badge{
|
|
6
|
-
--iui-badge-background-color:#
|
|
6
|
+
--iui-badge-background-color:#c7ccd1;
|
|
7
7
|
--_iui-badge-text-color:rgba(0, 0, 0, 0.6);
|
|
8
8
|
margin:0;
|
|
9
9
|
padding:0;
|
package/css/blockquote.css
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
text-align:justify;
|
|
15
15
|
box-shadow:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
16
16
|
border-radius:3px;
|
|
17
|
-
background-color
|
|
18
|
-
border-left:8px solid #
|
|
17
|
+
background-color:white;
|
|
18
|
+
border-left:8px solid #008ae0;
|
|
19
19
|
background-color:var(--iui-color-background-1);
|
|
20
20
|
border-left:8px solid var(--iui-color-foreground-primary);
|
|
21
21
|
}
|
package/css/breadcrumbs.css
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
border-radius:3px;
|
|
37
37
|
text-decoration:none;
|
|
38
38
|
cursor:pointer;
|
|
39
|
-
color:#
|
|
39
|
+
color:#008ae0;
|
|
40
40
|
color:var(--iui-color-foreground-primary);
|
|
41
41
|
}
|
|
42
42
|
.iui-breadcrumbs-item a:focus-visible{
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
.iui-breadcrumbs-item a:hover{
|
|
53
|
-
color:#
|
|
53
|
+
color:#006bad;
|
|
54
54
|
color:var(--iui-color-foreground-primary-overlay);
|
|
55
55
|
text-decoration:underline;
|
|
56
56
|
}
|
|
@@ -73,16 +73,16 @@
|
|
|
73
73
|
border-color:transparent;
|
|
74
74
|
}
|
|
75
75
|
.iui-breadcrumbs-item .iui-button.iui-active{
|
|
76
|
-
background-color:rgba(0,
|
|
77
|
-
color:#
|
|
76
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
77
|
+
color:#008ae0;
|
|
78
78
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
79
79
|
color:var(--iui-color-foreground-primary);
|
|
80
80
|
border-color:transparent;
|
|
81
81
|
}
|
|
82
82
|
.iui-breadcrumbs-item .iui-button[disabled], .iui-breadcrumbs-item .iui-button:disabled{
|
|
83
83
|
cursor:not-allowed;
|
|
84
|
-
background:#
|
|
85
|
-
border-color:#
|
|
84
|
+
background:#edeff2;
|
|
85
|
+
border-color:#edeff2;
|
|
86
86
|
color:rgba(0, 0, 0, 0.2);
|
|
87
87
|
background:var(--iui-color-background-disabled);
|
|
88
88
|
border-color:var(--iui-color-background-disabled);
|
|
@@ -103,11 +103,11 @@
|
|
|
103
103
|
text-overflow:ellipsis;
|
|
104
104
|
}
|
|
105
105
|
.iui-breadcrumbs-item:not(.iui-current) > .iui-button{
|
|
106
|
-
color:#
|
|
106
|
+
color:#008ae0;
|
|
107
107
|
color:var(--iui-color-foreground-primary);
|
|
108
108
|
}
|
|
109
109
|
.iui-breadcrumbs-item:not(.iui-current) > .iui-button:hover{
|
|
110
|
-
color:#
|
|
110
|
+
color:#006bad;
|
|
111
111
|
color:var(--iui-color-foreground-primary-overlay);
|
|
112
112
|
}
|
|
113
113
|
|
|
@@ -123,18 +123,18 @@
|
|
|
123
123
|
display:flex;
|
|
124
124
|
}
|
|
125
125
|
.iui-breadcrumbs-separator svg.iui-informational{
|
|
126
|
-
fill:#
|
|
126
|
+
fill:#008ae0;
|
|
127
127
|
fill:var(--iui-icons-color-primary);
|
|
128
128
|
}
|
|
129
129
|
.iui-breadcrumbs-separator svg.iui-positive{
|
|
130
|
-
fill:#
|
|
130
|
+
fill:#53a21a;
|
|
131
131
|
fill:var(--iui-icons-color-positive);
|
|
132
132
|
}
|
|
133
133
|
.iui-breadcrumbs-separator svg.iui-warning{
|
|
134
|
-
fill:#
|
|
134
|
+
fill:#f18d13;
|
|
135
135
|
fill:var(--iui-icons-color-warning);
|
|
136
136
|
}
|
|
137
137
|
.iui-breadcrumbs-separator svg.iui-negative{
|
|
138
|
-
fill:#
|
|
138
|
+
fill:#d10a0a;
|
|
139
139
|
fill:var(--iui-icons-color-negative);
|
|
140
140
|
}
|
package/css/button.css
CHANGED
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
}
|
|
60
60
|
.iui-button[disabled], .iui-button:disabled{
|
|
61
61
|
cursor:not-allowed;
|
|
62
|
-
background:#
|
|
63
|
-
border-color:#
|
|
62
|
+
background:#edeff2;
|
|
63
|
+
border-color:#edeff2;
|
|
64
64
|
color:rgba(0, 0, 0, 0.2);
|
|
65
65
|
background:var(--iui-color-background-disabled);
|
|
66
66
|
border-color:var(--iui-color-background-disabled);
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
77
77
|
}
|
|
78
78
|
.iui-button.iui-default{
|
|
79
|
-
background-color
|
|
79
|
+
background-color:white;
|
|
80
80
|
border-color:rgba(0, 0, 0, 0.4);
|
|
81
81
|
color:rgba(0, 0, 0, 0.8);
|
|
82
82
|
background-color:var(--iui-color-background-1);
|
|
@@ -122,29 +122,29 @@
|
|
|
122
122
|
}
|
|
123
123
|
.iui-button.iui-default.iui-active:enabled{
|
|
124
124
|
position:relative;
|
|
125
|
-
color:#
|
|
125
|
+
color:#008ae0;
|
|
126
126
|
color:var(--iui-color-foreground-primary);
|
|
127
127
|
}
|
|
128
128
|
.iui-button.iui-default.iui-active:enabled::before{
|
|
129
129
|
content:"";
|
|
130
130
|
position:absolute;
|
|
131
131
|
inset:0;
|
|
132
|
-
background-color:rgba(0,
|
|
132
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
133
133
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
134
134
|
}
|
|
135
135
|
.iui-button.iui-default[disabled], .iui-button.iui-default:disabled{
|
|
136
136
|
cursor:not-allowed;
|
|
137
|
-
background:#
|
|
138
|
-
border-color:#
|
|
137
|
+
background:#edeff2;
|
|
138
|
+
border-color:#edeff2;
|
|
139
139
|
color:rgba(0, 0, 0, 0.2);
|
|
140
140
|
background:var(--iui-color-background-disabled);
|
|
141
141
|
border-color:var(--iui-color-background-disabled);
|
|
142
142
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
143
143
|
}
|
|
144
144
|
.iui-button.iui-high-visibility{
|
|
145
|
-
background-color:#
|
|
146
|
-
border-color:#
|
|
147
|
-
color
|
|
145
|
+
background-color:#008ae0;
|
|
146
|
+
border-color:#008ae0;
|
|
147
|
+
color:white;
|
|
148
148
|
background-color:var(--iui-color-background-primary);
|
|
149
149
|
border-color:var(--iui-color-background-primary);
|
|
150
150
|
color:var(--iui-color-foreground-accessory);
|
|
@@ -160,26 +160,26 @@
|
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
.iui-button.iui-high-visibility:hover, .iui-button.iui-high-visibility:active{
|
|
163
|
-
background-color:#
|
|
164
|
-
border-color:#
|
|
165
|
-
color
|
|
163
|
+
background-color:#006bad;
|
|
164
|
+
border-color:#006bad;
|
|
165
|
+
color:white;
|
|
166
166
|
background-color:var(--iui-color-background-primary-overlay);
|
|
167
167
|
border-color:var(--iui-color-background-primary-overlay);
|
|
168
168
|
color:var(--iui-color-foreground-accessory);
|
|
169
169
|
}
|
|
170
170
|
.iui-button.iui-high-visibility[disabled], .iui-button.iui-high-visibility:disabled{
|
|
171
171
|
cursor:not-allowed;
|
|
172
|
-
background:#
|
|
173
|
-
border-color:#
|
|
172
|
+
background:#edeff2;
|
|
173
|
+
border-color:#edeff2;
|
|
174
174
|
color:rgba(0, 0, 0, 0.2);
|
|
175
175
|
background:var(--iui-color-background-disabled);
|
|
176
176
|
border-color:var(--iui-color-background-disabled);
|
|
177
177
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
178
178
|
}
|
|
179
179
|
.iui-button.iui-cta{
|
|
180
|
-
background-color:#
|
|
181
|
-
border-color:#
|
|
182
|
-
color
|
|
180
|
+
background-color:#53a21a;
|
|
181
|
+
border-color:#53a21a;
|
|
182
|
+
color:white;
|
|
183
183
|
background-color:var(--iui-color-background-positive);
|
|
184
184
|
border-color:var(--iui-color-background-positive);
|
|
185
185
|
color:var(--iui-color-foreground-accessory);
|
|
@@ -195,26 +195,26 @@
|
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
.iui-button.iui-cta:hover, .iui-button.iui-cta:active{
|
|
198
|
-
background-color:#
|
|
199
|
-
border-color:#
|
|
200
|
-
color
|
|
198
|
+
background-color:#3d7613;
|
|
199
|
+
border-color:#3d7613;
|
|
200
|
+
color:white;
|
|
201
201
|
background-color:var(--iui-color-background-positive-overlay);
|
|
202
202
|
border-color:var(--iui-color-background-positive-overlay);
|
|
203
203
|
color:var(--iui-color-foreground-accessory);
|
|
204
204
|
}
|
|
205
205
|
.iui-button.iui-cta[disabled], .iui-button.iui-cta:disabled{
|
|
206
206
|
cursor:not-allowed;
|
|
207
|
-
background:#
|
|
208
|
-
border-color:#
|
|
207
|
+
background:#edeff2;
|
|
208
|
+
border-color:#edeff2;
|
|
209
209
|
color:rgba(0, 0, 0, 0.2);
|
|
210
210
|
background:var(--iui-color-background-disabled);
|
|
211
211
|
border-color:var(--iui-color-background-disabled);
|
|
212
212
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
213
213
|
}
|
|
214
214
|
.iui-button.iui-idea{
|
|
215
|
-
background-color:#
|
|
216
|
-
border-color:#
|
|
217
|
-
color
|
|
215
|
+
background-color:#008ae0;
|
|
216
|
+
border-color:#008ae0;
|
|
217
|
+
color:white;
|
|
218
218
|
background-color:var(--iui-color-background-primary);
|
|
219
219
|
border-color:var(--iui-color-background-primary);
|
|
220
220
|
color:var(--iui-color-foreground-accessory);
|
|
@@ -235,17 +235,17 @@
|
|
|
235
235
|
}
|
|
236
236
|
}
|
|
237
237
|
.iui-button.iui-idea:hover, .iui-button.iui-idea:active{
|
|
238
|
-
background-color:#
|
|
239
|
-
border-color:#
|
|
240
|
-
color
|
|
238
|
+
background-color:#006bad;
|
|
239
|
+
border-color:#006bad;
|
|
240
|
+
color:white;
|
|
241
241
|
background-color:var(--iui-color-background-primary-overlay);
|
|
242
242
|
border-color:var(--iui-color-background-primary-overlay);
|
|
243
243
|
color:var(--iui-color-foreground-accessory);
|
|
244
244
|
}
|
|
245
245
|
.iui-button.iui-idea[disabled], .iui-button.iui-idea:disabled{
|
|
246
246
|
cursor:not-allowed;
|
|
247
|
-
background:#
|
|
248
|
-
border-color:#
|
|
247
|
+
background:#edeff2;
|
|
248
|
+
border-color:#edeff2;
|
|
249
249
|
color:rgba(0, 0, 0, 0.2);
|
|
250
250
|
background:var(--iui-color-background-disabled);
|
|
251
251
|
border-color:var(--iui-color-background-disabled);
|
|
@@ -269,16 +269,16 @@
|
|
|
269
269
|
border-color:transparent;
|
|
270
270
|
}
|
|
271
271
|
.iui-button.iui-borderless.iui-active{
|
|
272
|
-
background-color:rgba(0,
|
|
273
|
-
color:#
|
|
272
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
273
|
+
color:#008ae0;
|
|
274
274
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
275
275
|
color:var(--iui-color-foreground-primary);
|
|
276
276
|
border-color:transparent;
|
|
277
277
|
}
|
|
278
278
|
.iui-button.iui-borderless[disabled], .iui-button.iui-borderless:disabled{
|
|
279
279
|
cursor:not-allowed;
|
|
280
|
-
background:#
|
|
281
|
-
border-color:#
|
|
280
|
+
background:#edeff2;
|
|
281
|
+
border-color:#edeff2;
|
|
282
282
|
color:rgba(0, 0, 0, 0.2);
|
|
283
283
|
background:var(--iui-color-background-disabled);
|
|
284
284
|
border-color:var(--iui-color-background-disabled);
|
|
@@ -319,7 +319,6 @@
|
|
|
319
319
|
display:inline-flex;
|
|
320
320
|
align-items:center;
|
|
321
321
|
isolation:isolate;
|
|
322
|
-
max-width:100%;
|
|
323
322
|
}
|
|
324
323
|
.iui-button-group > *{
|
|
325
324
|
display:flex;
|
|
@@ -402,12 +401,14 @@
|
|
|
402
401
|
.iui-button-group-vertical > *:not(:first-child) :where(.iui-button.iui-default):disabled, .iui-button-group-vertical > *:not(:first-child) :where(.iui-button.iui-default).iui-disabled, .iui-button-group-vertical > *:not(:first-child) :where(.iui-button.iui-default)[aria-disabled=true]{
|
|
403
402
|
border-top-color:var(--iui-color-background-4);
|
|
404
403
|
}
|
|
404
|
+
.iui-button-group-overflow-x{
|
|
405
|
+
width:100%;
|
|
406
|
+
}
|
|
405
407
|
|
|
406
408
|
.iui-button-split-menu{
|
|
407
409
|
display:inline-flex;
|
|
408
410
|
align-items:center;
|
|
409
411
|
isolation:isolate;
|
|
410
|
-
max-width:100%;
|
|
411
412
|
}
|
|
412
413
|
.iui-button-split-menu > *{
|
|
413
414
|
display:flex;
|
|
@@ -478,8 +479,8 @@
|
|
|
478
479
|
}
|
|
479
480
|
.iui-button-split-menu[disabled], .iui-button-split-menu:disabled{
|
|
480
481
|
cursor:not-allowed;
|
|
481
|
-
background:#
|
|
482
|
-
border-color:#
|
|
482
|
+
background:#edeff2;
|
|
483
|
+
border-color:#edeff2;
|
|
483
484
|
color:rgba(0, 0, 0, 0.2);
|
|
484
485
|
background:var(--iui-color-background-disabled);
|
|
485
486
|
border-color:var(--iui-color-background-disabled);
|
package/css/carousel.css
CHANGED
|
@@ -23,17 +23,12 @@
|
|
|
23
23
|
list-style:none;
|
|
24
24
|
margin:0;
|
|
25
25
|
padding:0;
|
|
26
|
-
overflow-x:auto;
|
|
27
|
-
overflow-x:overlay;
|
|
28
26
|
-ms-scroll-snap-type:x mandatory;
|
|
29
27
|
scroll-snap-type:x mandatory;
|
|
28
|
+
overflow-x:auto;
|
|
29
|
+
overflow-x:overlay;
|
|
30
30
|
scrollbar-width:none;
|
|
31
31
|
}
|
|
32
|
-
@media (prefers-reduced-motion: no-preference){
|
|
33
|
-
.iui-carousel-slider{
|
|
34
|
-
scroll-behavior:smooth;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
32
|
.iui-carousel-slider::-webkit-scrollbar{
|
|
38
33
|
display:none;
|
|
39
34
|
}
|
|
@@ -49,7 +44,7 @@
|
|
|
49
44
|
align-items:center;
|
|
50
45
|
height:33px;
|
|
51
46
|
box-sizing:border-box;
|
|
52
|
-
border-top:2px solid #
|
|
47
|
+
border-top:2px solid #dde1e4;
|
|
53
48
|
border-top:2px solid var(--iui-color-background-4);
|
|
54
49
|
}
|
|
55
50
|
.iui-carousel-navigation-left, .iui-carousel-navigation-right{
|
|
@@ -59,7 +54,7 @@
|
|
|
59
54
|
}
|
|
60
55
|
.iui-carousel-navigation-left button[data-pressed=true], .iui-carousel-navigation-right button[data-pressed=true]{
|
|
61
56
|
outline-offset:-1px;
|
|
62
|
-
outline:1px solid #
|
|
57
|
+
outline:1px solid #008ae0;
|
|
63
58
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
64
59
|
}
|
|
65
60
|
.iui-carousel-navigation-dots{
|
|
@@ -67,15 +62,13 @@
|
|
|
67
62
|
padding:0;
|
|
68
63
|
border:none;
|
|
69
64
|
vertical-align:baseline;
|
|
70
|
-
display:flex;
|
|
71
|
-
align-items:center;
|
|
72
65
|
flex:2;
|
|
73
66
|
max-width:256px;
|
|
74
67
|
border-radius:3px;
|
|
75
68
|
white-space:nowrap;
|
|
76
|
-
overflow:
|
|
77
|
-
|
|
78
|
-
|
|
69
|
+
overflow-x:auto;
|
|
70
|
+
overflow-x:overlay;
|
|
71
|
+
scrollbar-width:none;
|
|
79
72
|
}
|
|
80
73
|
.iui-carousel-navigation-dots:focus-visible{
|
|
81
74
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -87,6 +80,9 @@
|
|
|
87
80
|
outline-offset:-1px;
|
|
88
81
|
}
|
|
89
82
|
}
|
|
83
|
+
.iui-carousel-navigation-dots::-webkit-scrollbar{
|
|
84
|
+
display:none;
|
|
85
|
+
}
|
|
90
86
|
.iui-carousel-navigation-dot{
|
|
91
87
|
padding:0 8px;
|
|
92
88
|
height:27px;
|
|
@@ -99,32 +95,18 @@
|
|
|
99
95
|
background-color:rgba(0, 0, 0, 0.6);
|
|
100
96
|
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-3));
|
|
101
97
|
}
|
|
102
|
-
.iui-carousel-navigation-dot.iui-invisible{
|
|
103
|
-
-webkit-clip-path:inset(50%);
|
|
104
|
-
clip-path:inset(50%);
|
|
105
|
-
overflow:hidden;
|
|
106
|
-
position:absolute;
|
|
107
|
-
white-space:nowrap;
|
|
108
|
-
height:1px;
|
|
109
|
-
width:1px;
|
|
110
|
-
padding:0;
|
|
111
|
-
margin:-1px;
|
|
112
|
-
border-width:0;
|
|
113
|
-
}
|
|
114
98
|
.iui-carousel-navigation-dot::after{
|
|
115
99
|
content:"";
|
|
116
100
|
display:block;
|
|
117
101
|
width:12px;
|
|
118
102
|
height:12px;
|
|
119
103
|
border-radius:50%;
|
|
120
|
-
|
|
104
|
+
box-sizing:border-box;
|
|
105
|
+
border:1px solid transparent;
|
|
121
106
|
background-color:rgba(0, 0, 0, 0.4);
|
|
107
|
+
box-shadow:inset 0 0 0 0 white;
|
|
122
108
|
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
123
|
-
|
|
124
|
-
@media (prefers-reduced-motion: no-preference){
|
|
125
|
-
.iui-carousel-navigation-dot::after{
|
|
126
|
-
transition:background-color 0.2s 0.2s ease, transform 0.4s ease;
|
|
127
|
-
}
|
|
109
|
+
box-shadow:inset 0 0 0 0 var(--iui-color-background-1);
|
|
128
110
|
}
|
|
129
111
|
.iui-carousel-navigation-dot.iui-first::after{
|
|
130
112
|
transform:scale(0.5);
|
|
@@ -132,12 +114,18 @@
|
|
|
132
114
|
.iui-carousel-navigation-dot.iui-second::after{
|
|
133
115
|
transform:scale(0.75);
|
|
134
116
|
}
|
|
135
|
-
.iui-carousel-navigation-dot.iui-invisible::after{
|
|
136
|
-
transform:scale(0);
|
|
137
|
-
}
|
|
138
117
|
.iui-carousel-navigation-dot.iui-active::after{
|
|
139
|
-
background-color:#
|
|
118
|
+
background-color:#008ae0;
|
|
119
|
+
border-color:#008ae0;
|
|
120
|
+
box-shadow:inset 0 0 0 1px white;
|
|
140
121
|
background-color:var(--iui-color-foreground-primary);
|
|
122
|
+
border-color:var(--iui-color-foreground-primary);
|
|
123
|
+
box-shadow:inset 0 0 0 1px var(--iui-color-background-1);
|
|
124
|
+
}
|
|
125
|
+
@media (forced-colors: active){
|
|
126
|
+
.iui-carousel-navigation-dot.iui-active::after{
|
|
127
|
+
border-width:6px;
|
|
128
|
+
}
|
|
141
129
|
}
|
|
142
130
|
.iui-carousel-navigation-right{
|
|
143
131
|
justify-content:flex-end;
|
package/css/code.css
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
-webkit-user-select:all;
|
|
16
16
|
-moz-user-select:all;
|
|
17
17
|
user-select:all;
|
|
18
|
-
background-color:#
|
|
18
|
+
background-color:#edeff2;
|
|
19
19
|
color:rgba(0, 0, 0, 0.8);
|
|
20
20
|
background-color:var(--iui-color-background-3);
|
|
21
21
|
color:var(--iui-text-color);
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
display:flex;
|
|
33
33
|
align-items:center;
|
|
34
34
|
border-radius:3px 3px 0 0;
|
|
35
|
-
background-color:#
|
|
35
|
+
background-color:#edeff2;
|
|
36
36
|
background-color:var(--iui-color-background-3);
|
|
37
37
|
}
|
|
38
38
|
.iui-codeblock > .iui-title-bar > .iui-title{
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
overflow-y:auto;
|
|
54
54
|
border-radius:0 0 3px 3px;
|
|
55
55
|
white-space:normal;
|
|
56
|
-
border:1px solid #
|
|
56
|
+
border:1px solid #edeff2;
|
|
57
57
|
border:1px solid var(--iui-color-background-3);
|
|
58
58
|
}
|
|
59
59
|
.iui-codeblock > .iui-codeblock-content:focus-visible{
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
hyphens:auto;
|
|
76
76
|
counter-increment:section;
|
|
77
77
|
font-family:ui-monospace, Menlo, "Segoe UI Mono", Consolas, "Roboto Mono", "Courier New", monospace;
|
|
78
|
-
background-color
|
|
78
|
+
background-color:white;
|
|
79
79
|
background-color:var(--iui-color-background-1);
|
|
80
80
|
}
|
|
81
81
|
.iui-codeblock > .iui-codeblock-content > code:nth-child(even){
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
display:inline-block;
|
|
89
89
|
padding:0 8px;
|
|
90
90
|
width:24px;
|
|
91
|
-
background-color:#
|
|
91
|
+
background-color:#f9f9fb;
|
|
92
92
|
color:rgba(0, 0, 0, 0.4);
|
|
93
93
|
background-color:var(--iui-color-background-2);
|
|
94
94
|
color:var(--iui-text-color-muted);
|
package/css/color-picker.css
CHANGED
|
@@ -4,14 +4,13 @@
|
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
5
|
.iui-color-picker{
|
|
6
6
|
--iui-color-picker-selected-color:initial;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
background-color:var(--iui-color-background-1);
|
|
7
|
+
--iui-surface-background-color:var(--iui-color-background-1);
|
|
8
|
+
--iui-surface-border-radius:0;
|
|
9
|
+
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
10
|
+
background-color:var(--iui-surface-background-color);
|
|
11
|
+
border-radius:var(--iui-surface-border-radius);
|
|
12
|
+
box-shadow:var(--iui-surface-elevation);
|
|
13
|
+
box-sizing:border-box;
|
|
15
14
|
color:var(--iui-text-color);
|
|
16
15
|
box-sizing:border-box;
|
|
17
16
|
border-radius:3px;
|
|
@@ -25,6 +24,11 @@
|
|
|
25
24
|
flex-direction:column;
|
|
26
25
|
max-height:495px;
|
|
27
26
|
}
|
|
27
|
+
@media (forced-colors: active){
|
|
28
|
+
.iui-color-picker{
|
|
29
|
+
border:1px solid transparent;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
28
32
|
@supports (overflow-y: overlay){
|
|
29
33
|
.iui-color-picker{
|
|
30
34
|
overflow-y:overlay;
|
|
@@ -120,7 +124,7 @@
|
|
|
120
124
|
background-color:var(--iui-color-swatch-background);
|
|
121
125
|
background-position:0 0, 8px 8px;
|
|
122
126
|
background-size:16px 16px;
|
|
123
|
-
background-image:repeating-linear-gradient(45deg, #
|
|
127
|
+
background-image:repeating-linear-gradient(45deg, #edeff2 25%, transparent 25%, transparent 75%, #edeff2 75%, #edeff2), repeating-linear-gradient(45deg, #edeff2 25%, #c7ccd1 25%, #c7ccd1 75%, #edeff2 75%, #edeff2);
|
|
124
128
|
background-image:repeating-linear-gradient(45deg, var(--iui-color-background-3) 25%, transparent 25%, transparent 75%, var(--iui-color-background-3) 75%, var(--iui-color-background-3)), repeating-linear-gradient(45deg, var(--iui-color-background-3) 25%, var(--iui-color-background-5) 25%, var(--iui-color-background-5) 75%, var(--iui-color-background-3) 75%, var(--iui-color-background-3));
|
|
125
129
|
}
|
|
126
130
|
@supports (gap: 8px){
|
|
@@ -199,7 +203,7 @@
|
|
|
199
203
|
height:8px;
|
|
200
204
|
background-position:0 0, 4px 4px;
|
|
201
205
|
background-size:8px 8px;
|
|
202
|
-
background-image:repeating-linear-gradient(45deg, #
|
|
206
|
+
background-image:repeating-linear-gradient(45deg, #edeff2 25%, transparent 25%, transparent 75%, #edeff2 75%, #edeff2), repeating-linear-gradient(45deg, #edeff2 25%, #c7ccd1 25%, #c7ccd1 75%, #edeff2 75%, #edeff2);
|
|
203
207
|
background-image:repeating-linear-gradient(45deg, var(--iui-color-background-3) 25%, transparent 25%, transparent 75%, var(--iui-color-background-3) 75%, var(--iui-color-background-3)), repeating-linear-gradient(45deg, var(--iui-color-background-3) 25%, var(--iui-color-background-5) 25%, var(--iui-color-background-5) 75%, var(--iui-color-background-3) 75%, var(--iui-color-background-3));
|
|
204
208
|
}
|
|
205
209
|
.iui-opacity-slider .iui-slider-rail::before{
|