@itwin/itwinui-css 0.60.0 → 0.61.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/CHANGELOG.md +15 -0
- package/css/alert.css +2 -2
- package/css/all.css +321 -102
- package/css/anchor.css +1 -1
- package/css/badge.css +1 -1
- package/css/blockquote.css +1 -1
- package/css/breadcrumbs.css +5 -5
- package/css/button.css +13 -13
- package/css/carousel.css +2 -2
- package/css/code.css +3 -3
- package/css/color-picker.css +1 -1
- package/css/date-picker.css +6 -6
- package/css/dialog.css +30 -4
- package/css/expandable-block.css +1 -1
- package/css/fieldset.css +2 -2
- package/css/footer.css +1 -1
- package/css/global.css +1 -1
- package/css/header.css +3 -3
- package/css/inputs.css +201 -5
- package/css/keyboard.css +1 -1
- package/css/location-marker.css +1 -1
- package/css/menu.css +1 -1
- package/css/radio-tile.css +2 -2
- package/css/table.css +1 -1
- package/css/tabs.css +31 -27
- package/css/tag.css +4 -11
- package/css/text.css +1 -1
- package/css/time-picker.css +2 -2
- package/css/toast-notification.css +2 -2
- package/css/tooltip.css +1 -1
- package/package.json +1 -1
- package/scss/dialog/classes.scss +1 -0
- package/scss/dialog/dialog.scss +36 -3
- package/scss/inputs/classes.scss +20 -0
- package/scss/inputs/select.scss +66 -0
- package/scss/style/variables.scss +1 -1
- package/scss/tabs/borderless.scss +3 -4
- package/scss/tabs/classes.scss +4 -0
- package/scss/tabs/default.scss +3 -4
- package/scss/tabs/pill.scss +1 -1
- package/scss/tabs/tabs.scss +14 -13
- package/scss/tag/tag.scss +2 -2
package/css/anchor.css
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
8
8
|
color:var(--iui-color-foreground-primary);
|
|
9
9
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
10
|
-
border-radius:
|
|
10
|
+
border-radius:4px;
|
|
11
11
|
box-sizing:border-box;
|
|
12
12
|
cursor:pointer;
|
|
13
13
|
text-decoration:none;
|
package/css/badge.css
CHANGED
package/css/blockquote.css
CHANGED
package/css/breadcrumbs.css
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
51
51
|
color:var(--iui-color-foreground-primary);
|
|
52
52
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
53
|
-
border-radius:
|
|
53
|
+
border-radius:4px;
|
|
54
54
|
box-sizing:border-box;
|
|
55
55
|
cursor:pointer;
|
|
56
56
|
text-decoration:none;
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
61
61
|
color:var(--iui-color-foreground-primary);
|
|
62
62
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
63
|
-
border-radius:
|
|
63
|
+
border-radius:4px;
|
|
64
64
|
box-sizing:border-box;
|
|
65
65
|
cursor:pointer;
|
|
66
66
|
text-decoration:none;
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
71
71
|
color:var(--iui-color-foreground-primary);
|
|
72
72
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
73
|
-
border-radius:
|
|
73
|
+
border-radius:4px;
|
|
74
74
|
box-sizing:border-box;
|
|
75
75
|
cursor:pointer;
|
|
76
76
|
text-decoration:none;
|
|
@@ -265,7 +265,7 @@ a.iui-breadcrumbs-text{
|
|
|
265
265
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
266
266
|
color:var(--iui-color-foreground-primary);
|
|
267
267
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
268
|
-
border-radius:
|
|
268
|
+
border-radius:4px;
|
|
269
269
|
box-sizing:border-box;
|
|
270
270
|
cursor:pointer;
|
|
271
271
|
text-decoration:none;
|
|
@@ -327,7 +327,7 @@ a.iui-breadcrumbs-text:focus{
|
|
|
327
327
|
justify-content:center;
|
|
328
328
|
position:relative;
|
|
329
329
|
box-sizing:border-box;
|
|
330
|
-
border-radius:
|
|
330
|
+
border-radius:4px;
|
|
331
331
|
line-height:22px;
|
|
332
332
|
box-shadow:none;
|
|
333
333
|
font-size:14px;
|
package/css/button.css
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
justify-content:center;
|
|
17
17
|
position:relative;
|
|
18
18
|
box-sizing:border-box;
|
|
19
|
-
border-radius:
|
|
19
|
+
border-radius:4px;
|
|
20
20
|
line-height:22px;
|
|
21
21
|
box-shadow:none;
|
|
22
22
|
font-size:14px;
|
|
@@ -341,12 +341,12 @@
|
|
|
341
341
|
transition-duration:0.2s;
|
|
342
342
|
}
|
|
343
343
|
.iui-button-group > *:first-child .iui-input, .iui-button-group > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
344
|
-
border-top-left-radius:
|
|
345
|
-
border-bottom-left-radius:
|
|
344
|
+
border-top-left-radius:4px;
|
|
345
|
+
border-bottom-left-radius:4px;
|
|
346
346
|
}
|
|
347
347
|
.iui-button-group > *:last-child .iui-input, .iui-button-group > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
348
|
-
border-bottom-right-radius:
|
|
349
|
-
border-top-right-radius:
|
|
348
|
+
border-bottom-right-radius:4px;
|
|
349
|
+
border-top-right-radius:4px;
|
|
350
350
|
}
|
|
351
351
|
.iui-button-group > * + *{
|
|
352
352
|
margin-left:-1px;
|
|
@@ -385,12 +385,12 @@
|
|
|
385
385
|
transition-duration:0.2s;
|
|
386
386
|
}
|
|
387
387
|
.iui-button-group-vertical > *:first-child .iui-input, .iui-button-group-vertical > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
388
|
-
border-top-left-radius:
|
|
389
|
-
border-top-right-radius:
|
|
388
|
+
border-top-left-radius:4px;
|
|
389
|
+
border-top-right-radius:4px;
|
|
390
390
|
}
|
|
391
391
|
.iui-button-group-vertical > *:last-child .iui-input, .iui-button-group-vertical > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
392
|
-
border-bottom-right-radius:
|
|
393
|
-
border-bottom-left-radius:
|
|
392
|
+
border-bottom-right-radius:4px;
|
|
393
|
+
border-bottom-left-radius:4px;
|
|
394
394
|
}
|
|
395
395
|
.iui-button-group-vertical > * + *{
|
|
396
396
|
margin-top:-1px;
|
|
@@ -431,12 +431,12 @@
|
|
|
431
431
|
transition-duration:0.2s;
|
|
432
432
|
}
|
|
433
433
|
.iui-button-split-menu > *:first-child .iui-input, .iui-button-split-menu > *:first-child .iui-button:where(:not(.iui-borderless)){
|
|
434
|
-
border-top-left-radius:
|
|
435
|
-
border-bottom-left-radius:
|
|
434
|
+
border-top-left-radius:4px;
|
|
435
|
+
border-bottom-left-radius:4px;
|
|
436
436
|
}
|
|
437
437
|
.iui-button-split-menu > *:last-child .iui-input, .iui-button-split-menu > *:last-child .iui-button:where(:not(.iui-borderless)){
|
|
438
|
-
border-bottom-right-radius:
|
|
439
|
-
border-top-right-radius:
|
|
438
|
+
border-bottom-right-radius:4px;
|
|
439
|
+
border-top-right-radius:4px;
|
|
440
440
|
}
|
|
441
441
|
.iui-button-split-menu > * + *{
|
|
442
442
|
margin-left:-1px;
|
package/css/carousel.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
5
|
.iui-carousel{
|
|
6
6
|
overflow:hidden;
|
|
7
|
-
border-radius:
|
|
7
|
+
border-radius:4px;
|
|
8
8
|
}
|
|
9
9
|
.iui-carousel:focus-visible{
|
|
10
10
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
vertical-align:baseline;
|
|
65
65
|
flex:2;
|
|
66
66
|
max-width:256px;
|
|
67
|
-
border-radius:
|
|
67
|
+
border-radius:4px;
|
|
68
68
|
white-space:nowrap;
|
|
69
69
|
overflow-x:auto;
|
|
70
70
|
overflow-x:overlay;
|
package/css/code.css
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
font-family:ui-monospace, Menlo, "Segoe UI Mono", Consolas, "Roboto Mono", "Courier New", monospace;
|
|
12
12
|
font-size:12px;
|
|
13
13
|
padding:0 4px;
|
|
14
|
-
border-radius:
|
|
14
|
+
border-radius:4px;
|
|
15
15
|
-webkit-user-select:all;
|
|
16
16
|
-moz-user-select:all;
|
|
17
17
|
user-select:all;
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
.iui-codeblock > .iui-title-bar{
|
|
32
32
|
display:flex;
|
|
33
33
|
align-items:center;
|
|
34
|
-
border-radius:
|
|
34
|
+
border-radius:4px 4px 0 0;
|
|
35
35
|
background-color:#edeff2;
|
|
36
36
|
background-color:var(--iui-color-background-3);
|
|
37
37
|
}
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
margin:0;
|
|
49
49
|
overflow-x:auto;
|
|
50
50
|
overflow-y:auto;
|
|
51
|
-
border-radius:0 0
|
|
51
|
+
border-radius:0 0 4px 4px;
|
|
52
52
|
white-space:normal;
|
|
53
53
|
border:1px solid #edeff2;
|
|
54
54
|
border:1px solid var(--iui-color-background-3);
|
package/css/color-picker.css
CHANGED
package/css/date-picker.css
CHANGED
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
text-align:center;
|
|
87
87
|
width:40px;
|
|
88
88
|
height:36px;
|
|
89
|
-
border-radius:
|
|
89
|
+
border-radius:4px;
|
|
90
90
|
font-variant-numeric:tabular-nums;
|
|
91
91
|
}
|
|
92
92
|
.iui-calendar-day:focus-visible, .iui-calendar-day-today:focus-visible{
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
text-align:center;
|
|
140
140
|
width:40px;
|
|
141
141
|
height:36px;
|
|
142
|
-
border-radius:
|
|
142
|
+
border-radius:4px;
|
|
143
143
|
font-variant-numeric:tabular-nums;
|
|
144
144
|
font-weight:600;
|
|
145
145
|
background-color:#008ae0;
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
text-align:center;
|
|
216
216
|
width:40px;
|
|
217
217
|
height:36px;
|
|
218
|
-
border-radius:
|
|
218
|
+
border-radius:4px;
|
|
219
219
|
font-variant-numeric:tabular-nums;
|
|
220
220
|
color:rgba(0, 0, 0, 0.4);
|
|
221
221
|
color:var(--iui-text-color-muted);
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
text-align:center;
|
|
271
271
|
width:40px;
|
|
272
272
|
height:36px;
|
|
273
|
-
border-radius:
|
|
273
|
+
border-radius:4px;
|
|
274
274
|
font-variant-numeric:tabular-nums;
|
|
275
275
|
font-weight:600;
|
|
276
276
|
background-color:#008ae0;
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
text-align:center;
|
|
349
349
|
width:40px;
|
|
350
350
|
height:36px;
|
|
351
|
-
border-radius:
|
|
351
|
+
border-radius:4px;
|
|
352
352
|
font-variant-numeric:tabular-nums;
|
|
353
353
|
font-weight:600;
|
|
354
354
|
background-color:#008ae0;
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
text-align:center;
|
|
426
426
|
width:40px;
|
|
427
427
|
height:36px;
|
|
428
|
-
border-radius:
|
|
428
|
+
border-radius:4px;
|
|
429
429
|
font-variant-numeric:tabular-nums;
|
|
430
430
|
border-radius:0;
|
|
431
431
|
background-color:rgba(0, 138, 224, 0.2);
|
package/css/dialog.css
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
.iui-dialog{
|
|
17
17
|
z-index:999;
|
|
18
18
|
isolation:isolate;
|
|
19
|
-
border-radius:
|
|
19
|
+
border-radius:4px;
|
|
20
20
|
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
21
21
|
box-sizing:border-box;
|
|
22
22
|
position:fixed;
|
|
@@ -44,13 +44,39 @@
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.iui-dialog-default{
|
|
47
|
-
left:50%;
|
|
48
|
-
top:33%;
|
|
49
|
-
transform:translate(-50%, -33%);
|
|
50
47
|
max-width:max(50%, 380px);
|
|
51
48
|
min-width:380px;
|
|
52
49
|
max-height:100vh;
|
|
53
50
|
}
|
|
51
|
+
.iui-dialog-default:not([data-iui-placement]){
|
|
52
|
+
left:50%;
|
|
53
|
+
top:33%;
|
|
54
|
+
transform:translate(-50%, -33%);
|
|
55
|
+
}
|
|
56
|
+
.iui-dialog-default[data-iui-placement=top-left]{
|
|
57
|
+
top:0;
|
|
58
|
+
left:0;
|
|
59
|
+
margin-left:11px;
|
|
60
|
+
margin-top:16px;
|
|
61
|
+
}
|
|
62
|
+
.iui-dialog-default[data-iui-placement=top-right]{
|
|
63
|
+
top:0;
|
|
64
|
+
right:0;
|
|
65
|
+
margin-right:11px;
|
|
66
|
+
margin-top:16px;
|
|
67
|
+
}
|
|
68
|
+
.iui-dialog-default[data-iui-placement=bottom-left]{
|
|
69
|
+
bottom:0;
|
|
70
|
+
left:0;
|
|
71
|
+
margin-left:11px;
|
|
72
|
+
margin-bottom:16px;
|
|
73
|
+
}
|
|
74
|
+
.iui-dialog-default[data-iui-placement=bottom-right]{
|
|
75
|
+
bottom:0;
|
|
76
|
+
right:0;
|
|
77
|
+
margin-right:11px;
|
|
78
|
+
margin-bottom:16px;
|
|
79
|
+
}
|
|
54
80
|
|
|
55
81
|
.iui-dialog-full-page{
|
|
56
82
|
border-radius:0;
|
package/css/expandable-block.css
CHANGED
package/css/fieldset.css
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
border:none;
|
|
9
9
|
vertical-align:baseline;
|
|
10
10
|
padding:11px 12px;
|
|
11
|
-
border-radius:
|
|
11
|
+
border-radius:4px;
|
|
12
12
|
border:1px solid #c7ccd1;
|
|
13
13
|
background-color:white;
|
|
14
14
|
border:1px solid var(--iui-color-background-border);
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
.iui-fieldset legend{
|
|
18
18
|
font-size:16px;
|
|
19
19
|
padding:1.5px 8px;
|
|
20
|
-
border-radius:
|
|
20
|
+
border-radius:4px;
|
|
21
21
|
-webkit-user-select:none;
|
|
22
22
|
-moz-user-select:none;
|
|
23
23
|
-ms-user-select:none;
|
package/css/footer.css
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
46
46
|
color:var(--iui-color-foreground-primary);
|
|
47
47
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
48
|
-
border-radius:
|
|
48
|
+
border-radius:4px;
|
|
49
49
|
box-sizing:border-box;
|
|
50
50
|
cursor:pointer;
|
|
51
51
|
text-decoration:none;
|
package/css/global.css
CHANGED
|
@@ -587,7 +587,7 @@ html.iui-theme-dark-hc{
|
|
|
587
587
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
588
588
|
color:var(--iui-color-foreground-primary);
|
|
589
589
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
590
|
-
border-radius:
|
|
590
|
+
border-radius:4px;
|
|
591
591
|
box-sizing:border-box;
|
|
592
592
|
cursor:pointer;
|
|
593
593
|
text-decoration:none;
|
package/css/header.css
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
.iui-page-header .iui-header-button-icon{
|
|
40
40
|
width:24px;
|
|
41
41
|
height:24px;
|
|
42
|
-
border-radius:
|
|
42
|
+
border-radius:4px;
|
|
43
43
|
}
|
|
44
44
|
@media (prefers-reduced-motion: no-preference){
|
|
45
45
|
.iui-page-header .iui-header-button-icon{
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
padding:4px;
|
|
97
97
|
width:16px;
|
|
98
98
|
height:16px;
|
|
99
|
-
border-radius:
|
|
99
|
+
border-radius:4px;
|
|
100
100
|
background-color:#edeff2;
|
|
101
101
|
fill:rgba(0, 0, 0, 0.4);
|
|
102
102
|
background-color:var(--iui-color-background-3);
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
padding:4px;
|
|
230
230
|
width:16px;
|
|
231
231
|
height:16px;
|
|
232
|
-
border-radius:
|
|
232
|
+
border-radius:4px;
|
|
233
233
|
background-color:#edeff2;
|
|
234
234
|
fill:rgba(0, 0, 0, 0.4);
|
|
235
235
|
background-color:var(--iui-color-background-3);
|
package/css/inputs.css
CHANGED
|
@@ -465,7 +465,7 @@ label.iui-input-label.iui-disabled{
|
|
|
465
465
|
font-size:14px;
|
|
466
466
|
font-weight:400;
|
|
467
467
|
line-height:22px;
|
|
468
|
-
border-radius:
|
|
468
|
+
border-radius:4px;
|
|
469
469
|
-webkit-appearance:none;
|
|
470
470
|
-moz-appearance:none;
|
|
471
471
|
appearance:none;
|
|
@@ -562,7 +562,7 @@ label.iui-input-label.iui-disabled{
|
|
|
562
562
|
.iui-select-button{
|
|
563
563
|
width:100%;
|
|
564
564
|
margin:0;
|
|
565
|
-
border-radius:
|
|
565
|
+
border-radius:4px;
|
|
566
566
|
box-sizing:border-box;
|
|
567
567
|
padding:7px 12px;
|
|
568
568
|
min-height:38px;
|
|
@@ -632,6 +632,202 @@ label.iui-input-label.iui-disabled{
|
|
|
632
632
|
color:var(--iui-text-color-placeholder);
|
|
633
633
|
}
|
|
634
634
|
|
|
635
|
+
.iui-select-tag-container{
|
|
636
|
+
position:absolute;
|
|
637
|
+
inset:0 40px 0 12px;
|
|
638
|
+
height:100%;
|
|
639
|
+
display:flex;
|
|
640
|
+
align-items:center;
|
|
641
|
+
gap:4px;
|
|
642
|
+
overflow:hidden;
|
|
643
|
+
}
|
|
644
|
+
.iui-select-tag-container > * + *{
|
|
645
|
+
margin-left:4px;
|
|
646
|
+
}
|
|
647
|
+
@supports (gap: 4px){
|
|
648
|
+
.iui-select-tag-container > * + *{
|
|
649
|
+
margin-left:0;
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.iui-select-tag{
|
|
654
|
+
-webkit-user-select:all;
|
|
655
|
+
-moz-user-select:all;
|
|
656
|
+
user-select:all;
|
|
657
|
+
text-transform:lowercase;
|
|
658
|
+
display:inline-flex;
|
|
659
|
+
height:33px;
|
|
660
|
+
margin-top:3px;
|
|
661
|
+
margin-bottom:3px;
|
|
662
|
+
border-radius:9999px;
|
|
663
|
+
box-sizing:border-box;
|
|
664
|
+
padding:0 2px;
|
|
665
|
+
align-items:center;
|
|
666
|
+
transition:border-color 0.2s ease-out;
|
|
667
|
+
font-size:14px;
|
|
668
|
+
text-transform:none;
|
|
669
|
+
cursor:default;
|
|
670
|
+
-webkit-tap-highlight-color:transparent;
|
|
671
|
+
border:1px solid rgba(0, 0, 0, 0.4);
|
|
672
|
+
background-color:white;
|
|
673
|
+
color:rgba(0, 0, 0, 0.8);
|
|
674
|
+
border:1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
675
|
+
background-color:var(--iui-color-background-1);
|
|
676
|
+
color:var(--iui-text-color);
|
|
677
|
+
margin-top:0;
|
|
678
|
+
margin-bottom:0;
|
|
679
|
+
display:inline-flex;
|
|
680
|
+
align-items:center;
|
|
681
|
+
height:80%;
|
|
682
|
+
max-height:33px;
|
|
683
|
+
}
|
|
684
|
+
.iui-select-tag:hover{
|
|
685
|
+
border-color:black;
|
|
686
|
+
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.iui-select-tag-label{
|
|
690
|
+
margin:0;
|
|
691
|
+
padding:0;
|
|
692
|
+
border:none;
|
|
693
|
+
vertical-align:baseline;
|
|
694
|
+
font-size:14px;
|
|
695
|
+
font-weight:400;
|
|
696
|
+
line-height:22px;
|
|
697
|
+
white-space:nowrap;
|
|
698
|
+
text-overflow:ellipsis;
|
|
699
|
+
overflow:hidden;
|
|
700
|
+
margin:0 4px 0 8px;
|
|
701
|
+
display:inline-flex;
|
|
702
|
+
align-items:center;
|
|
703
|
+
}
|
|
704
|
+
.iui-select-tag-label:only-child{
|
|
705
|
+
margin:0 8px;
|
|
706
|
+
}
|
|
707
|
+
.iui-select-button.iui-small .iui-select-tag-label{
|
|
708
|
+
font-size:12px;
|
|
709
|
+
line-height:16px;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.iui-select-tag-button{
|
|
713
|
+
--_iui-button-active-stripe-inset:initial;
|
|
714
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
715
|
+
margin:0;
|
|
716
|
+
padding:0;
|
|
717
|
+
border:none;
|
|
718
|
+
vertical-align:baseline;
|
|
719
|
+
font-family:inherit;
|
|
720
|
+
display:inline-flex;
|
|
721
|
+
align-items:center;
|
|
722
|
+
vertical-align:middle;
|
|
723
|
+
justify-content:center;
|
|
724
|
+
position:relative;
|
|
725
|
+
box-sizing:border-box;
|
|
726
|
+
border-radius:4px;
|
|
727
|
+
line-height:22px;
|
|
728
|
+
box-shadow:none;
|
|
729
|
+
font-size:14px;
|
|
730
|
+
font-weight:400;
|
|
731
|
+
text-decoration:none;
|
|
732
|
+
-webkit-user-select:none;
|
|
733
|
+
-moz-user-select:none;
|
|
734
|
+
-ms-user-select:none;
|
|
735
|
+
user-select:none;
|
|
736
|
+
cursor:pointer;
|
|
737
|
+
white-space:nowrap;
|
|
738
|
+
border:1px solid transparent;
|
|
739
|
+
color:rgba(0, 0, 0, 0.8);
|
|
740
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
741
|
+
color:var(--_iui-button-text-color);
|
|
742
|
+
border-color:transparent;
|
|
743
|
+
background-color:transparent;
|
|
744
|
+
padding:0 8px;
|
|
745
|
+
height:38px;
|
|
746
|
+
gap:8px;
|
|
747
|
+
border-radius:50%;
|
|
748
|
+
padding:0 4px;
|
|
749
|
+
height:100%;
|
|
750
|
+
aspect-ratio:1/1;
|
|
751
|
+
}
|
|
752
|
+
@media (prefers-reduced-motion: no-preference){
|
|
753
|
+
.iui-select-tag-button{
|
|
754
|
+
transition:color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
.iui-select-tag-button:hover{
|
|
758
|
+
--_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
759
|
+
text-decoration:none;
|
|
760
|
+
}
|
|
761
|
+
.iui-select-tag-button:focus-visible{
|
|
762
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
763
|
+
outline-offset:-1px;
|
|
764
|
+
}
|
|
765
|
+
@supports not selector(*:focus-visible){
|
|
766
|
+
.iui-select-tag-button:focus{
|
|
767
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
768
|
+
outline-offset:-1px;
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
.iui-select-tag-button[disabled], .iui-select-tag-button:disabled{
|
|
772
|
+
cursor:not-allowed;
|
|
773
|
+
background:#edeff2;
|
|
774
|
+
border-color:#edeff2;
|
|
775
|
+
color:rgba(0, 0, 0, 0.2);
|
|
776
|
+
background:var(--iui-color-background-disabled);
|
|
777
|
+
border-color:var(--iui-color-background-disabled);
|
|
778
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
779
|
+
}
|
|
780
|
+
.iui-select-tag-button > .iui-button-icon:only-child{
|
|
781
|
+
margin-left:3px;
|
|
782
|
+
margin-right:3px;
|
|
783
|
+
}
|
|
784
|
+
.iui-select-tag-button:hover{
|
|
785
|
+
background-color:rgba(0, 0, 0, 0.1);
|
|
786
|
+
border-color:transparent;
|
|
787
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
788
|
+
border-color:transparent;
|
|
789
|
+
}
|
|
790
|
+
.iui-select-tag-button.iui-active{
|
|
791
|
+
background-color:rgba(0, 138, 224, 0.1);
|
|
792
|
+
color:#008ae0;
|
|
793
|
+
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
794
|
+
color:var(--iui-color-foreground-primary);
|
|
795
|
+
border-color:transparent;
|
|
796
|
+
}
|
|
797
|
+
.iui-select-tag-button[disabled], .iui-select-tag-button:disabled{
|
|
798
|
+
cursor:not-allowed;
|
|
799
|
+
background:#edeff2;
|
|
800
|
+
border-color:#edeff2;
|
|
801
|
+
color:rgba(0, 0, 0, 0.2);
|
|
802
|
+
background:var(--iui-color-background-disabled);
|
|
803
|
+
border-color:var(--iui-color-background-disabled);
|
|
804
|
+
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
|
|
805
|
+
background-color:transparent;
|
|
806
|
+
border-color:transparent;
|
|
807
|
+
background-color:transparent;
|
|
808
|
+
border-color:transparent;
|
|
809
|
+
}
|
|
810
|
+
.iui-select-tag-button[disabled].iui-active, .iui-select-tag-button:disabled.iui-active{
|
|
811
|
+
background-color:rgba(0, 0, 0, 0.05);
|
|
812
|
+
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
|
|
813
|
+
}
|
|
814
|
+
.iui-select-button.iui-small .iui-select-tag-button{
|
|
815
|
+
font-size:12px;
|
|
816
|
+
line-height:16px;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.iui-select-tag-button-icon{
|
|
820
|
+
width:16px;
|
|
821
|
+
height:16px;
|
|
822
|
+
transition:fill 0.2s ease-out;
|
|
823
|
+
fill:currentColor;
|
|
824
|
+
flex-shrink:0;
|
|
825
|
+
}
|
|
826
|
+
.iui-select-button.iui-small .iui-select-tag-button-icon{
|
|
827
|
+
width:12px;
|
|
828
|
+
height:12px;
|
|
829
|
+
}
|
|
830
|
+
|
|
635
831
|
.iui-textarea{
|
|
636
832
|
margin:0;
|
|
637
833
|
padding:0;
|
|
@@ -642,7 +838,7 @@ label.iui-input-label.iui-disabled{
|
|
|
642
838
|
font-size:14px;
|
|
643
839
|
font-weight:400;
|
|
644
840
|
line-height:22px;
|
|
645
|
-
border-radius:
|
|
841
|
+
border-radius:4px;
|
|
646
842
|
-webkit-appearance:none;
|
|
647
843
|
-moz-appearance:none;
|
|
648
844
|
appearance:none;
|
|
@@ -834,7 +1030,7 @@ label.iui-input-label.iui-disabled{
|
|
|
834
1030
|
width:16px;
|
|
835
1031
|
height:16px;
|
|
836
1032
|
position:relative;
|
|
837
|
-
border-radius:
|
|
1033
|
+
border-radius:4px;
|
|
838
1034
|
background-color:var(--_iui-checkbox-background-color);
|
|
839
1035
|
flex-shrink:0;
|
|
840
1036
|
cursor:pointer;
|
|
@@ -992,7 +1188,7 @@ label.iui-input-label.iui-disabled{
|
|
|
992
1188
|
width:16px;
|
|
993
1189
|
height:16px;
|
|
994
1190
|
position:relative;
|
|
995
|
-
border-radius:
|
|
1191
|
+
border-radius:4px;
|
|
996
1192
|
background-color:var(--_iui-checkbox-background-color);
|
|
997
1193
|
flex-shrink:0;
|
|
998
1194
|
cursor:pointer;
|
package/css/keyboard.css
CHANGED
package/css/location-marker.css
CHANGED
package/css/menu.css
CHANGED
package/css/radio-tile.css
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
9
9
|
}
|
|
10
10
|
.iui-radio-tile:first-of-type > .iui-radio-tile-content{
|
|
11
|
-
border-radius:
|
|
11
|
+
border-radius:4px 0 0 4px;
|
|
12
12
|
}
|
|
13
13
|
.iui-radio-tile:last-of-type > .iui-radio-tile-content{
|
|
14
|
-
border-radius:0
|
|
14
|
+
border-radius:0 4px 4px 0;
|
|
15
15
|
}
|
|
16
16
|
.iui-radio-tile:not(:first-of-type) > .iui-radio-tile-content{
|
|
17
17
|
margin-left:-1px;
|