@itwin/itwinui-css 0.32.0 → 0.33.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 +396 -58
- package/css/button.css +12 -0
- package/css/color-picker.css +1 -1
- package/css/date-picker.css +2 -3
- package/css/expandable-block.css +1 -1
- package/css/inputs.css +22 -0
- package/css/menu.css +5 -2
- package/css/notification-marker.css +218 -0
- package/css/side-navigation.css +53 -0
- package/css/table.css +1 -1
- package/css/time-picker.css +84 -50
- package/package.json +1 -1
- package/scss/button/default.scss +2 -0
- package/scss/classes.scss +1 -0
- package/scss/color-picker/color-picker.scss +1 -1
- package/scss/date-picker/date-picker.scss +2 -3
- package/scss/index.scss +1 -0
- package/scss/inputs/labeled-inputs.scss +25 -1
- package/scss/menu/classes.scss +4 -0
- package/scss/menu/menu.scss +8 -2
- package/scss/notification-marker/classes.scss +9 -0
- package/scss/notification-marker/index.scss +3 -0
- package/scss/notification-marker/notification-marker.scss +63 -0
- package/scss/side-navigation/classes.scss +8 -0
- package/scss/side-navigation/side-navigation.scss +55 -0
- package/scss/style/mixins.scss +1 -1
- package/scss/style/ripple.scss +18 -0
- package/scss/time-picker/classes.scss +9 -0
- package/scss/time-picker/time-picker.scss +37 -36
package/css/all.css
CHANGED
|
@@ -717,6 +717,18 @@ html.iui-theme-dark{
|
|
|
717
717
|
background-color:var(--iui-color-background-1-overlay);
|
|
718
718
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
719
719
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1)); }
|
|
720
|
+
.iui-button:enabled:hover .iui-notification-primary::before,
|
|
721
|
+
.iui-button:enabled:hover .iui-notification-positive::before,
|
|
722
|
+
.iui-button:enabled:hover .iui-notification-warning::before,
|
|
723
|
+
.iui-button:enabled:hover .iui-notification-negative::before, .iui-button:enabled:active .iui-notification-primary::before,
|
|
724
|
+
.iui-button:enabled:active .iui-notification-positive::before,
|
|
725
|
+
.iui-button:enabled:active .iui-notification-warning::before,
|
|
726
|
+
.iui-button:enabled:active .iui-notification-negative::before, .iui-button:focus-visible .iui-notification-primary::before,
|
|
727
|
+
.iui-button:focus-visible .iui-notification-positive::before,
|
|
728
|
+
.iui-button:focus-visible .iui-notification-warning::before,
|
|
729
|
+
.iui-button:focus-visible .iui-notification-negative::before{
|
|
730
|
+
border-color:#f2f2f2;
|
|
731
|
+
border-color:var(--iui-color-background-1-overlay); }
|
|
720
732
|
.iui-button:enabled:hover > .iui-icon, .iui-button:enabled:active > .iui-icon, .iui-button:focus-visible > .iui-icon{
|
|
721
733
|
fill:black;
|
|
722
734
|
fill:var(--iui-icons-color-actionable-hover); }
|
|
@@ -1067,7 +1079,7 @@ html.iui-theme-dark{
|
|
|
1067
1079
|
max-height:334px;
|
|
1068
1080
|
box-sizing:border-box;
|
|
1069
1081
|
border-radius:3px;
|
|
1070
|
-
display:flex;
|
|
1082
|
+
display:inline-flex;
|
|
1071
1083
|
padding:11px 12px;
|
|
1072
1084
|
-webkit-user-select:none;
|
|
1073
1085
|
-moz-user-select:none;
|
|
@@ -1254,9 +1266,8 @@ html.iui-theme-dark{
|
|
|
1254
1266
|
.iui-date-picker > .iui-calendar > .iui-dates > .iui-week > .iui-date{
|
|
1255
1267
|
cursor:pointer;
|
|
1256
1268
|
display:inline-block;
|
|
1257
|
-
width:
|
|
1258
|
-
line-height:
|
|
1259
|
-
margin:0 4px; }
|
|
1269
|
+
width:33px;
|
|
1270
|
+
line-height:33px; }
|
|
1260
1271
|
.iui-date-picker > .iui-calendar > .iui-dates > .iui-week > .iui-date:focus{
|
|
1261
1272
|
outline:0;
|
|
1262
1273
|
box-shadow:rgba(0, 139, 225, 0.2) 0 0 0 2px;
|
|
@@ -1396,7 +1407,7 @@ html.iui-theme-dark{
|
|
|
1396
1407
|
opacity:1; }
|
|
1397
1408
|
@media (prefers-reduced-motion: no-preference){
|
|
1398
1409
|
.iui-expandable-block .iui-expandable-content.iui-enter-active, .iui-expandable-block .iui-expandable-content.iui-exit-active{
|
|
1399
|
-
transition:opacity 0.2s ease-out, height 0.2s ease-out; } }
|
|
1410
|
+
transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out; } }
|
|
1400
1411
|
.iui-expandable-block .iui-expandable-content > div{
|
|
1401
1412
|
padding:11px 12px; }
|
|
1402
1413
|
.iui-expandable-block:hover > .iui-header{
|
|
@@ -2371,6 +2382,28 @@ html.iui-theme-dark{
|
|
|
2371
2382
|
margin-right:0;
|
|
2372
2383
|
border-top-left-radius:0;
|
|
2373
2384
|
border-bottom-left-radius:0; }
|
|
2385
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable{
|
|
2386
|
+
align-items:center;
|
|
2387
|
+
height:90%;
|
|
2388
|
+
margin-right:1px;
|
|
2389
|
+
padding:0 12px;
|
|
2390
|
+
cursor:pointer;
|
|
2391
|
+
background-position:center;
|
|
2392
|
+
transition:background 0.4s ease-out; }
|
|
2393
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable:hover{
|
|
2394
|
+
background:var(--iui-color-background-1) radial-gradient(circle, transparent 1%, var(--iui-color-background-1) 1%) center/15000%; }
|
|
2395
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable:active{
|
|
2396
|
+
background-color:var(--iui-color-background-2);
|
|
2397
|
+
background-size:100%;
|
|
2398
|
+
transition:background 0s; }
|
|
2399
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable svg{
|
|
2400
|
+
width:16px;
|
|
2401
|
+
height:16px;
|
|
2402
|
+
fill:rgba(0, 0, 0, 0.4);
|
|
2403
|
+
fill:var(--iui-icons-color);
|
|
2404
|
+
transition:transform 0.2s ease-out; }
|
|
2405
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable.iui-open svg{
|
|
2406
|
+
transform:rotate(180deg); }
|
|
2374
2407
|
.iui-input-container.iui-positive *::-moz-selection{
|
|
2375
2408
|
background-color:rgba(83, 162, 26, 0.4);
|
|
2376
2409
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-4)); }
|
|
@@ -3436,7 +3469,7 @@ html.iui-theme-dark{
|
|
|
3436
3469
|
.iui-menu-item:hover{
|
|
3437
3470
|
background-color:rgba(0, 139, 225, 0.1);
|
|
3438
3471
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)); }
|
|
3439
|
-
.iui-menu-item:focus{
|
|
3472
|
+
.iui-menu-item:focus, .iui-menu-item.iui-focused{
|
|
3440
3473
|
outline:thin solid var(--iui-color-foreground-primary);
|
|
3441
3474
|
outline-offset:-1px;
|
|
3442
3475
|
outline:thin solid var(--iui-color-foreground-primary);
|
|
@@ -3457,7 +3490,7 @@ html.iui-theme-dark{
|
|
|
3457
3490
|
.iui-menu-item.iui-active > .iui-icon{
|
|
3458
3491
|
fill:#008BE1;
|
|
3459
3492
|
fill:var(--iui-icons-color-primary); }
|
|
3460
|
-
.iui-menu-item.iui-active:focus{
|
|
3493
|
+
.iui-menu-item.iui-active:focus, .iui-menu-item.iui-active.iui-focused{
|
|
3461
3494
|
outline-width:2px;
|
|
3462
3495
|
outline-offset:-2px; }
|
|
3463
3496
|
.iui-menu-item.iui-active:focus:not(:focus-visible){
|
|
@@ -3474,6 +3507,9 @@ html.iui-theme-dark{
|
|
|
3474
3507
|
fill:rgba(0, 0, 0, 0.2);
|
|
3475
3508
|
fill:var(--iui-icons-color-actionable-disabled); }
|
|
3476
3509
|
|
|
3510
|
+
.iui-menu-content{
|
|
3511
|
+
padding:11px 13px; }
|
|
3512
|
+
|
|
3477
3513
|
.iui-menu-divider{
|
|
3478
3514
|
height:1px;
|
|
3479
3515
|
width:calc(100% - 24px);
|
|
@@ -3594,6 +3630,221 @@ html.iui-theme-dark{
|
|
|
3594
3630
|
.iui-non-ideal-state > .iui-non-ideal-state-actions > .iui-button{
|
|
3595
3631
|
margin:0 4px; }
|
|
3596
3632
|
|
|
3633
|
+
.iui-notification-primary{
|
|
3634
|
+
position:relative; }
|
|
3635
|
+
.iui-notification-primary::before{
|
|
3636
|
+
content:'';
|
|
3637
|
+
position:absolute;
|
|
3638
|
+
width:8px;
|
|
3639
|
+
height:8px;
|
|
3640
|
+
top:-6px;
|
|
3641
|
+
right:-6px;
|
|
3642
|
+
border-radius:100%;
|
|
3643
|
+
background-color:#008BE1;
|
|
3644
|
+
border:2px solid #FFF;
|
|
3645
|
+
background-color:var(--iui-color-foreground-primary);
|
|
3646
|
+
border:2px solid var(--iui-color-background-1); }
|
|
3647
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3648
|
+
.iui-notification-primary::before{
|
|
3649
|
+
transition:background-color 0.2s ease-out, border-color 0.2s ease-out; } }
|
|
3650
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3651
|
+
.iui-notification-primary.iui-urgent::before{
|
|
3652
|
+
-webkit-animation:pulse-primary 2s infinite;
|
|
3653
|
+
animation:pulse-primary 2s infinite; } }
|
|
3654
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3655
|
+
@-webkit-keyframes pulse-primary{
|
|
3656
|
+
0%{
|
|
3657
|
+
box-shadow:0 0 0 0 #008be1;
|
|
3658
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-1)); }
|
|
3659
|
+
70%{
|
|
3660
|
+
box-shadow:0 0 0 7px rgba(0, 139, 225, 0);
|
|
3661
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-primary-rgb), 0); }
|
|
3662
|
+
100%{
|
|
3663
|
+
box-shadow:0 0 0 0 rgba(0, 139, 225, 0);
|
|
3664
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-primary-rgb), 0); } }
|
|
3665
|
+
@keyframes pulse-primary{
|
|
3666
|
+
0%{
|
|
3667
|
+
box-shadow:0 0 0 0 #008be1;
|
|
3668
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-1)); }
|
|
3669
|
+
70%{
|
|
3670
|
+
box-shadow:0 0 0 7px rgba(0, 139, 225, 0);
|
|
3671
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-primary-rgb), 0); }
|
|
3672
|
+
100%{
|
|
3673
|
+
box-shadow:0 0 0 0 rgba(0, 139, 225, 0);
|
|
3674
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-primary-rgb), 0); } } }
|
|
3675
|
+
|
|
3676
|
+
.iui-notification-positive{
|
|
3677
|
+
position:relative; }
|
|
3678
|
+
.iui-notification-positive::before{
|
|
3679
|
+
content:'';
|
|
3680
|
+
position:absolute;
|
|
3681
|
+
width:8px;
|
|
3682
|
+
height:8px;
|
|
3683
|
+
top:-6px;
|
|
3684
|
+
right:-6px;
|
|
3685
|
+
border-radius:100%;
|
|
3686
|
+
background-color:#53A21A;
|
|
3687
|
+
border:2px solid #FFF;
|
|
3688
|
+
background-color:var(--iui-color-foreground-positive);
|
|
3689
|
+
border:2px solid var(--iui-color-background-1); }
|
|
3690
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3691
|
+
.iui-notification-positive::before{
|
|
3692
|
+
transition:background-color 0.2s ease-out, border-color 0.2s ease-out; } }
|
|
3693
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3694
|
+
.iui-notification-positive.iui-urgent::before{
|
|
3695
|
+
-webkit-animation:pulse-positive 2s infinite;
|
|
3696
|
+
animation:pulse-positive 2s infinite; } }
|
|
3697
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3698
|
+
@-webkit-keyframes pulse-positive{
|
|
3699
|
+
0%{
|
|
3700
|
+
box-shadow:0 0 0 0 #53a21a;
|
|
3701
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-1)); }
|
|
3702
|
+
70%{
|
|
3703
|
+
box-shadow:0 0 0 7px rgba(83, 162, 26, 0);
|
|
3704
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-positive-rgb), 0); }
|
|
3705
|
+
100%{
|
|
3706
|
+
box-shadow:0 0 0 0 rgba(83, 162, 26, 0);
|
|
3707
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-positive-rgb), 0); } }
|
|
3708
|
+
@keyframes pulse-positive{
|
|
3709
|
+
0%{
|
|
3710
|
+
box-shadow:0 0 0 0 #53a21a;
|
|
3711
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-1)); }
|
|
3712
|
+
70%{
|
|
3713
|
+
box-shadow:0 0 0 7px rgba(83, 162, 26, 0);
|
|
3714
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-positive-rgb), 0); }
|
|
3715
|
+
100%{
|
|
3716
|
+
box-shadow:0 0 0 0 rgba(83, 162, 26, 0);
|
|
3717
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-positive-rgb), 0); } } }
|
|
3718
|
+
|
|
3719
|
+
.iui-notification-warning{
|
|
3720
|
+
position:relative; }
|
|
3721
|
+
.iui-notification-warning::before{
|
|
3722
|
+
content:'';
|
|
3723
|
+
position:absolute;
|
|
3724
|
+
width:8px;
|
|
3725
|
+
height:8px;
|
|
3726
|
+
top:-6px;
|
|
3727
|
+
right:-6px;
|
|
3728
|
+
border-radius:100%;
|
|
3729
|
+
background-color:#F18B12;
|
|
3730
|
+
border:2px solid #FFF;
|
|
3731
|
+
background-color:var(--iui-color-foreground-warning);
|
|
3732
|
+
border:2px solid var(--iui-color-background-1); }
|
|
3733
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3734
|
+
.iui-notification-warning::before{
|
|
3735
|
+
transition:background-color 0.2s ease-out, border-color 0.2s ease-out; } }
|
|
3736
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3737
|
+
.iui-notification-warning.iui-urgent::before{
|
|
3738
|
+
-webkit-animation:pulse-warning 2s infinite;
|
|
3739
|
+
animation:pulse-warning 2s infinite; } }
|
|
3740
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3741
|
+
@-webkit-keyframes pulse-warning{
|
|
3742
|
+
0%{
|
|
3743
|
+
box-shadow:0 0 0 0 #f18b12;
|
|
3744
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-1)); }
|
|
3745
|
+
70%{
|
|
3746
|
+
box-shadow:0 0 0 7px rgba(241, 139, 18, 0);
|
|
3747
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-warning-rgb), 0); }
|
|
3748
|
+
100%{
|
|
3749
|
+
box-shadow:0 0 0 0 rgba(241, 139, 18, 0);
|
|
3750
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-warning-rgb), 0); } }
|
|
3751
|
+
@keyframes pulse-warning{
|
|
3752
|
+
0%{
|
|
3753
|
+
box-shadow:0 0 0 0 #f18b12;
|
|
3754
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-1)); }
|
|
3755
|
+
70%{
|
|
3756
|
+
box-shadow:0 0 0 7px rgba(241, 139, 18, 0);
|
|
3757
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-warning-rgb), 0); }
|
|
3758
|
+
100%{
|
|
3759
|
+
box-shadow:0 0 0 0 rgba(241, 139, 18, 0);
|
|
3760
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-warning-rgb), 0); } } }
|
|
3761
|
+
|
|
3762
|
+
.iui-notification-negative{
|
|
3763
|
+
position:relative; }
|
|
3764
|
+
.iui-notification-negative::before{
|
|
3765
|
+
content:'';
|
|
3766
|
+
position:absolute;
|
|
3767
|
+
width:8px;
|
|
3768
|
+
height:8px;
|
|
3769
|
+
top:-6px;
|
|
3770
|
+
right:-6px;
|
|
3771
|
+
border-radius:100%;
|
|
3772
|
+
background-color:#D30A0A;
|
|
3773
|
+
border:2px solid #FFF;
|
|
3774
|
+
background-color:var(--iui-color-foreground-negative);
|
|
3775
|
+
border:2px solid var(--iui-color-background-1); }
|
|
3776
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3777
|
+
.iui-notification-negative::before{
|
|
3778
|
+
transition:background-color 0.2s ease-out, border-color 0.2s ease-out; } }
|
|
3779
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3780
|
+
.iui-notification-negative.iui-urgent::before{
|
|
3781
|
+
-webkit-animation:pulse-negative 2s infinite;
|
|
3782
|
+
animation:pulse-negative 2s infinite; } }
|
|
3783
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3784
|
+
@-webkit-keyframes pulse-negative{
|
|
3785
|
+
0%{
|
|
3786
|
+
box-shadow:0 0 0 0 #d30a0a;
|
|
3787
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-1)); }
|
|
3788
|
+
70%{
|
|
3789
|
+
box-shadow:0 0 0 7px rgba(211, 10, 10, 0);
|
|
3790
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-negative-rgb), 0); }
|
|
3791
|
+
100%{
|
|
3792
|
+
box-shadow:0 0 0 0 rgba(211, 10, 10, 0);
|
|
3793
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-negative-rgb), 0); } }
|
|
3794
|
+
@keyframes pulse-negative{
|
|
3795
|
+
0%{
|
|
3796
|
+
box-shadow:0 0 0 0 #d30a0a;
|
|
3797
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-1)); }
|
|
3798
|
+
70%{
|
|
3799
|
+
box-shadow:0 0 0 7px rgba(211, 10, 10, 0);
|
|
3800
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-negative-rgb), 0); }
|
|
3801
|
+
100%{
|
|
3802
|
+
box-shadow:0 0 0 0 rgba(211, 10, 10, 0);
|
|
3803
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-negative-rgb), 0); } } }
|
|
3804
|
+
|
|
3805
|
+
.iui-notification-accessory{
|
|
3806
|
+
position:relative; }
|
|
3807
|
+
.iui-notification-accessory::before{
|
|
3808
|
+
content:'';
|
|
3809
|
+
position:absolute;
|
|
3810
|
+
width:8px;
|
|
3811
|
+
height:8px;
|
|
3812
|
+
top:-6px;
|
|
3813
|
+
right:-6px;
|
|
3814
|
+
border-radius:100%;
|
|
3815
|
+
background-color:#FFF;
|
|
3816
|
+
border:2px solid #FFF;
|
|
3817
|
+
background-color:var(--iui-color-foreground-accessory);
|
|
3818
|
+
border:2px solid var(--iui-color-background-1); }
|
|
3819
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3820
|
+
.iui-notification-accessory::before{
|
|
3821
|
+
transition:background-color 0.2s ease-out, border-color 0.2s ease-out; } }
|
|
3822
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3823
|
+
.iui-notification-accessory.iui-urgent::before{
|
|
3824
|
+
-webkit-animation:pulse-accessory 2s infinite;
|
|
3825
|
+
animation:pulse-accessory 2s infinite; } }
|
|
3826
|
+
@media (prefers-reduced-motion: no-preference){
|
|
3827
|
+
@-webkit-keyframes pulse-accessory{
|
|
3828
|
+
0%{
|
|
3829
|
+
box-shadow:0 0 0 0 white;
|
|
3830
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-accessory-rgb), var(--iui-opacity-1)); }
|
|
3831
|
+
70%{
|
|
3832
|
+
box-shadow:0 0 0 7px rgba(255, 255, 255, 0);
|
|
3833
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-accessory-rgb), 0); }
|
|
3834
|
+
100%{
|
|
3835
|
+
box-shadow:0 0 0 0 rgba(255, 255, 255, 0);
|
|
3836
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-accessory-rgb), 0); } }
|
|
3837
|
+
@keyframes pulse-accessory{
|
|
3838
|
+
0%{
|
|
3839
|
+
box-shadow:0 0 0 0 white;
|
|
3840
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-accessory-rgb), var(--iui-opacity-1)); }
|
|
3841
|
+
70%{
|
|
3842
|
+
box-shadow:0 0 0 7px rgba(255, 255, 255, 0);
|
|
3843
|
+
box-shadow:0 0 0 7px rgba(var(--iui-color-foreground-accessory-rgb), 0); }
|
|
3844
|
+
100%{
|
|
3845
|
+
box-shadow:0 0 0 0 rgba(255, 255, 255, 0);
|
|
3846
|
+
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-accessory-rgb), 0); } } }
|
|
3847
|
+
|
|
3597
3848
|
.iui-progress-indicator-linear{
|
|
3598
3849
|
margin:0;
|
|
3599
3850
|
padding:0;
|
|
@@ -4022,6 +4273,59 @@ html.iui-theme-dark{
|
|
|
4022
4273
|
.iui-side-navigation .iui-sidenav-button.iui-expand > .iui-icon{
|
|
4023
4274
|
transition:transform 0.4s ease-out; } }
|
|
4024
4275
|
|
|
4276
|
+
.iui-side-navigation-submenu{
|
|
4277
|
+
min-width:192px;
|
|
4278
|
+
width:384px;
|
|
4279
|
+
max-width:50vw;
|
|
4280
|
+
height:100%;
|
|
4281
|
+
box-sizing:border-box;
|
|
4282
|
+
padding:0 12px 11px;
|
|
4283
|
+
overflow-x:hidden;
|
|
4284
|
+
overflow-y:auto;
|
|
4285
|
+
overflow-y:overlay;
|
|
4286
|
+
resize:horizontal;
|
|
4287
|
+
background-color:#FFF;
|
|
4288
|
+
border-right:1px solid #C7CCD1;
|
|
4289
|
+
background-color:var(--iui-color-background-1);
|
|
4290
|
+
border-right:1px solid var(--iui-color-background-5); }
|
|
4291
|
+
.iui-side-navigation-submenu.iui-enter, .iui-side-navigation-submenu.iui-exit-active{
|
|
4292
|
+
opacity:0; }
|
|
4293
|
+
.iui-side-navigation-submenu.iui-exit, .iui-side-navigation-submenu.iui-enter-active{
|
|
4294
|
+
opacity:1; }
|
|
4295
|
+
@media (prefers-reduced-motion: no-preference){
|
|
4296
|
+
.iui-side-navigation-submenu.iui-enter-active, .iui-side-navigation-submenu.iui-exit-active{
|
|
4297
|
+
transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out; } }
|
|
4298
|
+
.iui-side-navigation-submenu-header{
|
|
4299
|
+
height:55px;
|
|
4300
|
+
display:flex;
|
|
4301
|
+
align-items:center;
|
|
4302
|
+
justify-content:space-between; }
|
|
4303
|
+
.iui-side-navigation-submenu-header-label{
|
|
4304
|
+
margin:0;
|
|
4305
|
+
padding:0;
|
|
4306
|
+
border:none;
|
|
4307
|
+
vertical-align:baseline;
|
|
4308
|
+
font-size:24px;
|
|
4309
|
+
font-weight:300;
|
|
4310
|
+
line-height:33px;
|
|
4311
|
+
display:flex;
|
|
4312
|
+
align-items:center;
|
|
4313
|
+
overflow:hidden; }
|
|
4314
|
+
.iui-side-navigation-submenu-header-label .iui-button{
|
|
4315
|
+
flex-shrink:0; }
|
|
4316
|
+
.iui-side-navigation-submenu-header-label > *{
|
|
4317
|
+
white-space:nowrap;
|
|
4318
|
+
overflow:hidden;
|
|
4319
|
+
text-overflow:ellipsis; }
|
|
4320
|
+
.iui-side-navigation-submenu-header-label-actions{
|
|
4321
|
+
flex-shrink:0;
|
|
4322
|
+
margin-left:8px; }
|
|
4323
|
+
|
|
4324
|
+
.iui-side-navigation-wrapper{
|
|
4325
|
+
display:flex;
|
|
4326
|
+
position:relative;
|
|
4327
|
+
height:100%; }
|
|
4328
|
+
|
|
4025
4329
|
.iui-slider-component-container{
|
|
4026
4330
|
display:flex; }
|
|
4027
4331
|
.iui-slider-component-container .iui-slider-min,
|
|
@@ -4321,7 +4625,7 @@ html.iui-theme-dark{
|
|
|
4321
4625
|
opacity:1; }
|
|
4322
4626
|
@media (prefers-reduced-motion: no-preference){
|
|
4323
4627
|
.iui-table-body .iui-row.iui-expanded-content.iui-enter-active, .iui-table-body .iui-row.iui-expanded-content.iui-exit-active{
|
|
4324
|
-
transition:opacity 0.2s ease-out, height 0.2s ease-out; } }
|
|
4628
|
+
transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out; } }
|
|
4325
4629
|
.iui-table-body .iui-row:not(.iui-selected) + .iui-selected, .iui-table-body .iui-row.iui-selected:first-child{
|
|
4326
4630
|
border-bottom-color:transparent; }
|
|
4327
4631
|
.iui-table-body .iui-row.iui-selected{
|
|
@@ -5358,56 +5662,90 @@ a.iui-tag{
|
|
|
5358
5662
|
border-left:1px solid var(--iui-color-background-4); }
|
|
5359
5663
|
.iui-time-picker:first-child{
|
|
5360
5664
|
box-shadow:0 1px 5px rgba(0, 0, 0, 0.25); }
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5406
|
-
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5665
|
+
|
|
5666
|
+
.iui-time{
|
|
5667
|
+
padding:11px 8px;
|
|
5668
|
+
overflow-y:auto;
|
|
5669
|
+
overflow-y:overlay;
|
|
5670
|
+
scrollbar-width:none; }
|
|
5671
|
+
.iui-time:not(:first-child){
|
|
5672
|
+
border-left:1px solid #DCE0E3;
|
|
5673
|
+
border-left:1px solid var(--iui-color-background-4); }
|
|
5674
|
+
.iui-time > ol{
|
|
5675
|
+
margin:0;
|
|
5676
|
+
padding:0;
|
|
5677
|
+
border:none;
|
|
5678
|
+
vertical-align:baseline;
|
|
5679
|
+
list-style:none; }
|
|
5680
|
+
.iui-time > ol > li{
|
|
5681
|
+
padding:6px 16px;
|
|
5682
|
+
border-radius:3px; }
|
|
5683
|
+
.iui-time > ol > li:focus{
|
|
5684
|
+
outline:0;
|
|
5685
|
+
box-shadow:rgba(0, 139, 225, 0.2) 0 0 0 2px;
|
|
5686
|
+
box-shadow:var(--iui-focus-box-shadow); }
|
|
5687
|
+
.iui-time > ol > li:focus:not(:focus-visible){
|
|
5688
|
+
box-shadow:none; }
|
|
5689
|
+
.iui-time > ol > li:focus-visible{
|
|
5690
|
+
outline:0;
|
|
5691
|
+
box-shadow:rgba(0, 139, 225, 0.2) 0 0 0 2px;
|
|
5692
|
+
box-shadow:var(--iui-focus-box-shadow); }
|
|
5693
|
+
.iui-time > ol > li:hover{
|
|
5694
|
+
cursor:pointer;
|
|
5695
|
+
color:#008BE1;
|
|
5696
|
+
background-color:rgba(0, 139, 225, 0.1);
|
|
5697
|
+
color:var(--iui-color-foreground-primary);
|
|
5698
|
+
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)); }
|
|
5699
|
+
.iui-time > ol > li.iui-selected{
|
|
5700
|
+
font-weight:600;
|
|
5701
|
+
cursor:default;
|
|
5702
|
+
background-color:#008BE1;
|
|
5703
|
+
color:#FFF;
|
|
5704
|
+
background-color:var(--iui-color-background-primary);
|
|
5705
|
+
color:var(--iui-color-foreground-accessory); }
|
|
5706
|
+
|
|
5707
|
+
.iui-period{
|
|
5708
|
+
padding:11px 8px;
|
|
5709
|
+
overflow-y:auto;
|
|
5710
|
+
overflow-y:overlay;
|
|
5711
|
+
scrollbar-width:none;
|
|
5712
|
+
display:flex;
|
|
5713
|
+
align-items:center; }
|
|
5714
|
+
.iui-period:not(:first-child){
|
|
5715
|
+
border-left:1px solid #DCE0E3;
|
|
5716
|
+
border-left:1px solid var(--iui-color-background-4); }
|
|
5717
|
+
.iui-period > ol{
|
|
5718
|
+
margin:0;
|
|
5719
|
+
padding:0;
|
|
5720
|
+
border:none;
|
|
5721
|
+
vertical-align:baseline;
|
|
5722
|
+
list-style:none; }
|
|
5723
|
+
.iui-period > ol > li{
|
|
5724
|
+
padding:6px 16px;
|
|
5725
|
+
border-radius:3px; }
|
|
5726
|
+
.iui-period > ol > li:focus{
|
|
5727
|
+
outline:0;
|
|
5728
|
+
box-shadow:rgba(0, 139, 225, 0.2) 0 0 0 2px;
|
|
5729
|
+
box-shadow:var(--iui-focus-box-shadow); }
|
|
5730
|
+
.iui-period > ol > li:focus:not(:focus-visible){
|
|
5731
|
+
box-shadow:none; }
|
|
5732
|
+
.iui-period > ol > li:focus-visible{
|
|
5733
|
+
outline:0;
|
|
5734
|
+
box-shadow:rgba(0, 139, 225, 0.2) 0 0 0 2px;
|
|
5735
|
+
box-shadow:var(--iui-focus-box-shadow); }
|
|
5736
|
+
.iui-period > ol > li:hover{
|
|
5737
|
+
cursor:pointer;
|
|
5738
|
+
color:#008BE1;
|
|
5739
|
+
background-color:rgba(0, 139, 225, 0.1);
|
|
5740
|
+
color:var(--iui-color-foreground-primary);
|
|
5741
|
+
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)); }
|
|
5742
|
+
.iui-period > ol > li.iui-selected{
|
|
5743
|
+
font-weight:600;
|
|
5744
|
+
cursor:default;
|
|
5745
|
+
background-color:#008BE1;
|
|
5746
|
+
color:#FFF;
|
|
5747
|
+
background-color:var(--iui-color-background-primary);
|
|
5748
|
+
color:var(--iui-color-foreground-accessory); }
|
|
5411
5749
|
|
|
5412
5750
|
.iui-toast-wrapper{
|
|
5413
5751
|
pointer-events:none;
|
package/css/button.css
CHANGED
|
@@ -85,6 +85,18 @@
|
|
|
85
85
|
background-color:var(--iui-color-background-1-overlay);
|
|
86
86
|
border-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
|
|
87
87
|
color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1)); }
|
|
88
|
+
.iui-button:enabled:hover .iui-notification-primary::before,
|
|
89
|
+
.iui-button:enabled:hover .iui-notification-positive::before,
|
|
90
|
+
.iui-button:enabled:hover .iui-notification-warning::before,
|
|
91
|
+
.iui-button:enabled:hover .iui-notification-negative::before, .iui-button:enabled:active .iui-notification-primary::before,
|
|
92
|
+
.iui-button:enabled:active .iui-notification-positive::before,
|
|
93
|
+
.iui-button:enabled:active .iui-notification-warning::before,
|
|
94
|
+
.iui-button:enabled:active .iui-notification-negative::before, .iui-button:focus-visible .iui-notification-primary::before,
|
|
95
|
+
.iui-button:focus-visible .iui-notification-positive::before,
|
|
96
|
+
.iui-button:focus-visible .iui-notification-warning::before,
|
|
97
|
+
.iui-button:focus-visible .iui-notification-negative::before{
|
|
98
|
+
border-color:#f2f2f2;
|
|
99
|
+
border-color:var(--iui-color-background-1-overlay); }
|
|
88
100
|
.iui-button:enabled:hover > .iui-icon, .iui-button:enabled:active > .iui-icon, .iui-button:focus-visible > .iui-icon{
|
|
89
101
|
fill:black;
|
|
90
102
|
fill:var(--iui-icons-color-actionable-hover); }
|
package/css/color-picker.css
CHANGED
package/css/date-picker.css
CHANGED
|
@@ -72,9 +72,8 @@
|
|
|
72
72
|
.iui-date-picker > .iui-calendar > .iui-dates > .iui-week > .iui-date{
|
|
73
73
|
cursor:pointer;
|
|
74
74
|
display:inline-block;
|
|
75
|
-
width:
|
|
76
|
-
line-height:
|
|
77
|
-
margin:0 4px; }
|
|
75
|
+
width:33px;
|
|
76
|
+
line-height:33px; }
|
|
78
77
|
.iui-date-picker > .iui-calendar > .iui-dates > .iui-week > .iui-date:focus{
|
|
79
78
|
outline:0;
|
|
80
79
|
box-shadow:rgba(0, 139, 225, 0.2) 0 0 0 2px;
|
package/css/expandable-block.css
CHANGED
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
opacity:1; }
|
|
108
108
|
@media (prefers-reduced-motion: no-preference){
|
|
109
109
|
.iui-expandable-block .iui-expandable-content.iui-enter-active, .iui-expandable-block .iui-expandable-content.iui-exit-active{
|
|
110
|
-
transition:opacity 0.2s ease-out, height 0.2s ease-out; } }
|
|
110
|
+
transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out; } }
|
|
111
111
|
.iui-expandable-block .iui-expandable-content > div{
|
|
112
112
|
padding:11px 12px; }
|
|
113
113
|
.iui-expandable-block:hover > .iui-header{
|
package/css/inputs.css
CHANGED
|
@@ -147,6 +147,28 @@
|
|
|
147
147
|
margin-right:0;
|
|
148
148
|
border-top-left-radius:0;
|
|
149
149
|
border-bottom-left-radius:0; }
|
|
150
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable{
|
|
151
|
+
align-items:center;
|
|
152
|
+
height:90%;
|
|
153
|
+
margin-right:1px;
|
|
154
|
+
padding:0 12px;
|
|
155
|
+
cursor:pointer;
|
|
156
|
+
background-position:center;
|
|
157
|
+
transition:background 0.4s ease-out; }
|
|
158
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable:hover{
|
|
159
|
+
background:var(--iui-color-background-1) radial-gradient(circle, transparent 1%, var(--iui-color-background-1) 1%) center/15000%; }
|
|
160
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable:active{
|
|
161
|
+
background-color:var(--iui-color-background-2);
|
|
162
|
+
background-size:100%;
|
|
163
|
+
transition:background 0s; }
|
|
164
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable svg{
|
|
165
|
+
width:16px;
|
|
166
|
+
height:16px;
|
|
167
|
+
fill:rgba(0, 0, 0, 0.4);
|
|
168
|
+
fill:var(--iui-icons-color);
|
|
169
|
+
transition:transform 0.2s ease-out; }
|
|
170
|
+
.iui-input-container.iui-inline-icon .iui-input-icon.iui-actionable.iui-open svg{
|
|
171
|
+
transform:rotate(180deg); }
|
|
150
172
|
.iui-input-container.iui-positive *::-moz-selection{
|
|
151
173
|
background-color:rgba(83, 162, 26, 0.4);
|
|
152
174
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-4)); }
|
package/css/menu.css
CHANGED
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
.iui-menu-item:hover{
|
|
70
70
|
background-color:rgba(0, 139, 225, 0.1);
|
|
71
71
|
background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)); }
|
|
72
|
-
.iui-menu-item:focus{
|
|
72
|
+
.iui-menu-item:focus, .iui-menu-item.iui-focused{
|
|
73
73
|
outline:thin solid var(--iui-color-foreground-primary);
|
|
74
74
|
outline-offset:-1px;
|
|
75
75
|
outline:thin solid var(--iui-color-foreground-primary);
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
.iui-menu-item.iui-active > .iui-icon{
|
|
91
91
|
fill:#008BE1;
|
|
92
92
|
fill:var(--iui-icons-color-primary); }
|
|
93
|
-
.iui-menu-item.iui-active:focus{
|
|
93
|
+
.iui-menu-item.iui-active:focus, .iui-menu-item.iui-active.iui-focused{
|
|
94
94
|
outline-width:2px;
|
|
95
95
|
outline-offset:-2px; }
|
|
96
96
|
.iui-menu-item.iui-active:focus:not(:focus-visible){
|
|
@@ -107,6 +107,9 @@
|
|
|
107
107
|
fill:rgba(0, 0, 0, 0.2);
|
|
108
108
|
fill:var(--iui-icons-color-actionable-disabled); }
|
|
109
109
|
|
|
110
|
+
.iui-menu-content{
|
|
111
|
+
padding:11px 13px; }
|
|
112
|
+
|
|
110
113
|
.iui-menu-divider{
|
|
111
114
|
height:1px;
|
|
112
115
|
width:calc(100% - 24px);
|