@itwin/itwinui-css 0.54.0 → 0.56.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/all.css +593 -331
- package/css/global.css +78 -0
- package/css/header.css +3 -2
- package/css/inputs.css +18 -168
- package/css/menu.css +21 -0
- package/css/popover.css +2 -2
- package/css/radio-tile.css +221 -0
- package/css/tabs.css +4 -0
- package/css/tag.css +56 -49
- package/css/text.css +9 -3
- package/css/tile.css +29 -17
- package/css/toast-notification.css +1 -1
- package/css/toggle-switch.css +65 -0
- package/package.json +5 -3
- package/scss/anchor/anchor.scss +1 -77
- package/scss/classes.scss +3 -2
- package/scss/header/header.scss +8 -1
- package/scss/index.scss +3 -2
- package/scss/inputs/checkbox.scss +11 -6
- package/scss/inputs/classes.scss +0 -4
- package/scss/inputs/index.scss +0 -1
- package/scss/inputs/labeled-inputs.scss +1 -1
- package/scss/menu/menu.scss +27 -0
- package/scss/popover/popover.scss +2 -2
- package/scss/radio-tile/classes.scss +31 -0
- package/scss/radio-tile/index.scss +3 -0
- package/scss/radio-tile/radio-tile.scss +214 -0
- package/scss/style/anchor.scss +79 -0
- package/scss/style/global.scss +9 -0
- package/scss/tabs/tabs.scss +6 -0
- package/scss/tag/classes.scss +14 -1
- package/scss/tag/tag.scss +45 -46
- package/scss/text/skeleton.scss +13 -7
- package/scss/tile/tile.scss +19 -13
- package/scss/toast-notification/classes.scss +1 -1
- package/scss/toggle-switch/toggle-switch.scss +50 -2
- package/scss/inputs/radio-tile.scss +0 -200
package/css/all.css
CHANGED
|
@@ -583,6 +583,84 @@ html.iui-theme-dark-hc{
|
|
|
583
583
|
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
+
.iui-anchor{
|
|
587
|
+
--_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>");
|
|
588
|
+
color:#008ae0;
|
|
589
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
590
|
+
color:var(--iui-color-foreground-primary);
|
|
591
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-5));
|
|
592
|
+
border-radius:3px;
|
|
593
|
+
cursor:pointer;
|
|
594
|
+
text-decoration:none;
|
|
595
|
+
}
|
|
596
|
+
.iui-anchor:focus-visible{
|
|
597
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
598
|
+
outline-offset:1px;
|
|
599
|
+
}
|
|
600
|
+
@supports not selector(*:focus-visible){
|
|
601
|
+
.iui-anchor:focus{
|
|
602
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
603
|
+
outline-offset:1px;
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
.iui-anchor:hover{
|
|
607
|
+
color:#006bad;
|
|
608
|
+
color:var(--iui-color-foreground-primary-overlay);
|
|
609
|
+
}
|
|
610
|
+
.iui-anchor-external::after{
|
|
611
|
+
content:"";
|
|
612
|
+
display:inline-block;
|
|
613
|
+
width:1.5ch;
|
|
614
|
+
height:1.5ch;
|
|
615
|
+
margin-left:0.5ch;
|
|
616
|
+
vertical-align:-0.1ch;
|
|
617
|
+
background-color:currentColor;
|
|
618
|
+
-webkit-mask:var(--_iui-anchor-external-svg);
|
|
619
|
+
mask:var(--_iui-anchor-external-svg);
|
|
620
|
+
}
|
|
621
|
+
@media (forced-colors: active){
|
|
622
|
+
.iui-anchor-external::after{
|
|
623
|
+
background-color:LinkText;
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
.iui-anchor:hover{
|
|
627
|
+
text-decoration:underline;
|
|
628
|
+
}
|
|
629
|
+
@media (prefers-contrast: more){
|
|
630
|
+
.iui-anchor{
|
|
631
|
+
text-decoration:underline;
|
|
632
|
+
}
|
|
633
|
+
.iui-anchor:hover{
|
|
634
|
+
text-decoration:none;
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
.iui-theme-light .iui-anchor, .iui-theme-dark .iui-anchor{
|
|
638
|
+
text-decoration:none;
|
|
639
|
+
}
|
|
640
|
+
.iui-theme-light .iui-anchor:hover, .iui-theme-dark .iui-anchor:hover{
|
|
641
|
+
text-decoration:underline;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.iui-theme-light-hc .iui-anchor, .iui-theme-dark-hc .iui-anchor{
|
|
645
|
+
text-decoration:underline;
|
|
646
|
+
}
|
|
647
|
+
.iui-theme-light-hc .iui-anchor:hover, .iui-theme-dark-hc .iui-anchor:hover{
|
|
648
|
+
text-decoration:none;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.iui-visually-hidden{
|
|
652
|
+
-webkit-clip-path:inset(50%);
|
|
653
|
+
clip-path:inset(50%);
|
|
654
|
+
overflow:hidden;
|
|
655
|
+
position:absolute;
|
|
656
|
+
white-space:nowrap;
|
|
657
|
+
height:1px;
|
|
658
|
+
width:1px;
|
|
659
|
+
padding:0;
|
|
660
|
+
margin:-1px;
|
|
661
|
+
border-width:0;
|
|
662
|
+
}
|
|
663
|
+
|
|
586
664
|
[class*=iui-],
|
|
587
665
|
[class*=iui-] *{
|
|
588
666
|
scrollbar-color:rgba(0, 0, 0, 0.4) transparent;
|
|
@@ -3160,7 +3238,6 @@ html.iui-theme-dark-hc{
|
|
|
3160
3238
|
height:100%;
|
|
3161
3239
|
border-radius:0;
|
|
3162
3240
|
overflow:hidden;
|
|
3163
|
-
padding-right:8px;
|
|
3164
3241
|
}
|
|
3165
3242
|
.iui-page-header .iui-header-button.iui-header-button:focus{
|
|
3166
3243
|
box-shadow:none;
|
|
@@ -3271,6 +3348,9 @@ html.iui-theme-dark-hc{
|
|
|
3271
3348
|
padding:0;
|
|
3272
3349
|
}
|
|
3273
3350
|
|
|
3351
|
+
.iui-page-header .iui-header-dropdown-button.iui-header-dropdown-button{
|
|
3352
|
+
padding-right:8px;
|
|
3353
|
+
}
|
|
3274
3354
|
.iui-page-header .iui-header-split-button{
|
|
3275
3355
|
max-width:25vw;
|
|
3276
3356
|
}
|
|
@@ -3290,7 +3370,6 @@ html.iui-theme-dark-hc{
|
|
|
3290
3370
|
height:100%;
|
|
3291
3371
|
border-radius:0;
|
|
3292
3372
|
overflow:hidden;
|
|
3293
|
-
padding-right:8px;
|
|
3294
3373
|
padding:0 4px;
|
|
3295
3374
|
}
|
|
3296
3375
|
.iui-page-header .iui-header-split-button .iui-button:focus{
|
|
@@ -4160,8 +4239,8 @@ div.iui-input-container.iui-inline-label{
|
|
|
4160
4239
|
transition:background 0s;
|
|
4161
4240
|
}
|
|
4162
4241
|
.iui-input-container.iui-inline-icon > .iui-input-icon.iui-actionable svg{
|
|
4163
|
-
fill:rgba(0, 0, 0, 0.
|
|
4164
|
-
fill:var(--iui-icons-color);
|
|
4242
|
+
fill:rgba(0, 0, 0, 0.8);
|
|
4243
|
+
fill:var(--iui-icons-color-actionable);
|
|
4165
4244
|
transition:transform 0.2s ease-out;
|
|
4166
4245
|
}
|
|
4167
4246
|
.iui-input-container.iui-inline-icon > .iui-input-icon.iui-actionable.iui-open svg{
|
|
@@ -4761,8 +4840,8 @@ label.iui-input-label.iui-disabled{
|
|
|
4761
4840
|
transition:background 0s;
|
|
4762
4841
|
}
|
|
4763
4842
|
.iui-end-icon.iui-actionable svg{
|
|
4764
|
-
fill:rgba(0, 0, 0, 0.
|
|
4765
|
-
fill:var(--iui-icons-color);
|
|
4843
|
+
fill:rgba(0, 0, 0, 0.8);
|
|
4844
|
+
fill:var(--iui-icons-color-actionable);
|
|
4766
4845
|
transition:transform 0.2s ease-out;
|
|
4767
4846
|
}
|
|
4768
4847
|
.iui-end-icon.iui-actionable.iui-open svg{
|
|
@@ -4902,6 +4981,12 @@ label.iui-input-label.iui-disabled{
|
|
|
4902
4981
|
outline-offset:-1px;
|
|
4903
4982
|
}
|
|
4904
4983
|
}
|
|
4984
|
+
.iui-checkbox:disabled{
|
|
4985
|
+
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
4986
|
+
--_iui-checkbox-border-color:var(--iui-color-background-border);
|
|
4987
|
+
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
4988
|
+
cursor:not-allowed;
|
|
4989
|
+
}
|
|
4905
4990
|
.iui-checkbox.iui-checkbox-visibility{
|
|
4906
4991
|
--_iui-checkbox-checkmark-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 2.99051a8.81883 8.81883 0 0 0 -8 4.95062 8.74664 8.74664 0 0 0 8 5.06836 8.63266 8.63266 0 0 0 8-5.06836 8.83631 8.83631 0 0 0 -8-4.95062zm-1.31445 1.86981a1.47663 1.47663 0 1 1 -1.47663 1.47668 1.47665 1.47665 0 0 1 1.47663-1.47668zm1.31445 6.64917a7.17486 7.17486 0 0 1 -6.30475-3.55237 7.4952 7.4952 0 0 1 2.81475-2.6336 3.83956 3.83956 0 1 0 6.98126.00244 7.522 7.522 0 0 1 2.81774 2.63916 7.09785 7.09785 0 0 1 -6.309 3.54437z" /></svg>');
|
|
4907
4992
|
--_iui-checkbox-indeterminate-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 3v7.9a4.01179 4.01179 0 0 0 4-4 6.7509 6.7509 0 0 0 -.2-1.4l.1.1a6.89429 6.89429 0 0 1 2.4 2.4 8.39088 8.39088 0 0 1 -2.3 2.3 6.89412 6.89412 0 0 1 -3.9 1.2c-.03345 0-.06653-.00677-.1-.0072v1.5072a8.90686 8.90686 0 0 0 8-5 8.90686 8.90686 0 0 0 -8-5z" opacity=".33" /><path d="m8 0a1 1 0 0 0 -1 1v2.07135a8.91637 8.91637 0 0 0 -7 4.92865 8.91637 8.91637 0 0 0 7 4.92865v2.07135a1 1 0 0 0 2 0v-14a1 1 0 0 0 -1-1zm-1.5 4.9a1.55426 1.55426 0 0 1 .5.087v2.81451a1.40746 1.40746 0 0 1 -.5.09849 1.538 1.538 0 0 1 -1.5-1.5 1.53794 1.53794 0 0 1 1.5-1.5zm-2.3 5.4a6.97279 6.97279 0 0 1 -2.5-2.3 6.89429 6.89429 0 0 1 2.4-2.4c.1 0 .1-.1.2-.1a3.194 3.194 0 0 0 -.3 1.4 4.0047 4.0047 0 0 0 3 3.857v.65289a6.37491 6.37491 0 0 1 -2.8-1.10989z" /></svg>');
|
|
@@ -4916,11 +5001,9 @@ label.iui-input-label.iui-disabled{
|
|
|
4916
5001
|
--_iui-checkbox-border-color:transparent;
|
|
4917
5002
|
--_iui-checkbox-background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
4918
5003
|
}
|
|
4919
|
-
.iui-checkbox:disabled{
|
|
5004
|
+
.iui-checkbox.iui-checkbox-visibility:where(:disabled){
|
|
4920
5005
|
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
4921
|
-
--_iui-checkbox-border-color:var(--iui-color-background-disabled);
|
|
4922
5006
|
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
4923
|
-
cursor:not-allowed;
|
|
4924
5007
|
}
|
|
4925
5008
|
.iui-checkbox.iui-loading{
|
|
4926
5009
|
--_iui-checkbox-border-color:transparent;
|
|
@@ -5057,6 +5140,12 @@ label.iui-input-label.iui-disabled{
|
|
|
5057
5140
|
outline-offset:-1px;
|
|
5058
5141
|
}
|
|
5059
5142
|
}
|
|
5143
|
+
.iui-radio:disabled{
|
|
5144
|
+
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
5145
|
+
--_iui-checkbox-border-color:var(--iui-color-background-border);
|
|
5146
|
+
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
5147
|
+
cursor:not-allowed;
|
|
5148
|
+
}
|
|
5060
5149
|
.iui-radio.iui-checkbox-visibility{
|
|
5061
5150
|
--_iui-checkbox-checkmark-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 2.99051a8.81883 8.81883 0 0 0 -8 4.95062 8.74664 8.74664 0 0 0 8 5.06836 8.63266 8.63266 0 0 0 8-5.06836 8.83631 8.83631 0 0 0 -8-4.95062zm-1.31445 1.86981a1.47663 1.47663 0 1 1 -1.47663 1.47668 1.47665 1.47665 0 0 1 1.47663-1.47668zm1.31445 6.64917a7.17486 7.17486 0 0 1 -6.30475-3.55237 7.4952 7.4952 0 0 1 2.81475-2.6336 3.83956 3.83956 0 1 0 6.98126.00244 7.522 7.522 0 0 1 2.81774 2.63916 7.09785 7.09785 0 0 1 -6.309 3.54437z" /></svg>');
|
|
5062
5151
|
--_iui-checkbox-indeterminate-svg:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 3v7.9a4.01179 4.01179 0 0 0 4-4 6.7509 6.7509 0 0 0 -.2-1.4l.1.1a6.89429 6.89429 0 0 1 2.4 2.4 8.39088 8.39088 0 0 1 -2.3 2.3 6.89412 6.89412 0 0 1 -3.9 1.2c-.03345 0-.06653-.00677-.1-.0072v1.5072a8.90686 8.90686 0 0 0 8-5 8.90686 8.90686 0 0 0 -8-5z" opacity=".33" /><path d="m8 0a1 1 0 0 0 -1 1v2.07135a8.91637 8.91637 0 0 0 -7 4.92865 8.91637 8.91637 0 0 0 7 4.92865v2.07135a1 1 0 0 0 2 0v-14a1 1 0 0 0 -1-1zm-1.5 4.9a1.55426 1.55426 0 0 1 .5.087v2.81451a1.40746 1.40746 0 0 1 -.5.09849 1.538 1.538 0 0 1 -1.5-1.5 1.53794 1.53794 0 0 1 1.5-1.5zm-2.3 5.4a6.97279 6.97279 0 0 1 -2.5-2.3 6.89429 6.89429 0 0 1 2.4-2.4c.1 0 .1-.1.2-.1a3.194 3.194 0 0 0 -.3 1.4 4.0047 4.0047 0 0 0 3 3.857v.65289a6.37491 6.37491 0 0 1 -2.8-1.10989z" /></svg>');
|
|
@@ -5071,11 +5160,9 @@ label.iui-input-label.iui-disabled{
|
|
|
5071
5160
|
--_iui-checkbox-border-color:transparent;
|
|
5072
5161
|
--_iui-checkbox-background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
|
|
5073
5162
|
}
|
|
5074
|
-
.iui-radio:disabled{
|
|
5163
|
+
.iui-radio.iui-checkbox-visibility:where(:disabled){
|
|
5075
5164
|
--_iui-checkbox-svg-color:var(--iui-icons-color-actionable-disabled);
|
|
5076
|
-
--_iui-checkbox-border-color:var(--iui-color-background-disabled);
|
|
5077
5165
|
--_iui-checkbox-background-color:var(--iui-color-background-disabled);
|
|
5078
|
-
cursor:not-allowed;
|
|
5079
5166
|
}
|
|
5080
5167
|
.iui-radio.iui-loading{
|
|
5081
5168
|
--_iui-checkbox-border-color:transparent;
|
|
@@ -5091,164 +5178,6 @@ label.iui-input-label.iui-disabled{
|
|
|
5091
5178
|
--_iui-checkbox-mask-image:var(--_iui-checkbox-unchecked-svg);
|
|
5092
5179
|
}
|
|
5093
5180
|
|
|
5094
|
-
.iui-radio-tile-container{
|
|
5095
|
-
display:inline-flex;
|
|
5096
|
-
flex-wrap:wrap;
|
|
5097
|
-
width:-webkit-fit-content;
|
|
5098
|
-
width:-moz-fit-content;
|
|
5099
|
-
width:fit-content;
|
|
5100
|
-
-webkit-user-select:none;
|
|
5101
|
-
-moz-user-select:none;
|
|
5102
|
-
-ms-user-select:none;
|
|
5103
|
-
user-select:none;
|
|
5104
|
-
position:relative;
|
|
5105
|
-
z-index:0;
|
|
5106
|
-
}
|
|
5107
|
-
.iui-radio-tile-container > label{
|
|
5108
|
-
cursor:pointer;
|
|
5109
|
-
}
|
|
5110
|
-
.iui-radio-tile-container > label > input{
|
|
5111
|
-
width:0;
|
|
5112
|
-
height:0;
|
|
5113
|
-
-webkit-appearance:none;
|
|
5114
|
-
-moz-appearance:none;
|
|
5115
|
-
appearance:none;
|
|
5116
|
-
opacity:0;
|
|
5117
|
-
position:absolute;
|
|
5118
|
-
}
|
|
5119
|
-
.iui-radio-tile-container > label > .iui-radio-tile{
|
|
5120
|
-
width:160px;
|
|
5121
|
-
height:100%;
|
|
5122
|
-
box-sizing:border-box;
|
|
5123
|
-
padding:8px;
|
|
5124
|
-
position:relative;
|
|
5125
|
-
z-index:1;
|
|
5126
|
-
border:1px solid rgba(0, 0, 0, 0.4);
|
|
5127
|
-
background-color:white;
|
|
5128
|
-
border:1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
5129
|
-
background-color:var(--iui-color-background-1);
|
|
5130
|
-
}
|
|
5131
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5132
|
-
.iui-radio-tile-container > label > .iui-radio-tile{
|
|
5133
|
-
transition:border-color 0.2s ease-out;
|
|
5134
|
-
}
|
|
5135
|
-
}
|
|
5136
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-icon{
|
|
5137
|
-
width:32px;
|
|
5138
|
-
height:32px;
|
|
5139
|
-
display:block;
|
|
5140
|
-
margin:0 auto;
|
|
5141
|
-
margin-top:6px;
|
|
5142
|
-
margin-bottom:11px;
|
|
5143
|
-
fill:rgba(0, 0, 0, 0.4);
|
|
5144
|
-
fill:var(--iui-icons-color);
|
|
5145
|
-
}
|
|
5146
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5147
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-icon{
|
|
5148
|
-
transition:fill 0.2s ease-out;
|
|
5149
|
-
}
|
|
5150
|
-
}
|
|
5151
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-checkmark{
|
|
5152
|
-
display:none;
|
|
5153
|
-
width:16px;
|
|
5154
|
-
height:16px;
|
|
5155
|
-
position:absolute;
|
|
5156
|
-
right:8px;
|
|
5157
|
-
fill:#008ae0;
|
|
5158
|
-
fill:var(--iui-icons-color-primary);
|
|
5159
|
-
}
|
|
5160
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-label{
|
|
5161
|
-
font-size:14px;
|
|
5162
|
-
font-weight:600;
|
|
5163
|
-
line-height:22px;
|
|
5164
|
-
text-align:center;
|
|
5165
|
-
color:rgba(0, 0, 0, 0.8);
|
|
5166
|
-
color:var(--iui-text-color);
|
|
5167
|
-
}
|
|
5168
|
-
.iui-radio-tile-container > label > .iui-radio-tile > .iui-description{
|
|
5169
|
-
font-size:12px;
|
|
5170
|
-
line-height:15px;
|
|
5171
|
-
text-align:center;
|
|
5172
|
-
color:rgba(0, 0, 0, 0.4);
|
|
5173
|
-
color:var(--iui-text-color-muted);
|
|
5174
|
-
}
|
|
5175
|
-
.iui-radio-tile-container > label:first-child > .iui-radio-tile{
|
|
5176
|
-
border-radius:3px 0 0 3px;
|
|
5177
|
-
}
|
|
5178
|
-
.iui-radio-tile-container > label:last-child > .iui-radio-tile{
|
|
5179
|
-
border-radius:0 3px 3px 0;
|
|
5180
|
-
}
|
|
5181
|
-
.iui-radio-tile-container > label:not(:first-child) > .iui-radio-tile{
|
|
5182
|
-
margin-left:-1px;
|
|
5183
|
-
}
|
|
5184
|
-
.iui-radio-tile-container > label input:enabled:focus ~ .iui-radio-tile{
|
|
5185
|
-
outline:2px solid #008ae0;
|
|
5186
|
-
outline-offset:-4px;
|
|
5187
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
5188
|
-
outline-offset:-4px;
|
|
5189
|
-
}
|
|
5190
|
-
.iui-radio-tile-container > label input:enabled:focus:not(:focus-visible) ~ .iui-radio-tile{
|
|
5191
|
-
outline:none;
|
|
5192
|
-
}
|
|
5193
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile{
|
|
5194
|
-
z-index:2;
|
|
5195
|
-
border-color:rgba(0, 0, 0, 0.8);
|
|
5196
|
-
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
5197
|
-
}
|
|
5198
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5199
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile{
|
|
5200
|
-
transition:border-color 0.2s ease-out;
|
|
5201
|
-
}
|
|
5202
|
-
}
|
|
5203
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile > .iui-icon{
|
|
5204
|
-
fill:rgba(0, 0, 0, 0.8);
|
|
5205
|
-
fill:var(--iui-icons-color-actionable);
|
|
5206
|
-
}
|
|
5207
|
-
@media (prefers-reduced-motion: no-preference){
|
|
5208
|
-
.iui-radio-tile-container > label:hover > input:enabled:not(:checked) ~ .iui-radio-tile > .iui-icon{
|
|
5209
|
-
transition:fill 0.2s ease-out;
|
|
5210
|
-
}
|
|
5211
|
-
}
|
|
5212
|
-
.iui-radio-tile-container > label input:checked ~ .iui-radio-tile{
|
|
5213
|
-
padding:7px;
|
|
5214
|
-
z-index:3;
|
|
5215
|
-
border:2px solid #008ae0;
|
|
5216
|
-
border:2px solid var(--iui-color-foreground-primary);
|
|
5217
|
-
}
|
|
5218
|
-
.iui-radio-tile-container > label input:checked ~ .iui-radio-tile > .iui-icon{
|
|
5219
|
-
fill:#008ae0;
|
|
5220
|
-
fill:var(--iui-icons-color-primary);
|
|
5221
|
-
}
|
|
5222
|
-
.iui-radio-tile-container > label input:checked ~ .iui-radio-tile > .iui-checkmark{
|
|
5223
|
-
display:inline-block;
|
|
5224
|
-
}
|
|
5225
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile{
|
|
5226
|
-
cursor:not-allowed;
|
|
5227
|
-
z-index:0;
|
|
5228
|
-
border-color:#edeff2;
|
|
5229
|
-
background-color:#edeff2;
|
|
5230
|
-
border-color:var(--iui-color-background-disabled);
|
|
5231
|
-
background-color:var(--iui-color-background-disabled);
|
|
5232
|
-
}
|
|
5233
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile > .iui-checkmark{
|
|
5234
|
-
fill:rgba(0, 0, 0, 0.2);
|
|
5235
|
-
fill:var(--iui-icons-color-actionable-disabled);
|
|
5236
|
-
}
|
|
5237
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile > .iui-icon{
|
|
5238
|
-
fill:rgba(0, 0, 0, 0.2);
|
|
5239
|
-
fill:var(--iui-icons-color-actionable-disabled);
|
|
5240
|
-
filter:grayscale(100%);
|
|
5241
|
-
}
|
|
5242
|
-
.iui-radio-tile-container > label input:disabled ~ .iui-radio-tile > .iui-label{
|
|
5243
|
-
color:rgba(0, 0, 0, 0.4);
|
|
5244
|
-
color:var(--iui-text-color-muted);
|
|
5245
|
-
}
|
|
5246
|
-
.iui-radio-tile-container > label input:disabled:checked ~ .iui-radio-tile{
|
|
5247
|
-
z-index:3;
|
|
5248
|
-
border:2px solid rgba(0, 0, 0, 0.4);
|
|
5249
|
-
border:2px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
5250
|
-
}
|
|
5251
|
-
|
|
5252
5181
|
.iui-keyboard{
|
|
5253
5182
|
margin:0;
|
|
5254
5183
|
padding:0;
|
|
@@ -5537,6 +5466,27 @@ label.iui-input-label.iui-disabled{
|
|
|
5537
5466
|
fill:rgba(0, 0, 0, 0.2);
|
|
5538
5467
|
fill:var(--iui-icons-color-actionable-disabled);
|
|
5539
5468
|
}
|
|
5469
|
+
.iui-menu-item-skeleton{
|
|
5470
|
+
--iui-menu-item-content-skeleton-max-width:30%;
|
|
5471
|
+
cursor:auto;
|
|
5472
|
+
}
|
|
5473
|
+
.iui-menu-item-skeleton .iui-content{
|
|
5474
|
+
max-width:var(--iui-menu-item-content-skeleton-max-width);
|
|
5475
|
+
}
|
|
5476
|
+
.iui-menu-item-skeleton .iui-menu-label{
|
|
5477
|
+
width:100%;
|
|
5478
|
+
height:14px;
|
|
5479
|
+
vertical-align:middle;
|
|
5480
|
+
}
|
|
5481
|
+
.iui-menu-item-skeleton .iui-menu-description{
|
|
5482
|
+
width:70%;
|
|
5483
|
+
height:12px;
|
|
5484
|
+
vertical-align:middle;
|
|
5485
|
+
margin-top:4px;
|
|
5486
|
+
}
|
|
5487
|
+
.iui-menu-item-skeleton:hover{
|
|
5488
|
+
background-color:unset;
|
|
5489
|
+
}
|
|
5540
5490
|
|
|
5541
5491
|
.iui-menu-content{
|
|
5542
5492
|
padding:11px 13px;
|
|
@@ -6034,8 +5984,8 @@ label.iui-input-label.iui-disabled{
|
|
|
6034
5984
|
all:revert;
|
|
6035
5985
|
}
|
|
6036
5986
|
.iui-popover.tippy-box[data-reference-hidden]{
|
|
6037
|
-
visibility:
|
|
6038
|
-
pointer-events:
|
|
5987
|
+
visibility:hidden;
|
|
5988
|
+
pointer-events:none;
|
|
6039
5989
|
}
|
|
6040
5990
|
.iui-popover .tippy-content{
|
|
6041
5991
|
all:revert;
|
|
@@ -6431,14 +6381,232 @@ label.iui-input-label.iui-disabled{
|
|
|
6431
6381
|
animation:closeAnimation 0.2s linear;
|
|
6432
6382
|
}
|
|
6433
6383
|
|
|
6434
|
-
.iui-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
border-
|
|
6441
|
-
|
|
6384
|
+
.iui-radio-tile{
|
|
6385
|
+
cursor:pointer;
|
|
6386
|
+
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.1);
|
|
6387
|
+
-webkit-tap-highlight-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
6388
|
+
}
|
|
6389
|
+
.iui-radio-tile:first-of-type > .iui-radio-tile-content{
|
|
6390
|
+
border-radius:3px 0 0 3px;
|
|
6391
|
+
}
|
|
6392
|
+
.iui-radio-tile:last-of-type > .iui-radio-tile-content{
|
|
6393
|
+
border-radius:0 3px 3px 0;
|
|
6394
|
+
}
|
|
6395
|
+
.iui-radio-tile:not(:first-of-type) > .iui-radio-tile-content{
|
|
6396
|
+
margin-left:-1px;
|
|
6397
|
+
}
|
|
6398
|
+
|
|
6399
|
+
.iui-radio-tile-content{
|
|
6400
|
+
width:160px;
|
|
6401
|
+
height:100%;
|
|
6402
|
+
box-sizing:border-box;
|
|
6403
|
+
padding:8px;
|
|
6404
|
+
position:relative;
|
|
6405
|
+
z-index:1;
|
|
6406
|
+
border:1px solid rgba(0, 0, 0, 0.4);
|
|
6407
|
+
background-color:white;
|
|
6408
|
+
border:1px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
6409
|
+
background-color:var(--iui-color-background-1);
|
|
6410
|
+
}
|
|
6411
|
+
@media (prefers-reduced-motion: no-preference){
|
|
6412
|
+
.iui-radio-tile-content{
|
|
6413
|
+
transition:border-color 0.2s ease-out;
|
|
6414
|
+
}
|
|
6415
|
+
}
|
|
6416
|
+
.iui-radio-tile-content:hover{
|
|
6417
|
+
z-index:2;
|
|
6418
|
+
border-color:rgba(0, 0, 0, 0.8);
|
|
6419
|
+
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
6420
|
+
}
|
|
6421
|
+
.iui-radio-tile-content:hover svg{
|
|
6422
|
+
fill:rgba(0, 0, 0, 0.8);
|
|
6423
|
+
fill:var(--iui-icons-color-actionable);
|
|
6424
|
+
}
|
|
6425
|
+
@media (forced-colors: active){
|
|
6426
|
+
.iui-radio-tile-content:hover svg{
|
|
6427
|
+
fill:CanvasText;
|
|
6428
|
+
}
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6431
|
+
.iui-radio-tile-container{
|
|
6432
|
+
display:inline-flex;
|
|
6433
|
+
flex-wrap:wrap;
|
|
6434
|
+
-webkit-user-select:none;
|
|
6435
|
+
-moz-user-select:none;
|
|
6436
|
+
-ms-user-select:none;
|
|
6437
|
+
user-select:none;
|
|
6438
|
+
position:relative;
|
|
6439
|
+
z-index:0;
|
|
6440
|
+
}
|
|
6441
|
+
|
|
6442
|
+
.iui-radio-tile-input{
|
|
6443
|
+
width:0;
|
|
6444
|
+
height:0;
|
|
6445
|
+
-webkit-appearance:none;
|
|
6446
|
+
-moz-appearance:none;
|
|
6447
|
+
appearance:none;
|
|
6448
|
+
opacity:0;
|
|
6449
|
+
position:absolute;
|
|
6450
|
+
}
|
|
6451
|
+
.iui-radio-tile-input:focus-visible + *{
|
|
6452
|
+
outline-offset:-4px;
|
|
6453
|
+
outline:2px solid #008ae0;
|
|
6454
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
6455
|
+
}
|
|
6456
|
+
@media (forced-colors: active){
|
|
6457
|
+
.iui-radio-tile-input:focus-visible + *{
|
|
6458
|
+
outline-color:Highlight;
|
|
6459
|
+
}
|
|
6460
|
+
}
|
|
6461
|
+
@supports not selector(*:focus-visible){
|
|
6462
|
+
.iui-radio-tile-input:focus + *{
|
|
6463
|
+
outline-offset:-4px;
|
|
6464
|
+
outline:2px solid #008ae0;
|
|
6465
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
6466
|
+
}
|
|
6467
|
+
@media (forced-colors: active){
|
|
6468
|
+
.iui-radio-tile-input:focus + *{
|
|
6469
|
+
outline-color:Highlight;
|
|
6470
|
+
}
|
|
6471
|
+
}
|
|
6472
|
+
}
|
|
6473
|
+
.iui-radio-tile-input:checked + *{
|
|
6474
|
+
padding:7px;
|
|
6475
|
+
z-index:3;
|
|
6476
|
+
border:2px solid #008ae0;
|
|
6477
|
+
border:2px solid var(--iui-color-foreground-primary);
|
|
6478
|
+
}
|
|
6479
|
+
@media (forced-colors: active){
|
|
6480
|
+
.iui-radio-tile-input:checked + *{
|
|
6481
|
+
border-color:Highlight;
|
|
6482
|
+
}
|
|
6483
|
+
}
|
|
6484
|
+
.iui-radio-tile-input:checked + * svg{
|
|
6485
|
+
fill:#008ae0;
|
|
6486
|
+
fill:var(--iui-icons-color-primary);
|
|
6487
|
+
}
|
|
6488
|
+
@media (forced-colors: active){
|
|
6489
|
+
.iui-radio-tile-input:checked + * svg{
|
|
6490
|
+
fill:Highlight;
|
|
6491
|
+
}
|
|
6492
|
+
}
|
|
6493
|
+
.iui-radio-tile-input:checked + *::after{
|
|
6494
|
+
content:"";
|
|
6495
|
+
width:16px;
|
|
6496
|
+
height:16px;
|
|
6497
|
+
position:absolute;
|
|
6498
|
+
top:8px;
|
|
6499
|
+
right:8px;
|
|
6500
|
+
-webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6,14L0,8l2-2l4,4l8-8l2,2L6,14z" /></svg>');
|
|
6501
|
+
mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6,14L0,8l2-2l4,4l8-8l2,2L6,14z" /></svg>');
|
|
6502
|
+
background-color:#008ae0;
|
|
6503
|
+
background-color:var(--iui-color-foreground-primary);
|
|
6504
|
+
}
|
|
6505
|
+
@media (forced-colors: active){
|
|
6506
|
+
.iui-radio-tile-input:checked + *::after{
|
|
6507
|
+
background-color:Highlight;
|
|
6508
|
+
}
|
|
6509
|
+
}
|
|
6510
|
+
.iui-radio-tile-input:disabled + *{
|
|
6511
|
+
cursor:not-allowed;
|
|
6512
|
+
z-index:0;
|
|
6513
|
+
border-color:#edeff2;
|
|
6514
|
+
background-color:#edeff2;
|
|
6515
|
+
border-color:var(--iui-color-background-disabled);
|
|
6516
|
+
background-color:var(--iui-color-background-disabled);
|
|
6517
|
+
}
|
|
6518
|
+
.iui-radio-tile-input:disabled + *::after{
|
|
6519
|
+
background-color:rgba(0, 0, 0, 0.2);
|
|
6520
|
+
background-color:var(--iui-icons-color-actionable-disabled);
|
|
6521
|
+
}
|
|
6522
|
+
@media (forced-colors: active){
|
|
6523
|
+
.iui-radio-tile-input:disabled + *::after{
|
|
6524
|
+
background-color:GrayText;
|
|
6525
|
+
}
|
|
6526
|
+
}
|
|
6527
|
+
.iui-radio-tile-input:disabled + * svg{
|
|
6528
|
+
fill:rgba(0, 0, 0, 0.2);
|
|
6529
|
+
fill:var(--iui-icons-color-actionable-disabled);
|
|
6530
|
+
}
|
|
6531
|
+
@media (forced-colors: active){
|
|
6532
|
+
.iui-radio-tile-input:disabled + * svg{
|
|
6533
|
+
fill:GrayText;
|
|
6534
|
+
}
|
|
6535
|
+
}
|
|
6536
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-icon{
|
|
6537
|
+
filter:grayscale(100%);
|
|
6538
|
+
}
|
|
6539
|
+
@media (forced-colors: active){
|
|
6540
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-label,
|
|
6541
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-sublabel{
|
|
6542
|
+
color:GrayText;
|
|
6543
|
+
}
|
|
6544
|
+
}
|
|
6545
|
+
.iui-radio-tile-input:disabled + * .iui-radio-tile-label{
|
|
6546
|
+
color:rgba(0, 0, 0, 0.4);
|
|
6547
|
+
color:var(--iui-text-color-muted);
|
|
6548
|
+
}
|
|
6549
|
+
.iui-radio-tile-input:disabled:checked + *{
|
|
6550
|
+
z-index:3;
|
|
6551
|
+
border:2px solid rgba(0, 0, 0, 0.4);
|
|
6552
|
+
border:2px solid rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-4));
|
|
6553
|
+
}
|
|
6554
|
+
@media (forced-colors: active){
|
|
6555
|
+
.iui-radio-tile-input:disabled:checked + *{
|
|
6556
|
+
border-color:GrayText;
|
|
6557
|
+
}
|
|
6558
|
+
}
|
|
6559
|
+
|
|
6560
|
+
.iui-radio-tile-icon{
|
|
6561
|
+
width:32px;
|
|
6562
|
+
height:32px;
|
|
6563
|
+
display:block;
|
|
6564
|
+
margin:0 auto;
|
|
6565
|
+
padding-top:6px;
|
|
6566
|
+
padding-bottom:11px;
|
|
6567
|
+
}
|
|
6568
|
+
.iui-radio-tile-icon svg{
|
|
6569
|
+
fill:rgba(0, 0, 0, 0.4);
|
|
6570
|
+
fill:var(--iui-icons-color);
|
|
6571
|
+
}
|
|
6572
|
+
@media (prefers-reduced-motion: no-preference){
|
|
6573
|
+
.iui-radio-tile-icon svg{
|
|
6574
|
+
transition:fill 0.2s ease-out;
|
|
6575
|
+
}
|
|
6576
|
+
}
|
|
6577
|
+
@media (forced-colors: active){
|
|
6578
|
+
.iui-radio-tile-icon svg{
|
|
6579
|
+
fill:CanvasText;
|
|
6580
|
+
}
|
|
6581
|
+
}
|
|
6582
|
+
|
|
6583
|
+
.iui-radio-tile-label{
|
|
6584
|
+
font-size:14px;
|
|
6585
|
+
font-weight:600;
|
|
6586
|
+
line-height:22px;
|
|
6587
|
+
text-align:center;
|
|
6588
|
+
word-break:break-word;
|
|
6589
|
+
color:rgba(0, 0, 0, 0.8);
|
|
6590
|
+
color:var(--iui-text-color);
|
|
6591
|
+
}
|
|
6592
|
+
|
|
6593
|
+
.iui-radio-tile-sublabel{
|
|
6594
|
+
font-size:12px;
|
|
6595
|
+
line-height:15px;
|
|
6596
|
+
text-align:center;
|
|
6597
|
+
word-break:break-word;
|
|
6598
|
+
color:rgba(0, 0, 0, 0.4);
|
|
6599
|
+
color:var(--iui-text-color-muted);
|
|
6600
|
+
}
|
|
6601
|
+
|
|
6602
|
+
.iui-side-navigation{
|
|
6603
|
+
display:inline-flex;
|
|
6604
|
+
flex:0 0 auto;
|
|
6605
|
+
flex-direction:column;
|
|
6606
|
+
height:100%;
|
|
6607
|
+
background-color:#edeff2;
|
|
6608
|
+
border-right:1px solid #c7ccd1;
|
|
6609
|
+
background-color:var(--iui-color-background-3);
|
|
6442
6610
|
border-right:1px solid var(--iui-color-background-border);
|
|
6443
6611
|
}
|
|
6444
6612
|
@media (prefers-reduced-motion: no-preference){
|
|
@@ -6649,6 +6817,71 @@ label.iui-input-label.iui-disabled{
|
|
|
6649
6817
|
height:100%;
|
|
6650
6818
|
}
|
|
6651
6819
|
|
|
6820
|
+
.iui-skip-to-content-link{
|
|
6821
|
+
background-color:rgba(0, 0, 0, 0.8);
|
|
6822
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
6823
|
+
color:white;
|
|
6824
|
+
color:var(--iui-color-foreground-accessory);
|
|
6825
|
+
border-radius:9999px;
|
|
6826
|
+
text-decoration:none;
|
|
6827
|
+
-webkit-user-select:none;
|
|
6828
|
+
-moz-user-select:none;
|
|
6829
|
+
-ms-user-select:none;
|
|
6830
|
+
user-select:none;
|
|
6831
|
+
padding:8.25px 16px;
|
|
6832
|
+
position:fixed;
|
|
6833
|
+
text-align:center;
|
|
6834
|
+
left:50%;
|
|
6835
|
+
top:22px;
|
|
6836
|
+
opacity:0;
|
|
6837
|
+
z-index:99;
|
|
6838
|
+
transform:translateX(-50%) translateY(-170%);
|
|
6839
|
+
transition:background-color 0.2s ease-in-out;
|
|
6840
|
+
}
|
|
6841
|
+
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
6842
|
+
.iui-skip-to-content-link{
|
|
6843
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-3));
|
|
6844
|
+
-webkit-backdrop-filter:blur(5px);
|
|
6845
|
+
backdrop-filter:blur(5px);
|
|
6846
|
+
}
|
|
6847
|
+
}
|
|
6848
|
+
.iui-skip-to-content-link:focus-visible{
|
|
6849
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
6850
|
+
outline-offset:2px;
|
|
6851
|
+
}
|
|
6852
|
+
@supports not selector(*:focus-visible){
|
|
6853
|
+
.iui-skip-to-content-link:focus{
|
|
6854
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
6855
|
+
outline-offset:2px;
|
|
6856
|
+
}
|
|
6857
|
+
}
|
|
6858
|
+
@media (prefers-reduced-motion: no-preference){
|
|
6859
|
+
.iui-skip-to-content-link{
|
|
6860
|
+
transition:opacity 0.8s ease-in-out, background-color 0.8s ease-in-out, transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
|
|
6861
|
+
}
|
|
6862
|
+
}
|
|
6863
|
+
.iui-skip-to-content-link:hover{
|
|
6864
|
+
background-color:black;
|
|
6865
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-1));
|
|
6866
|
+
}
|
|
6867
|
+
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
6868
|
+
.iui-skip-to-content-link:hover{
|
|
6869
|
+
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
6870
|
+
-webkit-backdrop-filter:blur(5px);
|
|
6871
|
+
backdrop-filter:blur(5px);
|
|
6872
|
+
}
|
|
6873
|
+
}
|
|
6874
|
+
.iui-skip-to-content-link:focus{
|
|
6875
|
+
opacity:1;
|
|
6876
|
+
transform:translateX(-50%) translateY(0);
|
|
6877
|
+
box-shadow:0 6px 30px rgba(0, 0, 0, 0.25);
|
|
6878
|
+
}
|
|
6879
|
+
@media (prefers-reduced-motion: no-preference){
|
|
6880
|
+
.iui-skip-to-content-link:focus{
|
|
6881
|
+
transition:opacity 0s ease-in-out, background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
6882
|
+
}
|
|
6883
|
+
}
|
|
6884
|
+
|
|
6652
6885
|
.iui-slider-component-container{
|
|
6653
6886
|
display:flex;
|
|
6654
6887
|
min-height:22px;
|
|
@@ -6809,6 +7042,22 @@ label.iui-input-label.iui-disabled{
|
|
|
6809
7042
|
background-color:var(--iui-color-foreground-primary);
|
|
6810
7043
|
}
|
|
6811
7044
|
|
|
7045
|
+
.iui-surface{
|
|
7046
|
+
--iui-surface-background-color:var(--iui-color-background-1);
|
|
7047
|
+
--iui-surface-border-radius:0;
|
|
7048
|
+
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
7049
|
+
background-color:var(--iui-surface-background-color);
|
|
7050
|
+
border-radius:var(--iui-surface-border-radius);
|
|
7051
|
+
box-shadow:var(--iui-surface-elevation);
|
|
7052
|
+
box-sizing:border-box;
|
|
7053
|
+
color:var(--iui-text-color);
|
|
7054
|
+
}
|
|
7055
|
+
@media (forced-colors: active){
|
|
7056
|
+
.iui-surface{
|
|
7057
|
+
border:1px solid transparent;
|
|
7058
|
+
}
|
|
7059
|
+
}
|
|
7060
|
+
|
|
6812
7061
|
.iui-table{
|
|
6813
7062
|
margin:0;
|
|
6814
7063
|
padding:0;
|
|
@@ -7566,6 +7815,10 @@ label.iui-input-label.iui-disabled{
|
|
|
7566
7815
|
fill:#008ae0;
|
|
7567
7816
|
fill:var(--iui-icons-color-primary);
|
|
7568
7817
|
}
|
|
7818
|
+
.iui-tabs .iui-tab.iui-active .iui-tab-description{
|
|
7819
|
+
opacity:1;
|
|
7820
|
+
opacity:var(--iui-opacity-1);
|
|
7821
|
+
}
|
|
7569
7822
|
.iui-tabs .iui-tab[disabled]{
|
|
7570
7823
|
cursor:not-allowed;
|
|
7571
7824
|
color:rgba(0, 0, 0, 0.4);
|
|
@@ -7843,31 +8096,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7843
8096
|
user-select:all;
|
|
7844
8097
|
text-transform:lowercase;
|
|
7845
8098
|
display:inline-flex;
|
|
7846
|
-
}
|
|
7847
|
-
.iui-tag:focus-visible{
|
|
7848
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
7849
|
-
outline-offset:-2px;
|
|
7850
|
-
}
|
|
7851
|
-
@supports not selector(*:focus-visible){
|
|
7852
|
-
.iui-tag:focus{
|
|
7853
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
7854
|
-
outline-offset:-2px;
|
|
7855
|
-
}
|
|
7856
|
-
}
|
|
7857
|
-
.iui-tag:not(a){
|
|
7858
|
-
color:rgba(0, 0, 0, 0.4);
|
|
7859
|
-
color:var(--iui-text-color-muted);
|
|
7860
|
-
}
|
|
7861
|
-
.iui-tag:not(.iui-basic){
|
|
7862
8099
|
height:33px;
|
|
7863
8100
|
margin:3px 0;
|
|
7864
|
-
border-radius:
|
|
8101
|
+
border-radius:9999px;
|
|
7865
8102
|
box-sizing:border-box;
|
|
7866
8103
|
padding:0 2px;
|
|
7867
8104
|
align-items:center;
|
|
8105
|
+
transition:border-color 0.2s ease-out;
|
|
7868
8106
|
font-size:14px;
|
|
7869
8107
|
text-transform:none;
|
|
7870
8108
|
cursor:default;
|
|
8109
|
+
-webkit-tap-highlight-color:transparent;
|
|
7871
8110
|
border:1px solid rgba(0, 0, 0, 0.4);
|
|
7872
8111
|
background-color:white;
|
|
7873
8112
|
color:rgba(0, 0, 0, 0.8);
|
|
@@ -7875,12 +8114,28 @@ label.iui-input-label.iui-disabled{
|
|
|
7875
8114
|
background-color:var(--iui-color-background-1);
|
|
7876
8115
|
color:var(--iui-text-color);
|
|
7877
8116
|
}
|
|
7878
|
-
|
|
7879
|
-
|
|
7880
|
-
|
|
7881
|
-
}
|
|
8117
|
+
.iui-tag:hover{
|
|
8118
|
+
border-color:black;
|
|
8119
|
+
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
7882
8120
|
}
|
|
7883
|
-
|
|
8121
|
+
|
|
8122
|
+
.iui-tag-basic{
|
|
8123
|
+
margin:0;
|
|
8124
|
+
padding:0;
|
|
8125
|
+
border:none;
|
|
8126
|
+
vertical-align:baseline;
|
|
8127
|
+
-webkit-user-select:all;
|
|
8128
|
+
-moz-user-select:all;
|
|
8129
|
+
user-select:all;
|
|
8130
|
+
text-transform:lowercase;
|
|
8131
|
+
display:inline-flex;
|
|
8132
|
+
}
|
|
8133
|
+
.iui-tag-basic:not(a){
|
|
8134
|
+
color:rgba(0, 0, 0, 0.4);
|
|
8135
|
+
color:var(--iui-text-color-muted);
|
|
8136
|
+
}
|
|
8137
|
+
|
|
8138
|
+
.iui-tag-label{
|
|
7884
8139
|
margin:0;
|
|
7885
8140
|
padding:0;
|
|
7886
8141
|
border:none;
|
|
@@ -7893,21 +8148,15 @@ label.iui-input-label.iui-disabled{
|
|
|
7893
8148
|
overflow:hidden;
|
|
7894
8149
|
margin:0 4px 0 8px;
|
|
7895
8150
|
}
|
|
7896
|
-
.iui-tag
|
|
8151
|
+
.iui-tag-label:only-child{
|
|
7897
8152
|
margin:0 8px;
|
|
7898
8153
|
}
|
|
7899
|
-
|
|
8154
|
+
|
|
8155
|
+
.iui-tag-button{
|
|
7900
8156
|
border-radius:50%;
|
|
7901
8157
|
}
|
|
7902
|
-
.iui-tag:not(.iui-basic):hover{
|
|
7903
|
-
border-color:black;
|
|
7904
|
-
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
7905
|
-
}
|
|
7906
|
-
.iui-tag.iui-basic{
|
|
7907
|
-
outline-offset:1px;
|
|
7908
|
-
}
|
|
7909
8158
|
|
|
7910
|
-
a.iui-tag{
|
|
8159
|
+
a.iui-tag-basic{
|
|
7911
8160
|
--_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>");
|
|
7912
8161
|
color:#008ae0;
|
|
7913
8162
|
-webkit-tap-highlight-color:rgba(0, 138, 224, 0.2);
|
|
@@ -7917,21 +8166,21 @@ a.iui-tag{
|
|
|
7917
8166
|
cursor:pointer;
|
|
7918
8167
|
text-decoration:none;
|
|
7919
8168
|
}
|
|
7920
|
-
a.iui-tag:focus-visible{
|
|
8169
|
+
a.iui-tag-basic:focus-visible{
|
|
7921
8170
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7922
8171
|
outline-offset:1px;
|
|
7923
8172
|
}
|
|
7924
8173
|
@supports not selector(*:focus-visible){
|
|
7925
|
-
a.iui-tag:focus{
|
|
8174
|
+
a.iui-tag-basic:focus{
|
|
7926
8175
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
7927
8176
|
outline-offset:1px;
|
|
7928
8177
|
}
|
|
7929
8178
|
}
|
|
7930
|
-
a.iui-tag:hover{
|
|
8179
|
+
a.iui-tag-basic:hover{
|
|
7931
8180
|
color:#006bad;
|
|
7932
8181
|
color:var(--iui-color-foreground-primary-overlay);
|
|
7933
8182
|
}
|
|
7934
|
-
a.iui-tag-external::after{
|
|
8183
|
+
a.iui-tag-basic-external::after{
|
|
7935
8184
|
content:"";
|
|
7936
8185
|
display:inline-block;
|
|
7937
8186
|
width:1.5ch;
|
|
@@ -7943,46 +8192,57 @@ a.iui-tag-external::after{
|
|
|
7943
8192
|
mask:var(--_iui-anchor-external-svg);
|
|
7944
8193
|
}
|
|
7945
8194
|
@media (forced-colors: active){
|
|
7946
|
-
a.iui-tag-external::after{
|
|
8195
|
+
a.iui-tag-basic-external::after{
|
|
7947
8196
|
background-color:LinkText;
|
|
7948
8197
|
}
|
|
7949
8198
|
}
|
|
7950
|
-
a.iui-tag:hover{
|
|
8199
|
+
a.iui-tag-basic:hover{
|
|
7951
8200
|
text-decoration:underline;
|
|
7952
8201
|
}
|
|
7953
8202
|
@media (prefers-contrast: more){
|
|
7954
|
-
a.iui-tag{
|
|
8203
|
+
a.iui-tag-basic{
|
|
7955
8204
|
text-decoration:underline;
|
|
7956
8205
|
}
|
|
7957
|
-
a.iui-tag:hover{
|
|
8206
|
+
a.iui-tag-basic:hover{
|
|
7958
8207
|
text-decoration:none;
|
|
7959
8208
|
}
|
|
7960
8209
|
}
|
|
7961
|
-
.iui-theme-light a.iui-tag, .iui-theme-dark a.iui-tag{
|
|
8210
|
+
.iui-theme-light a.iui-tag-basic, .iui-theme-dark a.iui-tag-basic{
|
|
7962
8211
|
text-decoration:none;
|
|
7963
8212
|
}
|
|
7964
|
-
.iui-theme-light a.iui-tag:hover, .iui-theme-dark a.iui-tag:hover{
|
|
8213
|
+
.iui-theme-light a.iui-tag-basic:hover, .iui-theme-dark a.iui-tag-basic:hover{
|
|
7965
8214
|
text-decoration:underline;
|
|
7966
8215
|
}
|
|
7967
8216
|
|
|
7968
|
-
.iui-theme-light-hc a.iui-tag, .iui-theme-dark-hc a.iui-tag{
|
|
8217
|
+
.iui-theme-light-hc a.iui-tag-basic, .iui-theme-dark-hc a.iui-tag-basic{
|
|
7969
8218
|
text-decoration:underline;
|
|
7970
8219
|
}
|
|
7971
|
-
.iui-theme-light-hc a.iui-tag:hover, .iui-theme-dark-hc a.iui-tag:hover{
|
|
8220
|
+
.iui-theme-light-hc a.iui-tag-basic:hover, .iui-theme-dark-hc a.iui-tag-basic:hover{
|
|
7972
8221
|
text-decoration:none;
|
|
7973
8222
|
}
|
|
7974
8223
|
|
|
8224
|
+
a.iui-tag-basic:focus-visible{
|
|
8225
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8226
|
+
outline-offset:1px;
|
|
8227
|
+
}
|
|
8228
|
+
@supports not selector(*:focus-visible){
|
|
8229
|
+
a.iui-tag-basic:focus{
|
|
8230
|
+
outline:1px solid var(--iui-color-foreground-primary);
|
|
8231
|
+
outline-offset:1px;
|
|
8232
|
+
}
|
|
8233
|
+
}
|
|
8234
|
+
|
|
7975
8235
|
.iui-tag-container{
|
|
7976
8236
|
color:rgba(0, 0, 0, 0.4);
|
|
7977
8237
|
color:var(--iui-text-color-muted);
|
|
7978
8238
|
}
|
|
7979
|
-
.iui-tag-container > a.iui-basic{
|
|
8239
|
+
.iui-tag-container > a.iui-tag-basic{
|
|
7980
8240
|
margin:2px;
|
|
7981
8241
|
}
|
|
7982
|
-
.iui-tag-container >
|
|
8242
|
+
.iui-tag-container > *:not(last-child){
|
|
7983
8243
|
margin-right:4px;
|
|
7984
8244
|
}
|
|
7985
|
-
.iui-tag-container > .iui-basic:not(:last-child)::after{
|
|
8245
|
+
.iui-tag-container > .iui-tag-basic:not(:last-child)::after{
|
|
7986
8246
|
content:",";
|
|
7987
8247
|
}
|
|
7988
8248
|
.iui-tag-container.iui-truncate{
|
|
@@ -8005,8 +8265,8 @@ a.iui-tag:hover{
|
|
|
8005
8265
|
.iui-tag-container.iui-visible{
|
|
8006
8266
|
border-radius:3px;
|
|
8007
8267
|
padding:3px 12px;
|
|
8008
|
-
background-color:#
|
|
8009
|
-
background-color:var(--iui-color-background-
|
|
8268
|
+
background-color:#edeff2;
|
|
8269
|
+
background-color:var(--iui-color-background-3);
|
|
8010
8270
|
}
|
|
8011
8271
|
|
|
8012
8272
|
.iui-text-headline{
|
|
@@ -8082,11 +8342,17 @@ a.iui-tag:hover{
|
|
|
8082
8342
|
user-select:none;
|
|
8083
8343
|
color:transparent;
|
|
8084
8344
|
border-radius:3px;
|
|
8085
|
-
|
|
8086
|
-
background-
|
|
8087
|
-
background:linear-gradient(
|
|
8345
|
+
cursor:progress;
|
|
8346
|
+
background:linear-gradient(292deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
|
|
8347
|
+
background:linear-gradient(292deg, var(--iui-text-color-muted), var(--iui-text-color-muted), var(--iui-text-color-placeholder), var(--iui-text-color-muted), var(--iui-text-color-muted));
|
|
8088
8348
|
background-size:200% 100%;
|
|
8089
8349
|
}
|
|
8350
|
+
@media (forced-colors: active){
|
|
8351
|
+
.iui-skeleton{
|
|
8352
|
+
forced-color-adjust:none;
|
|
8353
|
+
background:linear-gradient(292deg, CanvasText, CanvasText, Canvas, CanvasText, CanvasText);
|
|
8354
|
+
}
|
|
8355
|
+
}
|
|
8090
8356
|
@media (prefers-reduced-motion: no-preference){
|
|
8091
8357
|
.iui-skeleton{
|
|
8092
8358
|
-webkit-animation:skeleton-shimmer 0.8s linear infinite;
|
|
@@ -8126,25 +8392,23 @@ a.iui-tag:hover{
|
|
|
8126
8392
|
padding:0;
|
|
8127
8393
|
border:none;
|
|
8128
8394
|
vertical-align:baseline;
|
|
8395
|
+
--iui-surface-background-color:var(--iui-color-background-1);
|
|
8396
|
+
--iui-surface-border-radius:0;
|
|
8397
|
+
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
8398
|
+
background-color:var(--iui-surface-background-color);
|
|
8399
|
+
border-radius:var(--iui-surface-border-radius);
|
|
8400
|
+
box-shadow:var(--iui-surface-elevation);
|
|
8401
|
+
box-sizing:border-box;
|
|
8402
|
+
color:var(--iui-text-color);
|
|
8129
8403
|
display:inline-flex;
|
|
8130
8404
|
flex-direction:column;
|
|
8131
8405
|
width:288px;
|
|
8132
|
-
box-shadow:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
8133
8406
|
-webkit-backface-visibility:hidden;
|
|
8134
8407
|
backface-visibility:hidden;
|
|
8135
|
-
background-color:white;
|
|
8136
|
-
color:rgba(0, 0, 0, 0.8);
|
|
8137
|
-
background-color:var(--iui-color-background-1);
|
|
8138
|
-
color:var(--iui-text-color);
|
|
8139
|
-
}
|
|
8140
|
-
.iui-tile:focus-visible{
|
|
8141
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
8142
|
-
outline-offset:2px;
|
|
8143
8408
|
}
|
|
8144
|
-
@
|
|
8145
|
-
.iui-tile
|
|
8146
|
-
|
|
8147
|
-
outline-offset:2px;
|
|
8409
|
+
@media (forced-colors: active){
|
|
8410
|
+
.iui-tile{
|
|
8411
|
+
border:1px solid transparent;
|
|
8148
8412
|
}
|
|
8149
8413
|
}
|
|
8150
8414
|
.iui-tile:hover .iui-tile-more-options, .iui-tile:focus-within .iui-tile-more-options{
|
|
@@ -8162,9 +8426,6 @@ a.iui-tag:hover{
|
|
|
8162
8426
|
.iui-tile:hover .iui-tile-metadata:not(:last-child), .iui-tile:focus-within .iui-tile-metadata:not(:last-child){
|
|
8163
8427
|
width:calc(100% - 32px);
|
|
8164
8428
|
}
|
|
8165
|
-
.iui-tile:hover .iui-tile-thumbnail-picture, .iui-tile:focus-within .iui-tile-thumbnail-picture{
|
|
8166
|
-
transform:translateZ(0) scale(1.1);
|
|
8167
|
-
}
|
|
8168
8429
|
.iui-tile.iui-new .iui-tile-name,
|
|
8169
8430
|
.iui-tile.iui-new .iui-tile-description{
|
|
8170
8431
|
font-weight:600;
|
|
@@ -8185,7 +8446,24 @@ a.iui-tag:hover{
|
|
|
8185
8446
|
outline-offset:0;
|
|
8186
8447
|
}
|
|
8187
8448
|
}
|
|
8188
|
-
.iui-tile.iui-
|
|
8449
|
+
.iui-tile.iui-actionable{
|
|
8450
|
+
cursor:pointer;
|
|
8451
|
+
transition:box-shadow 0.2s ease-in-out;
|
|
8452
|
+
}
|
|
8453
|
+
.iui-tile.iui-actionable:focus-visible{
|
|
8454
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
8455
|
+
outline-offset:2px;
|
|
8456
|
+
}
|
|
8457
|
+
@supports not selector(*:focus-visible){
|
|
8458
|
+
.iui-tile.iui-actionable:focus{
|
|
8459
|
+
outline:2px solid var(--iui-color-foreground-primary);
|
|
8460
|
+
outline-offset:2px;
|
|
8461
|
+
}
|
|
8462
|
+
}
|
|
8463
|
+
.iui-tile.iui-actionable:hover{
|
|
8464
|
+
box-shadow:0 3px 14px rgba(0, 0, 0, 0.25);
|
|
8465
|
+
}
|
|
8466
|
+
.iui-tile.iui-actionable:hover .iui-tile-thumbnail-picture, .iui-tile.iui-actionable:focus-within .iui-tile-thumbnail-picture, .iui-tile.iui-actionable.iui-selected .iui-tile-thumbnail-picture{
|
|
8189
8467
|
transform:translateZ(0) scale(1.1);
|
|
8190
8468
|
}
|
|
8191
8469
|
.iui-tile.iui-folder{
|
|
@@ -8746,7 +9024,7 @@ div.iui-tile-thumbnail-picture{
|
|
|
8746
9024
|
align-items:center;
|
|
8747
9025
|
flex-direction:column;
|
|
8748
9026
|
justify-content:center;
|
|
8749
|
-
z-index:
|
|
9027
|
+
z-index:99999;
|
|
8750
9028
|
}
|
|
8751
9029
|
@media screen and (max-width: 400px){
|
|
8752
9030
|
.iui-toast-wrapper{
|
|
@@ -9100,6 +9378,11 @@ div.iui-tile-thumbnail-picture{
|
|
|
9100
9378
|
color:rgba(0, 0, 0, 0.4);
|
|
9101
9379
|
color:var(--iui-text-color-muted);
|
|
9102
9380
|
}
|
|
9381
|
+
@media (forced-colors: active){
|
|
9382
|
+
.iui-toggle-switch-wrapper.iui-disabled{
|
|
9383
|
+
color:GrayText;
|
|
9384
|
+
}
|
|
9385
|
+
}
|
|
9103
9386
|
.iui-toggle-switch-wrapper.iui-label-on-left{
|
|
9104
9387
|
grid-template-areas:"label toggle";
|
|
9105
9388
|
}
|
|
@@ -9163,13 +9446,29 @@ div.iui-tile-thumbnail-picture{
|
|
|
9163
9446
|
transition:transform 0.2s ease-out, background-color 0.2s ease-out, opacity 0.2s ease-out;
|
|
9164
9447
|
}
|
|
9165
9448
|
}
|
|
9449
|
+
@media (forced-colors: active){
|
|
9450
|
+
.iui-toggle-switch{
|
|
9451
|
+
border-color:CanvasText;
|
|
9452
|
+
}
|
|
9453
|
+
}
|
|
9166
9454
|
.iui-toggle-switch::after{
|
|
9167
9455
|
background-color:var(--iui-color-foreground-body);
|
|
9168
9456
|
opacity:var(--iui-opacity-2);
|
|
9169
9457
|
}
|
|
9458
|
+
@media (forced-colors: active){
|
|
9459
|
+
.iui-toggle-switch::after{
|
|
9460
|
+
background-color:CanvasText;
|
|
9461
|
+
opacity:1;
|
|
9462
|
+
}
|
|
9463
|
+
}
|
|
9170
9464
|
.iui-toggle-switch:hover{
|
|
9171
9465
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
9172
9466
|
}
|
|
9467
|
+
@media (forced-colors: active){
|
|
9468
|
+
.iui-toggle-switch:hover{
|
|
9469
|
+
border-color:CanvasText;
|
|
9470
|
+
}
|
|
9471
|
+
}
|
|
9173
9472
|
.iui-toggle-switch:focus-visible{
|
|
9174
9473
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
|
|
9175
9474
|
}
|
|
@@ -9182,11 +9481,23 @@ div.iui-tile-thumbnail-picture{
|
|
|
9182
9481
|
background-color:var(--iui-color-background-primary);
|
|
9183
9482
|
border-color:var(--iui-color-background-primary);
|
|
9184
9483
|
}
|
|
9484
|
+
@media (forced-colors: active){
|
|
9485
|
+
.iui-toggle-switch:checked{
|
|
9486
|
+
background-color:Highlight;
|
|
9487
|
+
border-color:Highlight;
|
|
9488
|
+
}
|
|
9489
|
+
}
|
|
9185
9490
|
.iui-toggle-switch:checked::after{
|
|
9186
9491
|
transform:translateX(19px);
|
|
9187
9492
|
background-color:var(--iui-color-foreground-accessory);
|
|
9188
9493
|
opacity:var(--iui-opacity-2);
|
|
9189
9494
|
}
|
|
9495
|
+
@media (forced-colors: active){
|
|
9496
|
+
.iui-toggle-switch:checked::after{
|
|
9497
|
+
background-color:HighlightText;
|
|
9498
|
+
opacity:1;
|
|
9499
|
+
}
|
|
9500
|
+
}
|
|
9190
9501
|
.iui-toggle-switch:checked ~ .iui-toggle-switch-icon{
|
|
9191
9502
|
opacity:var(--iui-opacity-1);
|
|
9192
9503
|
}
|
|
@@ -9206,17 +9517,44 @@ div.iui-tile-thumbnail-picture{
|
|
|
9206
9517
|
background-color:var(--iui-color-background-disabled);
|
|
9207
9518
|
border-color:var(--iui-color-background-disabled);
|
|
9208
9519
|
}
|
|
9520
|
+
@media (forced-colors: active){
|
|
9521
|
+
.iui-toggle-switch:disabled{
|
|
9522
|
+
border-color:GrayText;
|
|
9523
|
+
}
|
|
9524
|
+
}
|
|
9209
9525
|
.iui-toggle-switch:disabled::after{
|
|
9210
9526
|
background-color:var(--iui-color-foreground-body);
|
|
9211
9527
|
opacity:var(--iui-opacity-5);
|
|
9212
9528
|
}
|
|
9529
|
+
@media (forced-colors: active){
|
|
9530
|
+
.iui-toggle-switch:disabled::after{
|
|
9531
|
+
background-color:GrayText;
|
|
9532
|
+
opacity:0.75;
|
|
9533
|
+
}
|
|
9534
|
+
}
|
|
9213
9535
|
.iui-toggle-switch:disabled ~ .iui-toggle-switch-icon{
|
|
9214
9536
|
opacity:0;
|
|
9215
9537
|
fill:var(--iui-icons-color-actionable);
|
|
9216
9538
|
}
|
|
9539
|
+
@media (forced-colors: active){
|
|
9540
|
+
.iui-toggle-switch:disabled:checked{
|
|
9541
|
+
background-color:GrayText;
|
|
9542
|
+
}
|
|
9543
|
+
}
|
|
9544
|
+
@media (forced-colors: active){
|
|
9545
|
+
.iui-toggle-switch:disabled:checked::after{
|
|
9546
|
+
background-color:Canvas;
|
|
9547
|
+
}
|
|
9548
|
+
}
|
|
9217
9549
|
.iui-toggle-switch:disabled:checked ~ .iui-toggle-switch-icon{
|
|
9218
9550
|
opacity:var(--iui-opacity-5);
|
|
9219
9551
|
}
|
|
9552
|
+
@media (forced-colors: active){
|
|
9553
|
+
.iui-toggle-switch:disabled:checked ~ .iui-toggle-switch-icon{
|
|
9554
|
+
fill:Canvas;
|
|
9555
|
+
opacity:0.75;
|
|
9556
|
+
}
|
|
9557
|
+
}
|
|
9220
9558
|
.iui-toggle-switch-icon{
|
|
9221
9559
|
opacity:0;
|
|
9222
9560
|
grid-area:toggle;
|
|
@@ -9230,6 +9568,11 @@ div.iui-tile-thumbnail-picture{
|
|
|
9230
9568
|
pointer-events:none;
|
|
9231
9569
|
fill:var(--iui-color-foreground-accessory);
|
|
9232
9570
|
}
|
|
9571
|
+
@media (forced-colors: active){
|
|
9572
|
+
.iui-toggle-switch-icon{
|
|
9573
|
+
fill:HighlightText;
|
|
9574
|
+
}
|
|
9575
|
+
}
|
|
9233
9576
|
|
|
9234
9577
|
.iui-tooltip-container{
|
|
9235
9578
|
width:-webkit-fit-content;
|
|
@@ -9859,85 +10202,4 @@ div.iui-tile-thumbnail-picture{
|
|
|
9859
10202
|
user-select:all;
|
|
9860
10203
|
color:#53a21a;
|
|
9861
10204
|
color:var(--iui-color-foreground-positive);
|
|
9862
|
-
}
|
|
9863
|
-
|
|
9864
|
-
.iui-skip-to-content-link{
|
|
9865
|
-
background-color:rgba(0, 0, 0, 0.8);
|
|
9866
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
9867
|
-
color:white;
|
|
9868
|
-
color:var(--iui-color-foreground-accessory);
|
|
9869
|
-
border-radius:9999px;
|
|
9870
|
-
text-decoration:none;
|
|
9871
|
-
-webkit-user-select:none;
|
|
9872
|
-
-moz-user-select:none;
|
|
9873
|
-
-ms-user-select:none;
|
|
9874
|
-
user-select:none;
|
|
9875
|
-
padding:8.25px 16px;
|
|
9876
|
-
position:fixed;
|
|
9877
|
-
text-align:center;
|
|
9878
|
-
left:50%;
|
|
9879
|
-
top:22px;
|
|
9880
|
-
opacity:0;
|
|
9881
|
-
z-index:99;
|
|
9882
|
-
transform:translateX(-50%) translateY(-170%);
|
|
9883
|
-
transition:background-color 0.2s ease-in-out;
|
|
9884
|
-
}
|
|
9885
|
-
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
9886
|
-
.iui-skip-to-content-link{
|
|
9887
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-3));
|
|
9888
|
-
-webkit-backdrop-filter:blur(5px);
|
|
9889
|
-
backdrop-filter:blur(5px);
|
|
9890
|
-
}
|
|
9891
|
-
}
|
|
9892
|
-
.iui-skip-to-content-link:focus-visible{
|
|
9893
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
9894
|
-
outline-offset:2px;
|
|
9895
|
-
}
|
|
9896
|
-
@supports not selector(*:focus-visible){
|
|
9897
|
-
.iui-skip-to-content-link:focus{
|
|
9898
|
-
outline:2px solid var(--iui-color-foreground-primary);
|
|
9899
|
-
outline-offset:2px;
|
|
9900
|
-
}
|
|
9901
|
-
}
|
|
9902
|
-
@media (prefers-reduced-motion: no-preference){
|
|
9903
|
-
.iui-skip-to-content-link{
|
|
9904
|
-
transition:opacity 0.8s ease-in-out, background-color 0.8s ease-in-out, transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
|
|
9905
|
-
}
|
|
9906
|
-
}
|
|
9907
|
-
.iui-skip-to-content-link:hover{
|
|
9908
|
-
background-color:black;
|
|
9909
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-1));
|
|
9910
|
-
}
|
|
9911
|
-
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))){
|
|
9912
|
-
.iui-skip-to-content-link:hover{
|
|
9913
|
-
background-color:rgba(0, 0, 0, var(--iui-opacity-2));
|
|
9914
|
-
-webkit-backdrop-filter:blur(5px);
|
|
9915
|
-
backdrop-filter:blur(5px);
|
|
9916
|
-
}
|
|
9917
|
-
}
|
|
9918
|
-
.iui-skip-to-content-link:focus{
|
|
9919
|
-
opacity:1;
|
|
9920
|
-
transform:translateX(-50%) translateY(0);
|
|
9921
|
-
box-shadow:0 6px 30px rgba(0, 0, 0, 0.25);
|
|
9922
|
-
}
|
|
9923
|
-
@media (prefers-reduced-motion: no-preference){
|
|
9924
|
-
.iui-skip-to-content-link:focus{
|
|
9925
|
-
transition:opacity 0s ease-in-out, background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
9926
|
-
}
|
|
9927
|
-
}
|
|
9928
|
-
|
|
9929
|
-
.iui-surface{
|
|
9930
|
-
--iui-surface-background-color:var(--iui-color-background-1);
|
|
9931
|
-
--iui-surface-border-radius:0;
|
|
9932
|
-
--iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
|
|
9933
|
-
background-color:var(--iui-surface-background-color);
|
|
9934
|
-
border-radius:var(--iui-surface-border-radius);
|
|
9935
|
-
box-shadow:var(--iui-surface-elevation);
|
|
9936
|
-
box-sizing:border-box;
|
|
9937
|
-
color:var(--iui-text-color);
|
|
9938
|
-
}
|
|
9939
|
-
@media (forced-colors: active){
|
|
9940
|
-
.iui-surface{
|
|
9941
|
-
border:1px solid transparent;
|
|
9942
|
-
}
|
|
9943
10205
|
}
|