@itwin/itwinui-css 0.59.1 → 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 +945 -0
- package/LICENSE.md +9 -0
- package/README.md +1 -1
- package/css/alert.css +2 -2
- package/css/all.css +376 -198
- package/css/anchor.css +1 -1
- package/css/backdrop.css +24 -0
- 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 -6
- package/css/color-picker.css +1 -1
- package/css/date-picker.css +6 -6
- package/css/dialog.css +64 -97
- 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 +24 -55
- package/scss/backdrop/backdrop.scss +27 -0
- package/scss/backdrop/classes.scss +7 -0
- package/scss/backdrop/index.scss +3 -0
- package/scss/classes.scss +1 -0
- package/scss/code/codeblock.scss +0 -4
- package/scss/dialog/classes.scss +7 -6
- package/scss/dialog/dialog.scss +95 -125
- package/scss/index.scss +1 -0
- 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/src/index.scss +46 -0
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/backdrop.css
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
.iui-backdrop{
|
|
6
|
+
z-index:998;
|
|
7
|
+
isolation:isolate;
|
|
8
|
+
position:absolute;
|
|
9
|
+
top:0;
|
|
10
|
+
left:0;
|
|
11
|
+
width:100%;
|
|
12
|
+
height:100%;
|
|
13
|
+
background-color:rgba(0, 0, 0, 0.4);
|
|
14
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-4));
|
|
15
|
+
transition:visibility 0s linear, opacity 0.2s ease-out;
|
|
16
|
+
transition-delay:0.2s, 0s;
|
|
17
|
+
}
|
|
18
|
+
.iui-backdrop:not(.iui-backdrop-visible){
|
|
19
|
+
visibility:hidden;
|
|
20
|
+
opacity:0;
|
|
21
|
+
}
|
|
22
|
+
.iui-backdrop.iui-backdrop-visible{
|
|
23
|
+
transition-delay:0s;
|
|
24
|
+
}
|
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
|
}
|
|
@@ -44,14 +44,11 @@
|
|
|
44
44
|
.iui-codeblock > .iui-title-bar > .iui-button{
|
|
45
45
|
margin-left:auto;
|
|
46
46
|
}
|
|
47
|
-
.iui-codeblock .iui-button{
|
|
48
|
-
gap:0;
|
|
49
|
-
}
|
|
50
47
|
.iui-codeblock > .iui-codeblock-content{
|
|
51
48
|
margin:0;
|
|
52
49
|
overflow-x:auto;
|
|
53
50
|
overflow-y:auto;
|
|
54
|
-
border-radius:0 0
|
|
51
|
+
border-radius:0 0 4px 4px;
|
|
55
52
|
white-space:normal;
|
|
56
53
|
border:1px solid #edeff2;
|
|
57
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
|
@@ -2,115 +2,112 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
.iui-dialog-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
border:none;
|
|
9
|
-
vertical-align:baseline;
|
|
10
|
-
z-index:999;
|
|
11
|
-
isolation:isolate;
|
|
12
|
-
position:fixed;
|
|
5
|
+
.iui-dialog-wrapper{
|
|
6
|
+
position:relative;
|
|
7
|
+
overflow:hidden;
|
|
13
8
|
top:0;
|
|
14
9
|
left:0;
|
|
15
10
|
width:100%;
|
|
16
11
|
height:100%;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
visibility:hidden;
|
|
20
|
-
opacity:0;
|
|
21
|
-
transition:visibility 0s linear 0.2s, opacity 0.2s ease-out;
|
|
22
|
-
}
|
|
23
|
-
.iui-dialog-backdrop.iui-dialog-visible{
|
|
24
|
-
visibility:visible;
|
|
25
|
-
opacity:1;
|
|
26
|
-
transition-delay:0s;
|
|
27
|
-
}
|
|
28
|
-
.iui-dialog-backdrop.iui-dialog-backdrop-relative{
|
|
29
|
-
position:relative;
|
|
30
|
-
overflow:hidden;
|
|
12
|
+
pointer-events:none;
|
|
13
|
+
transform:translateX(0);
|
|
31
14
|
}
|
|
32
15
|
|
|
33
16
|
.iui-dialog{
|
|
34
|
-
|
|
17
|
+
z-index:999;
|
|
18
|
+
isolation:isolate;
|
|
19
|
+
border-radius:4px;
|
|
35
20
|
box-shadow:0 9px 46px rgba(0, 0, 0, 0.25);
|
|
36
21
|
box-sizing:border-box;
|
|
37
|
-
position:
|
|
22
|
+
position:fixed;
|
|
38
23
|
padding:11px 16px;
|
|
39
24
|
box-sizing:border-box;
|
|
40
25
|
padding:11px 16px;
|
|
41
26
|
overflow:hidden;
|
|
42
|
-
|
|
27
|
+
pointer-events:auto;
|
|
28
|
+
background-color:#FFF;
|
|
43
29
|
background-color:var(--iui-color-background-1);
|
|
30
|
+
transition:visibility 0s linear, opacity 0.2s ease-out;
|
|
31
|
+
transition-delay:0.2s, 0s;
|
|
44
32
|
}
|
|
45
33
|
@media (forced-colors: active){
|
|
46
34
|
.iui-dialog{
|
|
47
35
|
border:1px solid;
|
|
48
36
|
}
|
|
49
37
|
}
|
|
38
|
+
.iui-dialog:not(.iui-dialog-visible){
|
|
39
|
+
visibility:hidden;
|
|
40
|
+
opacity:0;
|
|
41
|
+
}
|
|
42
|
+
.iui-dialog.iui-dialog-visible{
|
|
43
|
+
transition-delay:0s;
|
|
44
|
+
}
|
|
50
45
|
|
|
51
|
-
.iui-dialog-default
|
|
46
|
+
.iui-dialog-default{
|
|
47
|
+
max-width:max(50%, 380px);
|
|
48
|
+
min-width:380px;
|
|
49
|
+
max-height:100vh;
|
|
50
|
+
}
|
|
51
|
+
.iui-dialog-default:not([data-iui-placement]){
|
|
52
52
|
left:50%;
|
|
53
53
|
top:33%;
|
|
54
54
|
transform:translate(-50%, -33%);
|
|
55
|
-
max-width:50%;
|
|
56
|
-
min-width:380px;
|
|
57
|
-
max-height:100vh;
|
|
58
55
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
56
|
+
.iui-dialog-default[data-iui-placement=top-left]{
|
|
57
|
+
top:0;
|
|
58
|
+
left:0;
|
|
59
|
+
margin-left:11px;
|
|
60
|
+
margin-top:16px;
|
|
65
61
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
62
|
+
.iui-dialog-default[data-iui-placement=top-right]{
|
|
63
|
+
top:0;
|
|
64
|
+
right:0;
|
|
65
|
+
margin-right:11px;
|
|
66
|
+
margin-top:16px;
|
|
71
67
|
}
|
|
72
|
-
.iui-dialog-
|
|
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
|
+
}
|
|
80
|
+
|
|
81
|
+
.iui-dialog-full-page{
|
|
73
82
|
border-radius:0;
|
|
74
83
|
height:100vh;
|
|
84
|
+
height:100dvh;
|
|
75
85
|
width:100vw;
|
|
76
86
|
top:0;
|
|
77
87
|
left:0;
|
|
78
|
-
max-width:initial;
|
|
79
|
-
min-width:initial;
|
|
80
88
|
display:flex;
|
|
81
89
|
flex-direction:column;
|
|
82
90
|
will-change:transform;
|
|
83
91
|
}
|
|
92
|
+
.iui-dialog-full-page:not(.iui-dialog-visible){
|
|
93
|
+
transform:translateY(100%);
|
|
94
|
+
}
|
|
84
95
|
@media (prefers-reduced-motion: no-preference){
|
|
85
|
-
.iui-dialog-full-page
|
|
86
|
-
transform:translateY(100%);
|
|
96
|
+
.iui-dialog-full-page{
|
|
87
97
|
transition:visibility 0s linear 0.4s, opacity 0s linear 0.4s, transform 0.2s ease-in;
|
|
88
98
|
}
|
|
89
|
-
|
|
90
|
-
.iui-dialog-full-page.iui-dialog-visible .iui-dialog{
|
|
91
|
-
transform:translateY(0);
|
|
92
|
-
}
|
|
93
|
-
@media (prefers-reduced-motion: no-preference){
|
|
94
|
-
.iui-dialog-full-page.iui-dialog-visible .iui-dialog{
|
|
99
|
+
.iui-dialog-full-page.iui-dialog-visible{
|
|
95
100
|
transition:transform 0.4s ease-out;
|
|
96
101
|
}
|
|
97
102
|
}
|
|
98
103
|
|
|
99
104
|
.iui-dialog-draggable{
|
|
100
|
-
|
|
101
|
-
pointer-events:none;
|
|
102
|
-
z-index:998;
|
|
103
|
-
}
|
|
104
|
-
.iui-dialog-draggable .iui-dialog{
|
|
105
|
-
pointer-events:initial;
|
|
106
|
-
max-width:100vw;
|
|
105
|
+
max-width:100%;
|
|
107
106
|
max-height:100vh;
|
|
108
107
|
min-width:380px;
|
|
109
108
|
min-height:144px;
|
|
110
109
|
display:flex;
|
|
111
110
|
flex-direction:column;
|
|
112
|
-
padding:0;
|
|
113
|
-
border:1px solid #c7ccd1;
|
|
114
111
|
border:1px solid var(--iui-color-background-border);
|
|
115
112
|
}
|
|
116
113
|
|
|
@@ -130,21 +127,17 @@
|
|
|
130
127
|
box-sizing:border-box;
|
|
131
128
|
font-size:18px;
|
|
132
129
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
-moz-user-select:none;
|
|
136
|
-
-ms-user-select:none;
|
|
137
|
-
user-select:none;
|
|
130
|
+
|
|
131
|
+
.iui-dialog-title-bar-filled{
|
|
138
132
|
font-size:16px;
|
|
139
133
|
padding:6px 16px;
|
|
134
|
+
margin:-11px -16px 11px -16px;
|
|
140
135
|
cursor:-webkit-grab;
|
|
141
136
|
cursor:grab;
|
|
142
|
-
background-color:#edeff2;
|
|
143
|
-
border-bottom:1px solid #c7ccd1;
|
|
144
137
|
background-color:var(--iui-color-background-3);
|
|
145
138
|
border-bottom:1px solid var(--iui-color-background-border);
|
|
146
139
|
}
|
|
147
|
-
.iui-dialog-
|
|
140
|
+
.iui-dialog-title-bar-filled:active{
|
|
148
141
|
cursor:-webkit-grabbing;
|
|
149
142
|
cursor:grabbing;
|
|
150
143
|
}
|
|
@@ -156,46 +149,20 @@
|
|
|
156
149
|
overflow-y:auto;
|
|
157
150
|
overflow-y:overlay;
|
|
158
151
|
}
|
|
159
|
-
.iui-dialog-draggable .iui-dialog-content{
|
|
160
|
-
margin:0;
|
|
161
|
-
}
|
|
162
152
|
|
|
163
153
|
.iui-dialog-button-bar{
|
|
164
154
|
margin-top:11px;
|
|
165
155
|
display:flex;
|
|
166
156
|
align-items:center;
|
|
167
157
|
justify-content:flex-end;
|
|
168
|
-
|
|
169
|
-
.iui-dialog-draggable .iui-dialog-button-bar{
|
|
170
|
-
padding:0 16px 11px 16px;
|
|
158
|
+
gap:8px;
|
|
171
159
|
}
|
|
172
160
|
|
|
173
|
-
.iui-dialog-
|
|
174
|
-
margin-right:8px;
|
|
175
|
-
}
|
|
176
|
-
@supports ((-moz-column-gap: 8px) or (column-gap: 8px)){
|
|
177
|
-
.iui-dialog-button-bar{
|
|
178
|
-
-moz-column-gap:8px;
|
|
179
|
-
column-gap:8px;
|
|
180
|
-
}
|
|
181
|
-
.iui-dialog-button-bar > .iui-button:not(:last-child){
|
|
182
|
-
margin-right:0;
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.iui-dialog-animation-enter .iui-dialog-full-page .iui-dialog{
|
|
161
|
+
.iui-dialog-animation-enter{
|
|
187
162
|
transform:translateY(100%);
|
|
188
163
|
opacity:0;
|
|
189
164
|
}
|
|
190
|
-
.iui-dialog-animation-enter-active
|
|
165
|
+
.iui-dialog-animation-enter-active{
|
|
191
166
|
transform:translateY(0);
|
|
192
167
|
opacity:1;
|
|
193
|
-
}
|
|
194
|
-
.iui-dialog-animation-enter .iui-dialog-backdrop{
|
|
195
|
-
visibility:hidden;
|
|
196
|
-
opacity:0;
|
|
197
|
-
}
|
|
198
|
-
.iui-dialog-animation-enter-active .iui-dialog-backdrop{
|
|
199
|
-
visibility:visible;
|
|
200
|
-
opacity:1;
|
|
201
168
|
}
|
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);
|