@itwin/itwinui-css 0.53.3 → 0.55.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/css/alert.css +61 -43
- package/css/all.css +536 -161
- package/css/anchor.css +68 -0
- package/css/breadcrumbs.css +48 -5
- package/css/footer.css +48 -5
- package/css/global.css +60 -5
- package/css/header.css +3 -2
- package/css/menu.css +21 -0
- package/css/popover.css +2 -2
- package/css/skip-to-content.css +2 -1
- package/css/table.css +9 -9
- package/css/tag.css +94 -45
- package/css/tile.css +29 -17
- package/css/toast-notification.css +94 -27
- package/package.json +5 -3
- package/scss/alert/alert.scss +5 -25
- package/scss/anchor/anchor.scss +3 -0
- package/scss/anchor/classes.scss +7 -0
- package/scss/anchor/index.scss +3 -0
- package/scss/breadcrumbs/breadcrumbs.scss +2 -1
- package/scss/classes.scss +1 -0
- package/scss/footer/footer.scss +1 -0
- package/scss/header/header.scss +8 -1
- package/scss/index.scss +1 -0
- package/scss/menu/menu.scss +27 -0
- package/scss/popover/popover.scss +2 -2
- package/scss/skip-to-content/skip-to-content.scss +2 -1
- package/scss/style/anchor.scss +79 -0
- package/scss/style/global.scss +5 -0
- package/scss/style/mixins.scss +0 -17
- package/scss/table/table.scss +5 -5
- package/scss/tag/classes.scss +15 -1
- package/scss/tag/tag.scss +45 -46
- package/scss/tile/tile.scss +19 -13
- package/scss/toast-notification/categories.scss +3 -20
- package/scss/toast-notification/toast.scss +5 -6
package/css/anchor.css
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
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-anchor{
|
|
6
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
7
|
+
color:#008ae0;
|
|
8
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
9
|
+
color:var(--iui-color-foreground-primary);
|
|
10
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
11
|
+
border-radius:3px;
|
|
12
|
+
cursor:pointer;
|
|
13
|
+
text-decoration:none;
|
|
14
|
+
}
|
|
15
|
+
.iui-anchor:focus-visible{
|
|
16
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
17
|
+
outline-offset:1px;
|
|
18
|
+
}
|
|
19
|
+
@supports not selector(*:focus-visible){
|
|
20
|
+
.iui-anchor:focus{
|
|
21
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
22
|
+
outline-offset:1px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.iui-anchor:hover{
|
|
26
|
+
color:#006bad;
|
|
27
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
28
|
+
}
|
|
29
|
+
.iui-anchor-external::after{
|
|
30
|
+
content:"";
|
|
31
|
+
display:inline-block;
|
|
32
|
+
width:1.5ch;
|
|
33
|
+
height:1.5ch;
|
|
34
|
+
margin-left:0.5ch;
|
|
35
|
+
vertical-align:-0.1ch;
|
|
36
|
+
background-color:currentColor;
|
|
37
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
38
|
+
mask:var(--_iui-anchor-external-svg);
|
|
39
|
+
}
|
|
40
|
+
@media (forced-colors: active){
|
|
41
|
+
.iui-anchor-external::after{
|
|
42
|
+
background-color:LinkText;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
.iui-anchor:hover{
|
|
46
|
+
text-decoration:underline;
|
|
47
|
+
}
|
|
48
|
+
@media (prefers-contrast: more){
|
|
49
|
+
.iui-anchor{
|
|
50
|
+
text-decoration:underline;
|
|
51
|
+
}
|
|
52
|
+
.iui-anchor:hover{
|
|
53
|
+
text-decoration:none;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.iui-theme-light .iui-anchor, .iui-theme-dark .iui-anchor{
|
|
57
|
+
text-decoration:none;
|
|
58
|
+
}
|
|
59
|
+
.iui-theme-light .iui-anchor:hover, .iui-theme-dark .iui-anchor:hover{
|
|
60
|
+
text-decoration:underline;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.iui-theme-light-hc .iui-anchor, .iui-theme-dark-hc .iui-anchor{
|
|
64
|
+
text-decoration:underline;
|
|
65
|
+
}
|
|
66
|
+
.iui-theme-light-hc .iui-anchor:hover, .iui-theme-dark-hc .iui-anchor:hover{
|
|
67
|
+
text-decoration:none;
|
|
68
|
+
}
|
package/css/breadcrumbs.css
CHANGED
|
@@ -33,27 +33,70 @@
|
|
|
33
33
|
margin:0 12px;
|
|
34
34
|
}
|
|
35
35
|
.iui-breadcrumbs-item a{
|
|
36
|
-
|
|
37
|
-
text-decoration:none;
|
|
38
|
-
cursor:pointer;
|
|
36
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
39
37
|
color:#008ae0;
|
|
38
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
40
39
|
color:var(--iui-color-foreground-primary);
|
|
40
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
41
|
+
border-radius:3px;
|
|
42
|
+
cursor:pointer;
|
|
43
|
+
text-decoration:none;
|
|
41
44
|
}
|
|
42
45
|
.iui-breadcrumbs-item a:focus-visible{
|
|
43
46
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
44
|
-
outline-offset:
|
|
47
|
+
outline-offset:1px;
|
|
45
48
|
}
|
|
46
49
|
@supports not selector(*:focus-visible){
|
|
47
50
|
.iui-breadcrumbs-item a:focus{
|
|
48
51
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
49
|
-
outline-offset:
|
|
52
|
+
outline-offset:1px;
|
|
50
53
|
}
|
|
51
54
|
}
|
|
52
55
|
.iui-breadcrumbs-item a:hover{
|
|
53
56
|
color:#006bad;
|
|
54
57
|
color:var(--iui-color-foreground-primary-overlay);
|
|
58
|
+
}
|
|
59
|
+
.iui-breadcrumbs-item a-external::after{
|
|
60
|
+
content:"";
|
|
61
|
+
display:inline-block;
|
|
62
|
+
width:1.5ch;
|
|
63
|
+
height:1.5ch;
|
|
64
|
+
margin-left:0.5ch;
|
|
65
|
+
vertical-align:-0.1ch;
|
|
66
|
+
background-color:currentColor;
|
|
67
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
68
|
+
mask:var(--_iui-anchor-external-svg);
|
|
69
|
+
}
|
|
70
|
+
@media (forced-colors: active){
|
|
71
|
+
.iui-breadcrumbs-item a-external::after{
|
|
72
|
+
background-color:LinkText;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
.iui-breadcrumbs-item a:hover{
|
|
55
76
|
text-decoration:underline;
|
|
56
77
|
}
|
|
78
|
+
@media (prefers-contrast: more){
|
|
79
|
+
.iui-breadcrumbs-item a{
|
|
80
|
+
text-decoration:underline;
|
|
81
|
+
}
|
|
82
|
+
.iui-breadcrumbs-item a:hover{
|
|
83
|
+
text-decoration:none;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
.iui-theme-light .iui-breadcrumbs-item a, .iui-theme-dark .iui-breadcrumbs-item a{
|
|
87
|
+
text-decoration:none;
|
|
88
|
+
}
|
|
89
|
+
.iui-theme-light .iui-breadcrumbs-item a:hover, .iui-theme-dark .iui-breadcrumbs-item a:hover{
|
|
90
|
+
text-decoration:underline;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.iui-theme-light-hc .iui-breadcrumbs-item a, .iui-theme-dark-hc .iui-breadcrumbs-item a{
|
|
94
|
+
text-decoration:underline;
|
|
95
|
+
}
|
|
96
|
+
.iui-theme-light-hc .iui-breadcrumbs-item a:hover, .iui-theme-dark-hc .iui-breadcrumbs-item a:hover{
|
|
97
|
+
text-decoration:none;
|
|
98
|
+
}
|
|
99
|
+
|
|
57
100
|
.iui-breadcrumbs-item .iui-button{
|
|
58
101
|
border-color:transparent;
|
|
59
102
|
background-color:transparent;
|
package/css/footer.css
CHANGED
|
@@ -41,27 +41,70 @@
|
|
|
41
41
|
background-color:var(--iui-text-color-muted);
|
|
42
42
|
}
|
|
43
43
|
.iui-legal-footer > ul > li > a{
|
|
44
|
-
|
|
45
|
-
text-decoration:none;
|
|
46
|
-
cursor:pointer;
|
|
44
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
47
45
|
color:#008ae0;
|
|
46
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
48
47
|
color:var(--iui-color-foreground-primary);
|
|
48
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
49
|
+
border-radius:3px;
|
|
50
|
+
cursor:pointer;
|
|
51
|
+
text-decoration:none;
|
|
49
52
|
}
|
|
50
53
|
.iui-legal-footer > ul > li > a:focus-visible{
|
|
51
54
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
52
|
-
outline-offset:
|
|
55
|
+
outline-offset:1px;
|
|
53
56
|
}
|
|
54
57
|
@supports not selector(*:focus-visible){
|
|
55
58
|
.iui-legal-footer > ul > li > a:focus{
|
|
56
59
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
57
|
-
outline-offset:
|
|
60
|
+
outline-offset:1px;
|
|
58
61
|
}
|
|
59
62
|
}
|
|
60
63
|
.iui-legal-footer > ul > li > a:hover{
|
|
61
64
|
color:#006bad;
|
|
62
65
|
color:var(--iui-color-foreground-primary-overlay);
|
|
66
|
+
}
|
|
67
|
+
.iui-legal-footer > ul > li > a-external::after{
|
|
68
|
+
content:"";
|
|
69
|
+
display:inline-block;
|
|
70
|
+
width:1.5ch;
|
|
71
|
+
height:1.5ch;
|
|
72
|
+
margin-left:0.5ch;
|
|
73
|
+
vertical-align:-0.1ch;
|
|
74
|
+
background-color:currentColor;
|
|
75
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
76
|
+
mask:var(--_iui-anchor-external-svg);
|
|
77
|
+
}
|
|
78
|
+
@media (forced-colors: active){
|
|
79
|
+
.iui-legal-footer > ul > li > a-external::after{
|
|
80
|
+
background-color:LinkText;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
.iui-legal-footer > ul > li > a:hover{
|
|
63
84
|
text-decoration:underline;
|
|
64
85
|
}
|
|
86
|
+
@media (prefers-contrast: more){
|
|
87
|
+
.iui-legal-footer > ul > li > a{
|
|
88
|
+
text-decoration:underline;
|
|
89
|
+
}
|
|
90
|
+
.iui-legal-footer > ul > li > a:hover{
|
|
91
|
+
text-decoration:none;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
.iui-theme-light .iui-legal-footer > ul > li > a, .iui-theme-dark .iui-legal-footer > ul > li > a{
|
|
95
|
+
text-decoration:none;
|
|
96
|
+
}
|
|
97
|
+
.iui-theme-light .iui-legal-footer > ul > li > a:hover, .iui-theme-dark .iui-legal-footer > ul > li > a:hover{
|
|
98
|
+
text-decoration:underline;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.iui-theme-light-hc .iui-legal-footer > ul > li > a, .iui-theme-dark-hc .iui-legal-footer > ul > li > a{
|
|
102
|
+
text-decoration:underline;
|
|
103
|
+
}
|
|
104
|
+
.iui-theme-light-hc .iui-legal-footer > ul > li > a:hover, .iui-theme-dark-hc .iui-legal-footer > ul > li > a:hover{
|
|
105
|
+
text-decoration:none;
|
|
106
|
+
}
|
|
107
|
+
|
|
65
108
|
.iui-legal-footer > ul > li > a, .iui-legal-footer > ul > li > a:hover{
|
|
66
109
|
color:rgba(0, 0, 0, 0.4);
|
|
67
110
|
color:var(--iui-text-color-muted);
|
package/css/global.css
CHANGED
|
@@ -583,27 +583,82 @@ html.iui-theme-dark-hc{
|
|
|
583
583
|
}
|
|
584
584
|
|
|
585
585
|
.iui-anchor{
|
|
586
|
-
|
|
587
|
-
text-decoration:none;
|
|
588
|
-
cursor:pointer;
|
|
586
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
589
587
|
color:#008ae0;
|
|
588
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
590
589
|
color:var(--iui-color-foreground-primary);
|
|
590
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
591
|
+
border-radius:3px;
|
|
592
|
+
cursor:pointer;
|
|
593
|
+
text-decoration:none;
|
|
591
594
|
}
|
|
592
595
|
.iui-anchor:focus-visible{
|
|
593
596
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
594
|
-
outline-offset:
|
|
597
|
+
outline-offset:1px;
|
|
595
598
|
}
|
|
596
599
|
@supports not selector(*:focus-visible){
|
|
597
600
|
.iui-anchor:focus{
|
|
598
601
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
599
|
-
outline-offset:
|
|
602
|
+
outline-offset:1px;
|
|
600
603
|
}
|
|
601
604
|
}
|
|
602
605
|
.iui-anchor:hover{
|
|
603
606
|
color:#006bad;
|
|
604
607
|
color:var(--iui-color-foreground-primary-overlay);
|
|
608
|
+
}
|
|
609
|
+
.iui-anchor-external::after{
|
|
610
|
+
content:"";
|
|
611
|
+
display:inline-block;
|
|
612
|
+
width:1.5ch;
|
|
613
|
+
height:1.5ch;
|
|
614
|
+
margin-left:0.5ch;
|
|
615
|
+
vertical-align:-0.1ch;
|
|
616
|
+
background-color:currentColor;
|
|
617
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
618
|
+
mask:var(--_iui-anchor-external-svg);
|
|
619
|
+
}
|
|
620
|
+
@media (forced-colors: active){
|
|
621
|
+
.iui-anchor-external::after{
|
|
622
|
+
background-color:LinkText;
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
.iui-anchor:hover{
|
|
605
626
|
text-decoration:underline;
|
|
606
627
|
}
|
|
628
|
+
@media (prefers-contrast: more){
|
|
629
|
+
.iui-anchor{
|
|
630
|
+
text-decoration:underline;
|
|
631
|
+
}
|
|
632
|
+
.iui-anchor:hover{
|
|
633
|
+
text-decoration:none;
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
.iui-theme-light .iui-anchor, .iui-theme-dark .iui-anchor{
|
|
637
|
+
text-decoration:none;
|
|
638
|
+
}
|
|
639
|
+
.iui-theme-light .iui-anchor:hover, .iui-theme-dark .iui-anchor:hover{
|
|
640
|
+
text-decoration:underline;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.iui-theme-light-hc .iui-anchor, .iui-theme-dark-hc .iui-anchor{
|
|
644
|
+
text-decoration:underline;
|
|
645
|
+
}
|
|
646
|
+
.iui-theme-light-hc .iui-anchor:hover, .iui-theme-dark-hc .iui-anchor:hover{
|
|
647
|
+
text-decoration:none;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.iui-visually-hidden{
|
|
651
|
+
-webkit-clip-path:inset(50%);
|
|
652
|
+
clip-path:inset(50%);
|
|
653
|
+
overflow:hidden;
|
|
654
|
+
position:absolute;
|
|
655
|
+
white-space:nowrap;
|
|
656
|
+
height:1px;
|
|
657
|
+
width:1px;
|
|
658
|
+
padding:0;
|
|
659
|
+
margin:-1px;
|
|
660
|
+
border-width:0;
|
|
661
|
+
}
|
|
607
662
|
|
|
608
663
|
[class*=iui-],
|
|
609
664
|
[class*=iui-] *{
|
package/css/header.css
CHANGED
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
height:100%;
|
|
57
57
|
border-radius:0;
|
|
58
58
|
overflow:hidden;
|
|
59
|
-
padding-right:8px;
|
|
60
59
|
}
|
|
61
60
|
.iui-page-header .iui-header-button.iui-header-button:focus{
|
|
62
61
|
box-shadow:none;
|
|
@@ -167,6 +166,9 @@
|
|
|
167
166
|
padding:0;
|
|
168
167
|
}
|
|
169
168
|
|
|
169
|
+
.iui-page-header .iui-header-dropdown-button.iui-header-dropdown-button{
|
|
170
|
+
padding-right:8px;
|
|
171
|
+
}
|
|
170
172
|
.iui-page-header .iui-header-split-button{
|
|
171
173
|
max-width:25vw;
|
|
172
174
|
}
|
|
@@ -186,7 +188,6 @@
|
|
|
186
188
|
height:100%;
|
|
187
189
|
border-radius:0;
|
|
188
190
|
overflow:hidden;
|
|
189
|
-
padding-right:8px;
|
|
190
191
|
padding:0 4px;
|
|
191
192
|
}
|
|
192
193
|
.iui-page-header .iui-header-split-button .iui-button:focus{
|
package/css/menu.css
CHANGED
|
@@ -142,6 +142,27 @@
|
|
|
142
142
|
fill:rgba(0, 0, 0, 0.2);
|
|
143
143
|
fill:var(--iui-icons-color-actionable-disabled);
|
|
144
144
|
}
|
|
145
|
+
.iui-menu-item-skeleton{
|
|
146
|
+
--iui-menu-item-content-skeleton-max-width:30%;
|
|
147
|
+
cursor:auto;
|
|
148
|
+
}
|
|
149
|
+
.iui-menu-item-skeleton .iui-content{
|
|
150
|
+
max-width:var(--iui-menu-item-content-skeleton-max-width);
|
|
151
|
+
}
|
|
152
|
+
.iui-menu-item-skeleton .iui-menu-label{
|
|
153
|
+
width:100%;
|
|
154
|
+
height:14px;
|
|
155
|
+
vertical-align:middle;
|
|
156
|
+
}
|
|
157
|
+
.iui-menu-item-skeleton .iui-menu-description{
|
|
158
|
+
width:70%;
|
|
159
|
+
height:12px;
|
|
160
|
+
vertical-align:middle;
|
|
161
|
+
margin-top:4px;
|
|
162
|
+
}
|
|
163
|
+
.iui-menu-item-skeleton:hover{
|
|
164
|
+
background-color:unset;
|
|
165
|
+
}
|
|
145
166
|
|
|
146
167
|
.iui-menu-content{
|
|
147
168
|
padding:11px 13px;
|
package/css/popover.css
CHANGED
package/css/skip-to-content.css
CHANGED
package/css/table.css
CHANGED
|
@@ -205,10 +205,10 @@
|
|
|
205
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
|
-
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot > .iui-more-options{
|
|
208
|
+
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
209
209
|
visibility:visible;
|
|
210
210
|
}
|
|
211
|
-
.iui-table-body .iui-row:
|
|
211
|
+
.iui-table-body .iui-row:focus-within > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
212
212
|
visibility:visible;
|
|
213
213
|
}
|
|
214
214
|
@media (prefers-reduced-motion: no-preference){
|
|
@@ -303,20 +303,20 @@
|
|
|
303
303
|
color:#53a21a;
|
|
304
304
|
color:var(--iui-color-foreground-positive);
|
|
305
305
|
}
|
|
306
|
-
.iui-table-body .iui-row.iui-disabled, .iui-table-body .iui-row.iui-
|
|
306
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled, .iui-table-body .iui-row.iui-expanded-content.iui-disabled{
|
|
307
307
|
font-style:italic;
|
|
308
308
|
cursor:not-allowed;
|
|
309
309
|
color:rgba(0, 0, 0, 0.4);
|
|
310
310
|
color:var(--iui-text-color-muted);
|
|
311
311
|
}
|
|
312
|
-
.iui-table-body .iui-row.iui-disabled
|
|
312
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled.iui-slot:hover > .iui-more-options, .iui-table-body .iui-row.iui-expanded-content.iui-disabled.iui-slot:hover > .iui-more-options{
|
|
313
313
|
visibility:hidden;
|
|
314
314
|
}
|
|
315
|
-
.iui-table-body .iui-row.iui-disabled img,
|
|
316
|
-
.iui-table-body .iui-row.iui-disabled svg:not(.iui-radial),
|
|
317
|
-
.iui-table-body .iui-row.iui-disabled .iui-user-icon, .iui-table-body .iui-row.iui-
|
|
318
|
-
.iui-table-body .iui-row.iui-
|
|
319
|
-
.iui-table-body .iui-row.iui-
|
|
315
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled img,
|
|
316
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled svg:not(.iui-radial),
|
|
317
|
+
.iui-table-body .iui-row .iui-cell.iui-disabled .iui-user-icon, .iui-table-body .iui-row.iui-expanded-content.iui-disabled img,
|
|
318
|
+
.iui-table-body .iui-row.iui-expanded-content.iui-disabled svg:not(.iui-radial),
|
|
319
|
+
.iui-table-body .iui-row.iui-expanded-content.iui-disabled .iui-user-icon{
|
|
320
320
|
filter:grayscale(100%);
|
|
321
321
|
}
|
|
322
322
|
.iui-table-body .iui-row.iui-positive,
|
package/css/tag.css
CHANGED
|
@@ -12,31 +12,17 @@
|
|
|
12
12
|
user-select:all;
|
|
13
13
|
text-transform:lowercase;
|
|
14
14
|
display:inline-flex;
|
|
15
|
-
}
|
|
16
|
-
.iui-tag:focus-visible{
|
|
17
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
18
|
-
outline-offset:-2px;
|
|
19
|
-
}
|
|
20
|
-
@supports not selector(*:focus-visible){
|
|
21
|
-
.iui-tag:focus{
|
|
22
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
23
|
-
outline-offset:-2px;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
.iui-tag:not(a){
|
|
27
|
-
color:rgba(0, 0, 0, 0.4);
|
|
28
|
-
color:var(--iui-text-color-muted);
|
|
29
|
-
}
|
|
30
|
-
.iui-tag:not(.iui-basic){
|
|
31
15
|
height:33px;
|
|
32
16
|
margin:3px 0;
|
|
33
|
-
border-radius:
|
|
17
|
+
border-radius:9999px;
|
|
34
18
|
box-sizing:border-box;
|
|
35
19
|
padding:0 2px;
|
|
36
20
|
align-items:center;
|
|
21
|
+
transition:border-color 0.2s ease-out;
|
|
37
22
|
font-size:14px;
|
|
38
23
|
text-transform:none;
|
|
39
24
|
cursor:default;
|
|
25
|
+
-webkit-tap-highlight-color:transparent;
|
|
40
26
|
border:1px solid rgba(0, 0, 0, 0.4);
|
|
41
27
|
background-color:white;
|
|
42
28
|
color:rgba(0, 0, 0, 0.8);
|
|
@@ -44,12 +30,28 @@
|
|
|
44
30
|
background-color:var(--iui-color-background-1);
|
|
45
31
|
color:var(--iui-text-color);
|
|
46
32
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
33
|
+
.iui-tag:hover{
|
|
34
|
+
border-color:black;
|
|
35
|
+
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
51
36
|
}
|
|
52
|
-
|
|
37
|
+
|
|
38
|
+
.iui-tag-basic{
|
|
39
|
+
margin:0;
|
|
40
|
+
padding:0;
|
|
41
|
+
border:none;
|
|
42
|
+
vertical-align:baseline;
|
|
43
|
+
-webkit-user-select:all;
|
|
44
|
+
-moz-user-select:all;
|
|
45
|
+
user-select:all;
|
|
46
|
+
text-transform:lowercase;
|
|
47
|
+
display:inline-flex;
|
|
48
|
+
}
|
|
49
|
+
.iui-tag-basic:not(a){
|
|
50
|
+
color:rgba(0, 0, 0, 0.4);
|
|
51
|
+
color:var(--iui-text-color-muted);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.iui-tag-label{
|
|
53
55
|
margin:0;
|
|
54
56
|
padding:0;
|
|
55
57
|
border:none;
|
|
@@ -62,54 +64,101 @@
|
|
|
62
64
|
overflow:hidden;
|
|
63
65
|
margin:0 4px 0 8px;
|
|
64
66
|
}
|
|
65
|
-
.iui-tag
|
|
67
|
+
.iui-tag-label:only-child{
|
|
66
68
|
margin:0 8px;
|
|
67
69
|
}
|
|
68
|
-
|
|
70
|
+
|
|
71
|
+
.iui-tag-button{
|
|
69
72
|
border-radius:50%;
|
|
70
73
|
}
|
|
71
|
-
.iui-tag:not(.iui-basic):hover{
|
|
72
|
-
border-color:black;
|
|
73
|
-
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
74
|
-
}
|
|
75
|
-
.iui-tag.iui-basic{
|
|
76
|
-
outline-offset:1px;
|
|
77
|
-
}
|
|
78
74
|
|
|
79
|
-
a.iui-tag{
|
|
80
|
-
|
|
81
|
-
text-decoration:none;
|
|
82
|
-
cursor:pointer;
|
|
75
|
+
a.iui-tag-basic{
|
|
76
|
+
--_iui-anchor-external-svg:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m16 0v5.4l-1.9-2-8.4 8.4-1.5-1.5 8.3-8.4-1.9-1.9m5.4 16v-9h-1v8h-14v-14h8v-1h-9v16z' /></svg>");
|
|
83
77
|
color:#008ae0;
|
|
78
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
84
79
|
color:var(--iui-color-foreground-primary);
|
|
80
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
81
|
+
border-radius:3px;
|
|
82
|
+
cursor:pointer;
|
|
83
|
+
text-decoration:none;
|
|
85
84
|
}
|
|
86
|
-
a.iui-tag:focus-visible{
|
|
85
|
+
a.iui-tag-basic:focus-visible{
|
|
87
86
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
88
|
-
outline-offset:
|
|
87
|
+
outline-offset:1px;
|
|
89
88
|
}
|
|
90
89
|
@supports not selector(*:focus-visible){
|
|
91
|
-
a.iui-tag:focus{
|
|
90
|
+
a.iui-tag-basic:focus{
|
|
92
91
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
93
|
-
outline-offset:
|
|
92
|
+
outline-offset:1px;
|
|
94
93
|
}
|
|
95
94
|
}
|
|
96
|
-
a.iui-tag:hover{
|
|
95
|
+
a.iui-tag-basic:hover{
|
|
97
96
|
color:#006bad;
|
|
98
97
|
color:var(--iui-color-foreground-primary-overlay);
|
|
98
|
+
}
|
|
99
|
+
a.iui-tag-basic-external::after{
|
|
100
|
+
content:"";
|
|
101
|
+
display:inline-block;
|
|
102
|
+
width:1.5ch;
|
|
103
|
+
height:1.5ch;
|
|
104
|
+
margin-left:0.5ch;
|
|
105
|
+
vertical-align:-0.1ch;
|
|
106
|
+
background-color:currentColor;
|
|
107
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
108
|
+
mask:var(--_iui-anchor-external-svg);
|
|
109
|
+
}
|
|
110
|
+
@media (forced-colors: active){
|
|
111
|
+
a.iui-tag-basic-external::after{
|
|
112
|
+
background-color:LinkText;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
a.iui-tag-basic:hover{
|
|
99
116
|
text-decoration:underline;
|
|
100
117
|
}
|
|
118
|
+
@media (prefers-contrast: more){
|
|
119
|
+
a.iui-tag-basic{
|
|
120
|
+
text-decoration:underline;
|
|
121
|
+
}
|
|
122
|
+
a.iui-tag-basic:hover{
|
|
123
|
+
text-decoration:none;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
.iui-theme-light a.iui-tag-basic, .iui-theme-dark a.iui-tag-basic{
|
|
127
|
+
text-decoration:none;
|
|
128
|
+
}
|
|
129
|
+
.iui-theme-light a.iui-tag-basic:hover, .iui-theme-dark a.iui-tag-basic:hover{
|
|
130
|
+
text-decoration:underline;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.iui-theme-light-hc a.iui-tag-basic, .iui-theme-dark-hc a.iui-tag-basic{
|
|
134
|
+
text-decoration:underline;
|
|
135
|
+
}
|
|
136
|
+
.iui-theme-light-hc a.iui-tag-basic:hover, .iui-theme-dark-hc a.iui-tag-basic:hover{
|
|
137
|
+
text-decoration:none;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
a.iui-tag-basic:focus-visible{
|
|
141
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
142
|
+
outline-offset:1px;
|
|
143
|
+
}
|
|
144
|
+
@supports not selector(*:focus-visible){
|
|
145
|
+
a.iui-tag-basic:focus{
|
|
146
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
147
|
+
outline-offset:1px;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
101
150
|
|
|
102
151
|
.iui-tag-container{
|
|
103
152
|
color:rgba(0, 0, 0, 0.4);
|
|
104
153
|
color:var(--iui-text-color-muted);
|
|
105
154
|
}
|
|
106
|
-
.iui-tag-container > a.iui-basic{
|
|
155
|
+
.iui-tag-container > a.iui-tag-basic{
|
|
107
156
|
margin:2px;
|
|
108
157
|
}
|
|
109
|
-
.iui-tag-container >
|
|
158
|
+
.iui-tag-container > *:not(last-child){
|
|
110
159
|
margin-right:4px;
|
|
111
160
|
}
|
|
112
|
-
.iui-tag-container > .iui-basic:not(:last-child)::after{
|
|
161
|
+
.iui-tag-container > .iui-tag-basic:not(:last-child)::after{
|
|
113
162
|
content:",";
|
|
114
163
|
}
|
|
115
164
|
.iui-tag-container.iui-truncate{
|
|
@@ -132,6 +181,6 @@ a.iui-tag:hover{
|
|
|
132
181
|
.iui-tag-container.iui-visible{
|
|
133
182
|
border-radius:3px;
|
|
134
183
|
padding:3px 12px;
|
|
135
|
-
background-color:#
|
|
136
|
-
background-color:var(--iui-color-background-
|
|
184
|
+
background-color:#edeff2;
|
|
185
|
+
background-color:var(--iui-color-background-3);
|
|
137
186
|
}
|