@itwin/itwinui-css 0.51.0 → 0.53.1
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 +1797 -982
- 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 +65 -6
- 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 +1 -1
- 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 +50 -28
- 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 +8 -0
- package/scss/modal/modal.scss +81 -6
- 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/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/ripple.scss +1 -1
- package/scss/style/speed.scss +1 -0
- 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 +2 -1
- package/scss/user-icon/sizes.scss +8 -0
- package/scss/user-icon/user-icon.scss +40 -21
- package/scss/wizard/wizard.scss +1 -1
package/css/table.css
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
user-select:none;
|
|
55
55
|
overflow:hidden;
|
|
56
56
|
flex-shrink:0;
|
|
57
|
-
background-color:#
|
|
57
|
+
background-color:#edeff2;
|
|
58
58
|
background-color:var(--iui-color-background-3);
|
|
59
59
|
}
|
|
60
60
|
@supports not (overflow: overlay){
|
|
@@ -108,8 +108,8 @@
|
|
|
108
108
|
height:100%;
|
|
109
109
|
width:2px;
|
|
110
110
|
margin:0 auto;
|
|
111
|
-
background-color:#
|
|
112
|
-
background-color:var(--iui-color-background-
|
|
111
|
+
background-color:#c7ccd1;
|
|
112
|
+
background-color:var(--iui-color-background-border);
|
|
113
113
|
}
|
|
114
114
|
@media (prefers-reduced-motion: no-preference){
|
|
115
115
|
.iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer > .iui-resizer-bar{
|
|
@@ -118,14 +118,14 @@
|
|
|
118
118
|
}
|
|
119
119
|
.iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer:hover > .iui-resizer-bar{
|
|
120
120
|
width:4px;
|
|
121
|
-
background-color:#
|
|
121
|
+
background-color:#008ae0;
|
|
122
122
|
background-color:var(--iui-color-foreground-primary);
|
|
123
123
|
}
|
|
124
124
|
.iui-table-header .iui-cell:not(.iui-slot):hover > .iui-resizer{
|
|
125
125
|
opacity:1;
|
|
126
126
|
}
|
|
127
127
|
.iui-table-header .iui-cell:not(.iui-slot):hover, .iui-table-header .iui-cell:not(.iui-slot):focus, .iui-table-header .iui-cell:not(.iui-slot):focus-within{
|
|
128
|
-
background-color:#
|
|
128
|
+
background-color:#dde1e4;
|
|
129
129
|
background-color:var(--iui-color-background-4);
|
|
130
130
|
}
|
|
131
131
|
.iui-table-header .iui-cell:not(.iui-slot):hover .iui-sort,
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
}
|
|
148
148
|
.iui-table-header .iui-reorder-column-left > .iui-reorder-bar,
|
|
149
149
|
.iui-table-header .iui-reorder-column-right > .iui-reorder-bar{
|
|
150
|
-
background-color:#
|
|
150
|
+
background-color:#008ae0;
|
|
151
151
|
background-color:var(--iui-color-foreground-primary);
|
|
152
152
|
}
|
|
153
153
|
.iui-table-header .iui-sort{
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
fill:var(--iui-icons-color);
|
|
157
157
|
}
|
|
158
158
|
.iui-table-header .iui-sorted{
|
|
159
|
-
background-color:#
|
|
159
|
+
background-color:#dde1e4;
|
|
160
160
|
background-color:var(--iui-color-background-4);
|
|
161
161
|
}
|
|
162
162
|
.iui-table-header .iui-sorted .iui-sort{
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
flex-direction:column;
|
|
173
173
|
flex-grow:1;
|
|
174
174
|
align-items:flex-start;
|
|
175
|
-
background-color
|
|
175
|
+
background-color:white;
|
|
176
176
|
background-color:var(--iui-color-background-1);
|
|
177
177
|
}
|
|
178
178
|
.iui-table-body.iui-scroll-snapping{
|
|
@@ -190,8 +190,8 @@
|
|
|
190
190
|
min-width:100%;
|
|
191
191
|
display:flex;
|
|
192
192
|
border:solid 1px transparent;
|
|
193
|
-
border-bottom-color:#
|
|
194
|
-
border-bottom-color:var(--iui-color-background-
|
|
193
|
+
border-bottom-color:#c7ccd1;
|
|
194
|
+
border-bottom-color:var(--iui-color-background-border);
|
|
195
195
|
}
|
|
196
196
|
@media (prefers-reduced-motion: no-preference){
|
|
197
197
|
.iui-table-body .iui-row{
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
visibility:hidden;
|
|
203
203
|
}
|
|
204
204
|
.iui-table-body .iui-row:hover:not(.iui-disabled):not(.iui-expanded-content){
|
|
205
|
-
background-color:rgba(0,
|
|
205
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
206
206
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
207
207
|
}
|
|
208
208
|
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot > .iui-more-options{
|
|
@@ -218,8 +218,8 @@
|
|
|
218
218
|
}
|
|
219
219
|
.iui-table-body .iui-row.iui-row-expanded{
|
|
220
220
|
overflow:hidden;
|
|
221
|
-
border-left-color:#
|
|
222
|
-
border-right-color:#
|
|
221
|
+
border-left-color:#dde1e4;
|
|
222
|
+
border-right-color:#dde1e4;
|
|
223
223
|
border-bottom-color:transparent;
|
|
224
224
|
border-left-color:var(--iui-color-background-4);
|
|
225
225
|
border-right-color:var(--iui-color-background-4);
|
|
@@ -229,8 +229,8 @@
|
|
|
229
229
|
transform:rotate(90deg);
|
|
230
230
|
}
|
|
231
231
|
.iui-table-body .iui-row.iui-row-expanded + .iui-expanded-content{
|
|
232
|
-
border-left-color:#
|
|
233
|
-
border-right-color:#
|
|
232
|
+
border-left-color:#dde1e4;
|
|
233
|
+
border-right-color:#dde1e4;
|
|
234
234
|
border-left-color:var(--iui-color-background-4);
|
|
235
235
|
border-right-color:var(--iui-color-background-4);
|
|
236
236
|
}
|
|
@@ -263,31 +263,31 @@
|
|
|
263
263
|
border-bottom-color:transparent;
|
|
264
264
|
}
|
|
265
265
|
.iui-table-body .iui-row.iui-selected{
|
|
266
|
-
border-color:#
|
|
267
|
-
background:rgba(0,
|
|
266
|
+
border-color:#008ae0;
|
|
267
|
+
background:rgba(0, 138, 224, 0.1);
|
|
268
268
|
border-color:var(--iui-color-foreground-primary);
|
|
269
|
-
background:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-
|
|
269
|
+
background:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
270
270
|
}
|
|
271
271
|
.iui-table-body .iui-row.iui-selected + .iui-selected{
|
|
272
272
|
border-bottom-color:transparent;
|
|
273
|
-
border-top-color:rgba(0,
|
|
273
|
+
border-top-color:rgba(0, 138, 224, 0.4);
|
|
274
274
|
border-top-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
275
275
|
}
|
|
276
276
|
.iui-table-body .iui-row.iui-selected:last-child{
|
|
277
|
-
border-bottom-color:#
|
|
277
|
+
border-bottom-color:#008ae0;
|
|
278
278
|
border-bottom-color:var(--iui-color-foreground-primary);
|
|
279
279
|
}
|
|
280
280
|
.iui-table-body .iui-row.iui-selected + :not(.iui-selected),
|
|
281
281
|
.iui-table-body .iui-row.iui-selected + .iui-expanded-content + :not(.iui-selected){
|
|
282
|
-
border-top-color:#
|
|
282
|
+
border-top-color:#008ae0;
|
|
283
283
|
border-top-color:var(--iui-color-foreground-primary);
|
|
284
284
|
}
|
|
285
285
|
.iui-table-body .iui-row.iui-selected + .iui-expanded-content{
|
|
286
|
-
border-color:transparent #
|
|
286
|
+
border-color:transparent #008ae0;
|
|
287
287
|
border-color:transparent var(--iui-color-foreground-primary);
|
|
288
288
|
}
|
|
289
289
|
.iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
|
|
290
|
-
border-bottom-color:#
|
|
290
|
+
border-bottom-color:#008ae0;
|
|
291
291
|
}
|
|
292
292
|
.iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
|
|
293
293
|
border-bottom-color:var(--iui-color-foreground-primary);
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
position:absolute;
|
|
301
301
|
left:0;
|
|
302
302
|
font-size:24px;
|
|
303
|
-
color:#
|
|
303
|
+
color:#53a21a;
|
|
304
304
|
color:var(--iui-color-foreground-positive);
|
|
305
305
|
}
|
|
306
306
|
.iui-table-body .iui-row.iui-disabled, .iui-table-body .iui-row.iui-disabled + .iui-expanded-content{
|
|
@@ -321,62 +321,62 @@
|
|
|
321
321
|
}
|
|
322
322
|
.iui-table-body .iui-row.iui-positive,
|
|
323
323
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content{
|
|
324
|
-
box-shadow:inset 2px 0 0 0 #
|
|
324
|
+
box-shadow:inset 2px 0 0 0 #53a21a;
|
|
325
325
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-positive);
|
|
326
326
|
}
|
|
327
327
|
.iui-table-body .iui-row.iui-positive::-moz-selection, .iui-table-body .iui-row.iui-positive *::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::-moz-selection{
|
|
328
|
-
background-color:rgba(83, 162, 26, 0.
|
|
329
|
-
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-
|
|
328
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
329
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
330
330
|
}
|
|
331
331
|
.iui-table-body .iui-row.iui-positive::selection,
|
|
332
332
|
.iui-table-body .iui-row.iui-positive *::selection,
|
|
333
333
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content::selection,
|
|
334
334
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content *::selection{
|
|
335
|
-
background-color:rgba(83, 162, 26, 0.
|
|
336
|
-
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-
|
|
335
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
336
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
337
337
|
}
|
|
338
338
|
.iui-table-body .iui-row.iui-positive .iui-cell-end-icon svg{
|
|
339
|
-
fill:#
|
|
339
|
+
fill:#53a21a;
|
|
340
340
|
fill:var(--iui-icons-color-positive);
|
|
341
341
|
}
|
|
342
342
|
.iui-table-body .iui-row.iui-warning,
|
|
343
343
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content{
|
|
344
|
-
box-shadow:inset 2px 0 0 0 #
|
|
344
|
+
box-shadow:inset 2px 0 0 0 #f18d13;
|
|
345
345
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-warning);
|
|
346
346
|
}
|
|
347
347
|
.iui-table-body .iui-row.iui-warning::-moz-selection, .iui-table-body .iui-row.iui-warning *::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::-moz-selection{
|
|
348
|
-
background-color:rgba(241,
|
|
349
|
-
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-
|
|
348
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
349
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
350
350
|
}
|
|
351
351
|
.iui-table-body .iui-row.iui-warning::selection,
|
|
352
352
|
.iui-table-body .iui-row.iui-warning *::selection,
|
|
353
353
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content::selection,
|
|
354
354
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content *::selection{
|
|
355
|
-
background-color:rgba(241,
|
|
356
|
-
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-
|
|
355
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
356
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
357
357
|
}
|
|
358
358
|
.iui-table-body .iui-row.iui-warning .iui-cell-end-icon svg{
|
|
359
|
-
fill:#
|
|
359
|
+
fill:#f18d13;
|
|
360
360
|
fill:var(--iui-icons-color-warning);
|
|
361
361
|
}
|
|
362
362
|
.iui-table-body .iui-row.iui-negative,
|
|
363
363
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content{
|
|
364
|
-
box-shadow:inset 2px 0 0 0 #
|
|
364
|
+
box-shadow:inset 2px 0 0 0 #d10a0a;
|
|
365
365
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-negative);
|
|
366
366
|
}
|
|
367
367
|
.iui-table-body .iui-row.iui-negative::-moz-selection, .iui-table-body .iui-row.iui-negative *::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::-moz-selection{
|
|
368
|
-
background-color:rgba(
|
|
369
|
-
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-
|
|
368
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
369
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
370
370
|
}
|
|
371
371
|
.iui-table-body .iui-row.iui-negative::selection,
|
|
372
372
|
.iui-table-body .iui-row.iui-negative *::selection,
|
|
373
373
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content::selection,
|
|
374
374
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content *::selection{
|
|
375
|
-
background-color:rgba(
|
|
376
|
-
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-
|
|
375
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
376
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
377
377
|
}
|
|
378
378
|
.iui-table-body .iui-row.iui-negative .iui-cell-end-icon svg{
|
|
379
|
-
fill:#
|
|
379
|
+
fill:#d10a0a;
|
|
380
380
|
fill:var(--iui-icons-color-negative);
|
|
381
381
|
}
|
|
382
382
|
.iui-table-body > .iui-table-empty{
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
-ms-grid-row-align:center;
|
|
391
391
|
align-self:center;
|
|
392
392
|
color:rgba(0, 0, 0, 0.4);
|
|
393
|
-
background-color
|
|
393
|
+
background-color:white;
|
|
394
394
|
color:var(--iui-text-color-muted);
|
|
395
395
|
background-color:var(--iui-color-background-1);
|
|
396
396
|
}
|
|
@@ -424,49 +424,49 @@
|
|
|
424
424
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6));
|
|
425
425
|
}
|
|
426
426
|
.iui-cell.iui-positive::-moz-selection, .iui-cell.iui-positive *::-moz-selection{
|
|
427
|
-
background-color:rgba(83, 162, 26, 0.
|
|
428
|
-
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-
|
|
427
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
428
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
429
429
|
}
|
|
430
430
|
.iui-cell.iui-positive::selection,
|
|
431
431
|
.iui-cell.iui-positive *::selection{
|
|
432
|
-
background-color:rgba(83, 162, 26, 0.
|
|
433
|
-
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-
|
|
432
|
+
background-color:rgba(83, 162, 26, 0.2);
|
|
433
|
+
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
434
434
|
}
|
|
435
435
|
.iui-cell.iui-warning{
|
|
436
|
-
background-color:rgba(241,
|
|
436
|
+
background-color:rgba(241, 141, 19, 0.1);
|
|
437
437
|
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6));
|
|
438
438
|
}
|
|
439
439
|
.iui-cell.iui-warning::-moz-selection, .iui-cell.iui-warning *::-moz-selection{
|
|
440
|
-
background-color:rgba(241,
|
|
441
|
-
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-
|
|
440
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
441
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
442
442
|
}
|
|
443
443
|
.iui-cell.iui-warning::selection,
|
|
444
444
|
.iui-cell.iui-warning *::selection{
|
|
445
|
-
background-color:rgba(241,
|
|
446
|
-
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-
|
|
445
|
+
background-color:rgba(241, 141, 19, 0.2);
|
|
446
|
+
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
447
447
|
}
|
|
448
448
|
.iui-cell.iui-negative{
|
|
449
|
-
background-color:rgba(
|
|
449
|
+
background-color:rgba(209, 10, 10, 0.1);
|
|
450
450
|
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6));
|
|
451
451
|
}
|
|
452
452
|
.iui-cell.iui-negative::-moz-selection, .iui-cell.iui-negative *::-moz-selection{
|
|
453
|
-
background-color:rgba(
|
|
454
|
-
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-
|
|
453
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
454
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
455
455
|
}
|
|
456
456
|
.iui-cell.iui-negative::selection,
|
|
457
457
|
.iui-cell.iui-negative *::selection{
|
|
458
|
-
background-color:rgba(
|
|
459
|
-
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-
|
|
458
|
+
background-color:rgba(209, 10, 10, 0.2);
|
|
459
|
+
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
460
460
|
}
|
|
461
461
|
.iui-cell[contenteditable]{
|
|
462
462
|
outline-offset:-1px;
|
|
463
463
|
}
|
|
464
464
|
.iui-cell[contenteditable]:focus, .iui-cell[contenteditable]:hover{
|
|
465
|
-
outline:1px solid #
|
|
465
|
+
outline:1px solid #008ae0;
|
|
466
466
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
467
467
|
}
|
|
468
468
|
.iui-cell[contenteditable]:focus{
|
|
469
|
-
background-color
|
|
469
|
+
background-color:white;
|
|
470
470
|
background-color:var(--iui-color-background-1);
|
|
471
471
|
}
|
|
472
472
|
|
|
@@ -484,7 +484,7 @@
|
|
|
484
484
|
-moz-user-select:none;
|
|
485
485
|
-ms-user-select:none;
|
|
486
486
|
user-select:none;
|
|
487
|
-
background-color:#
|
|
487
|
+
background-color:#edeff2;
|
|
488
488
|
background-color:var(--iui-color-background-3);
|
|
489
489
|
}
|
|
490
490
|
.iui-paginator > .iui-left,
|
|
@@ -589,8 +589,8 @@
|
|
|
589
589
|
}
|
|
590
590
|
.iui-paginator-page-button[disabled], .iui-paginator-page-button:disabled{
|
|
591
591
|
cursor:not-allowed;
|
|
592
|
-
background:#
|
|
593
|
-
border-color:#
|
|
592
|
+
background:#edeff2;
|
|
593
|
+
border-color:#edeff2;
|
|
594
594
|
color:rgba(0, 0, 0, 0.2);
|
|
595
595
|
background:var(--iui-color-background-disabled);
|
|
596
596
|
border-color:var(--iui-color-background-disabled);
|
|
@@ -616,16 +616,16 @@
|
|
|
616
616
|
border-color:transparent;
|
|
617
617
|
}
|
|
618
618
|
.iui-paginator-page-button.iui-active{
|
|
619
|
-
background-color:rgba(0,
|
|
620
|
-
color:#
|
|
619
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
620
|
+
color:#008ae0;
|
|
621
621
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
622
622
|
color:var(--iui-color-foreground-primary);
|
|
623
623
|
border-color:transparent;
|
|
624
624
|
}
|
|
625
625
|
.iui-paginator-page-button[disabled], .iui-paginator-page-button:disabled{
|
|
626
626
|
cursor:not-allowed;
|
|
627
|
-
background:#
|
|
628
|
-
border-color:#
|
|
627
|
+
background:#edeff2;
|
|
628
|
+
border-color:#edeff2;
|
|
629
629
|
color:rgba(0, 0, 0, 0.2);
|
|
630
630
|
background:var(--iui-color-background-disabled);
|
|
631
631
|
border-color:var(--iui-color-background-disabled);
|
|
@@ -647,20 +647,24 @@
|
|
|
647
647
|
}
|
|
648
648
|
|
|
649
649
|
.iui-column-filter{
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
background-color:var(--iui-color-background-1);
|
|
650
|
+
--iui-surface-background-color:var(--iui-color-background-1);
|
|
651
|
+
--iui-surface-border-radius:0;
|
|
652
|
+
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
653
|
+
background-color:var(--iui-surface-background-color);
|
|
654
|
+
border-radius:var(--iui-surface-border-radius);
|
|
655
|
+
box-shadow:var(--iui-surface-elevation);
|
|
656
|
+
box-sizing:border-box;
|
|
658
657
|
color:var(--iui-text-color);
|
|
659
658
|
padding:11px 12px;
|
|
660
659
|
display:inline-flex;
|
|
661
660
|
flex-direction:column;
|
|
662
661
|
align-items:flex-end;
|
|
663
662
|
}
|
|
663
|
+
@media (forced-colors: active){
|
|
664
|
+
.iui-column-filter{
|
|
665
|
+
border:1px solid transparent;
|
|
666
|
+
}
|
|
667
|
+
}
|
|
664
668
|
.iui-column-filter > .iui-input-container:not(.iui-inline-label){
|
|
665
669
|
width:100%;
|
|
666
670
|
}
|
package/css/tabs.css
CHANGED
|
@@ -71,11 +71,11 @@
|
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
.iui-tabs .iui-tab.iui-active{
|
|
74
|
-
color:#
|
|
74
|
+
color:#008ae0;
|
|
75
75
|
color:var(--iui-color-foreground-primary);
|
|
76
76
|
}
|
|
77
77
|
.iui-tabs .iui-tab.iui-active .iui-tab-icon{
|
|
78
|
-
fill:#
|
|
78
|
+
fill:#008ae0;
|
|
79
79
|
fill:var(--iui-icons-color-primary);
|
|
80
80
|
}
|
|
81
81
|
.iui-tabs .iui-tab[disabled]{
|
|
@@ -124,11 +124,11 @@
|
|
|
124
124
|
outline-color:var(--iui-color-foreground-positive);
|
|
125
125
|
}
|
|
126
126
|
.iui-tabs.iui-green .iui-tab.iui-active{
|
|
127
|
-
color:#
|
|
127
|
+
color:#53a21a;
|
|
128
128
|
color:var(--iui-color-foreground-positive);
|
|
129
129
|
}
|
|
130
130
|
.iui-tabs.iui-green .iui-tab.iui-active .iui-tab-icon{
|
|
131
|
-
fill:#
|
|
131
|
+
fill:#53a21a;
|
|
132
132
|
fill:var(--iui-icons-color-positive);
|
|
133
133
|
}
|
|
134
134
|
.iui-tabs ~ .iui-tabs-content{
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
.iui-tabs.iui-default .iui-tab::after{
|
|
140
140
|
content:"";
|
|
141
141
|
position:absolute;
|
|
142
|
-
background-color:#
|
|
142
|
+
background-color:#008ae0;
|
|
143
143
|
background-color:var(--iui-color-foreground-primary);
|
|
144
144
|
}
|
|
145
145
|
@media (prefers-reduced-motion: no-preference){
|
|
@@ -148,15 +148,15 @@
|
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
.iui-tabs.iui-default.iui-green .iui-tab::after{
|
|
151
|
-
background-color:#
|
|
151
|
+
background-color:#53a21a;
|
|
152
152
|
background-color:var(--iui-color-foreground-positive);
|
|
153
153
|
}
|
|
154
154
|
.iui-tabs.iui-default .iui-tab{
|
|
155
155
|
height:38px;
|
|
156
156
|
padding:0 16px;
|
|
157
157
|
box-sizing:border-box;
|
|
158
|
-
background-color:#
|
|
159
|
-
border:1px solid #
|
|
158
|
+
background-color:#f9f9fb;
|
|
159
|
+
border:1px solid #c7ccd1;
|
|
160
160
|
background-color:var(--iui-color-background-2);
|
|
161
161
|
border:1px solid var(--iui-color-background-5);
|
|
162
162
|
}
|
|
@@ -165,15 +165,15 @@
|
|
|
165
165
|
left:0;
|
|
166
166
|
}
|
|
167
167
|
.iui-tabs.iui-default .iui-tab:hover{
|
|
168
|
-
background-color
|
|
168
|
+
background-color:white;
|
|
169
169
|
background-color:var(--iui-color-background-1);
|
|
170
170
|
}
|
|
171
171
|
.iui-tabs.iui-default .iui-tab.iui-active{
|
|
172
|
-
background-color
|
|
172
|
+
background-color:white;
|
|
173
173
|
background-color:var(--iui-color-background-1);
|
|
174
174
|
}
|
|
175
175
|
.iui-tabs.iui-default .iui-tab[disabled]{
|
|
176
|
-
background-color:#
|
|
176
|
+
background-color:#edeff2;
|
|
177
177
|
background-color:var(--iui-color-background-3);
|
|
178
178
|
}
|
|
179
179
|
.iui-tabs.iui-default .iui-tab:focus{
|
|
@@ -207,14 +207,14 @@
|
|
|
207
207
|
display:block;
|
|
208
208
|
}
|
|
209
209
|
.iui-tabs.iui-default.iui-green .iui-tab::after{
|
|
210
|
-
background-color:#
|
|
210
|
+
background-color:#53a21a;
|
|
211
211
|
background-color:var(--iui-color-foreground-positive);
|
|
212
212
|
}
|
|
213
213
|
.iui-tabs.iui-default ~ .iui-tabs-content{
|
|
214
214
|
padding-left:16px;
|
|
215
215
|
padding-right:16px;
|
|
216
|
-
background-color
|
|
217
|
-
border:1px solid #
|
|
216
|
+
background-color:white;
|
|
217
|
+
border:1px solid #c7ccd1;
|
|
218
218
|
background-color:var(--iui-color-background-1);
|
|
219
219
|
border:1px solid var(--iui-color-background-5);
|
|
220
220
|
}
|
|
@@ -228,16 +228,16 @@
|
|
|
228
228
|
right:0;
|
|
229
229
|
}
|
|
230
230
|
.iui-tabs.iui-borderless .iui-tab:hover{
|
|
231
|
-
background-color:rgba(0,
|
|
231
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
232
232
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
233
233
|
}
|
|
234
234
|
.iui-tabs.iui-borderless .iui-tab.iui-active{
|
|
235
|
-
background-color:rgba(0,
|
|
235
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
236
236
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
237
237
|
}
|
|
238
238
|
.iui-horizontal .iui-tabs.iui-borderless ~ .iui-tabs-content{
|
|
239
239
|
margin-top:-2px;
|
|
240
|
-
border-top:2px solid #
|
|
240
|
+
border-top:2px solid #dde1e4;
|
|
241
241
|
border-top:2px solid var(--iui-color-background-4);
|
|
242
242
|
}
|
|
243
243
|
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
margin-left:-2px;
|
|
246
246
|
padding-left:12px;
|
|
247
247
|
padding-right:12px;
|
|
248
|
-
border-left:2px solid #
|
|
248
|
+
border-left:2px solid #dde1e4;
|
|
249
249
|
border-left:2px solid var(--iui-color-background-4);
|
|
250
250
|
}
|
|
251
251
|
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
left:0;
|
|
289
289
|
}
|
|
290
290
|
.iui-tabs.iui-pill .iui-tab:hover{
|
|
291
|
-
background-color:rgba(0,
|
|
291
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
292
292
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
293
293
|
}
|
|
294
294
|
.iui-tabs.iui-pill .iui-tab[disabled]:hover{
|
|
@@ -298,11 +298,11 @@
|
|
|
298
298
|
.iui-tabs.iui-animated::after{
|
|
299
299
|
position:absolute;
|
|
300
300
|
content:" ";
|
|
301
|
-
background-color:#
|
|
301
|
+
background-color:#008ae0;
|
|
302
302
|
background-color:var(--iui-color-foreground-primary);
|
|
303
303
|
}
|
|
304
304
|
.iui-tabs.iui-animated.iui-green::after{
|
|
305
|
-
background-color:#
|
|
305
|
+
background-color:#53a21a;
|
|
306
306
|
background-color:var(--iui-color-foreground-positive);
|
|
307
307
|
}
|
|
308
308
|
.iui-horizontal .iui-tabs.iui-animated::after{
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
.iui-tabs.iui-not-animated .iui-tab::after{
|
|
333
333
|
content:"";
|
|
334
334
|
position:absolute;
|
|
335
|
-
background-color:#
|
|
335
|
+
background-color:#008ae0;
|
|
336
336
|
background-color:var(--iui-color-foreground-primary);
|
|
337
337
|
}
|
|
338
338
|
@media (prefers-reduced-motion: no-preference){
|
|
@@ -341,6 +341,6 @@
|
|
|
341
341
|
}
|
|
342
342
|
}
|
|
343
343
|
.iui-tabs.iui-not-animated.iui-green .iui-tab::after{
|
|
344
|
-
background-color:#
|
|
344
|
+
background-color:#53a21a;
|
|
345
345
|
background-color:var(--iui-color-foreground-positive);
|
|
346
346
|
}
|
package/css/tag.css
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
text-transform:none;
|
|
39
39
|
cursor:default;
|
|
40
40
|
border:1px solid rgba(0, 0, 0, 0.4);
|
|
41
|
-
background-color
|
|
41
|
+
background-color:white;
|
|
42
42
|
color:rgba(0, 0, 0, 0.8);
|
|
43
43
|
border:1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
44
44
|
background-color:var(--iui-color-background-1);
|
|
@@ -80,7 +80,7 @@ a.iui-tag{
|
|
|
80
80
|
border-radius:3px;
|
|
81
81
|
text-decoration:none;
|
|
82
82
|
cursor:pointer;
|
|
83
|
-
color:#
|
|
83
|
+
color:#008ae0;
|
|
84
84
|
color:var(--iui-color-foreground-primary);
|
|
85
85
|
}
|
|
86
86
|
a.iui-tag:focus-visible{
|
|
@@ -94,7 +94,7 @@ a.iui-tag:focus-visible{
|
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
a.iui-tag:hover{
|
|
97
|
-
color:#
|
|
97
|
+
color:#006bad;
|
|
98
98
|
color:var(--iui-color-foreground-primary-overlay);
|
|
99
99
|
text-decoration:underline;
|
|
100
100
|
}
|
|
@@ -132,6 +132,6 @@ a.iui-tag:hover{
|
|
|
132
132
|
.iui-tag-container.iui-visible{
|
|
133
133
|
border-radius:3px;
|
|
134
134
|
padding:3px 12px;
|
|
135
|
-
background-color:#
|
|
135
|
+
background-color:#f9f9fb;
|
|
136
136
|
background-color:var(--iui-color-background-2);
|
|
137
137
|
}
|
package/css/text.css
CHANGED
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
user-select:none;
|
|
76
76
|
color:transparent;
|
|
77
77
|
border-radius:3px;
|
|
78
|
-
background:linear-gradient(270deg, #
|
|
78
|
+
background:linear-gradient(270deg, #edeff2, #edeff2, #f9f9fb, #edeff2, #edeff2);
|
|
79
79
|
background-size:200% 100%;
|
|
80
80
|
background:linear-gradient(270deg, var(--iui-color-background-3), var(--iui-color-background-3), var(--iui-color-background-2), var(--iui-color-background-3), var(--iui-color-background-3));
|
|
81
81
|
background-size:200% 100%;
|