@itwin/itwinui-css 0.58.0 → 0.59.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +924 -0
- package/LICENSE.md +9 -0
- package/README.md +1 -1
- package/css/all.css +129 -56
- package/css/code.css +0 -3
- package/css/information-panel.css +2 -2
- package/css/side-navigation.css +1 -1
- package/css/table.css +126 -50
- package/package.json +24 -55
- package/scss/code/codeblock.scss +0 -4
- package/scss/information-panel/information-panel.scss +2 -2
- package/scss/side-navigation/side-navigation.scss +2 -2
- package/scss/style/elevation.scss +6 -5
- package/scss/table/classes.scss +12 -0
- package/scss/table/condensed.scss +4 -1
- package/scss/table/extra-condensed.scss +8 -1
- package/scss/table/table.scss +131 -38
- package/src/index.scss +45 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright © Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -77,4 +77,4 @@ Please read our [CONTRIBUTING.md](https://github.com/iTwin/iTwinUI/blob/main/CON
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
-
Read our [CHANGELOG.md](https://github.com/iTwin/iTwinUI/blob/main/CHANGELOG.md) to find recent changes.
|
|
80
|
+
Read our [CHANGELOG.md](https://github.com/iTwin/iTwinUI/blob/main/packages/itwinui-css/CHANGELOG.md) to find recent changes.
|
package/css/all.css
CHANGED
|
@@ -2166,9 +2166,6 @@ a.iui-breadcrumbs-text:focus{
|
|
|
2166
2166
|
.iui-codeblock > .iui-title-bar > .iui-button{
|
|
2167
2167
|
margin-left:auto;
|
|
2168
2168
|
}
|
|
2169
|
-
.iui-codeblock .iui-button{
|
|
2170
|
-
gap:0;
|
|
2171
|
-
}
|
|
2172
2169
|
.iui-codeblock > .iui-codeblock-content{
|
|
2173
2170
|
margin:0;
|
|
2174
2171
|
overflow-x:auto;
|
|
@@ -4358,7 +4355,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
4358
4355
|
min-width:192px;
|
|
4359
4356
|
height:100%;
|
|
4360
4357
|
transform:translateX(100%);
|
|
4361
|
-
box-shadow:-1px 0
|
|
4358
|
+
box-shadow:-1px 0 10px rgba(0, 0, 0, 0.25);
|
|
4362
4359
|
-webkit-clip-path:inset(0 0 0 -15px);
|
|
4363
4360
|
clip-path:inset(0 0 0 -15px);
|
|
4364
4361
|
}
|
|
@@ -4391,7 +4388,7 @@ button.iui-header-logo:hover:not(:focus-visible):not(:hover), .iui-header-logo[r
|
|
|
4391
4388
|
min-height:192px;
|
|
4392
4389
|
width:100%;
|
|
4393
4390
|
transform:translateY(100%);
|
|
4394
|
-
box-shadow:0 -1px
|
|
4391
|
+
box-shadow:0 -1px 10px rgba(0, 0, 0, 0.25);
|
|
4395
4392
|
-webkit-clip-path:inset(-15px 0 0 0);
|
|
4396
4393
|
clip-path:inset(-15px 0 0 0);
|
|
4397
4394
|
}
|
|
@@ -6957,7 +6954,7 @@ label.iui-input-label.iui-disabled{
|
|
|
6957
6954
|
border-right:none;
|
|
6958
6955
|
overflow:hidden;
|
|
6959
6956
|
justify-content:flex-start;
|
|
6960
|
-
--_iui-button-active-stripe-inset:0 calc(100% - 2px)
|
|
6957
|
+
--_iui-button-active-stripe-inset:0 0 0 calc(100% - 2px);
|
|
6961
6958
|
}
|
|
6962
6959
|
.iui-side-navigation .iui-sidenav-button:not(.iui-expand){
|
|
6963
6960
|
height:55px;
|
|
@@ -7354,6 +7351,7 @@ label.iui-input-label.iui-disabled{
|
|
|
7354
7351
|
vertical-align:baseline;
|
|
7355
7352
|
display:flex;
|
|
7356
7353
|
flex-direction:column;
|
|
7354
|
+
isolation:isolate;
|
|
7357
7355
|
}
|
|
7358
7356
|
.iui-table *{
|
|
7359
7357
|
box-sizing:border-box;
|
|
@@ -7381,41 +7379,57 @@ label.iui-input-label.iui-disabled{
|
|
|
7381
7379
|
margin-left:auto;
|
|
7382
7380
|
}
|
|
7383
7381
|
.iui-table.iui-condensed .iui-table-header .iui-cell,
|
|
7384
|
-
.iui-table.iui-condensed .iui-row .iui-cell,
|
|
7385
7382
|
.iui-table.iui-condensed .iui-paginator{
|
|
7386
7383
|
min-height:44px;
|
|
7387
7384
|
}
|
|
7385
|
+
.iui-table.iui-condensed .iui-row .iui-cell{
|
|
7386
|
+
min-height:46px;
|
|
7387
|
+
}
|
|
7388
7388
|
.iui-table.iui-extra-condensed .iui-table-header .iui-cell,
|
|
7389
|
-
.iui-table.iui-extra-condensed .iui-row .iui-cell,
|
|
7390
7389
|
.iui-table.iui-extra-condensed .iui-paginator{
|
|
7391
7390
|
min-height:33px;
|
|
7392
7391
|
}
|
|
7392
|
+
.iui-table.iui-extra-condensed .iui-row .iui-cell{
|
|
7393
|
+
min-height:35px;
|
|
7394
|
+
}
|
|
7395
|
+
.iui-table.iui-extra-condensed .iui-table-header .iui-cell{
|
|
7396
|
+
padding-block:2.75px;
|
|
7397
|
+
}
|
|
7393
7398
|
|
|
7394
|
-
.iui-table-header{
|
|
7395
|
-
-webkit-user-select:none;
|
|
7396
|
-
-moz-user-select:none;
|
|
7397
|
-
-ms-user-select:none;
|
|
7398
|
-
user-select:none;
|
|
7399
|
+
.iui-table-header-wrapper{
|
|
7399
7400
|
overflow:hidden;
|
|
7401
|
+
display:flex;
|
|
7400
7402
|
flex-shrink:0;
|
|
7401
|
-
background-color:#edeff2;
|
|
7402
|
-
background-color:var(--iui-color-background-3);
|
|
7403
7403
|
}
|
|
7404
7404
|
@supports not (overflow: overlay){
|
|
7405
|
-
.iui-table-header{
|
|
7405
|
+
.iui-table-header-wrapper{
|
|
7406
7406
|
overflow-y:scroll;
|
|
7407
7407
|
}
|
|
7408
7408
|
}
|
|
7409
|
+
|
|
7410
|
+
.iui-table-header{
|
|
7411
|
+
display:flex;
|
|
7412
|
+
-webkit-user-select:none;
|
|
7413
|
+
-moz-user-select:none;
|
|
7414
|
+
-ms-user-select:none;
|
|
7415
|
+
user-select:none;
|
|
7416
|
+
min-width:100%;
|
|
7417
|
+
flex-shrink:0;
|
|
7418
|
+
}
|
|
7409
7419
|
.iui-table-header .iui-row{
|
|
7410
7420
|
display:flex;
|
|
7411
7421
|
flex-grow:1;
|
|
7412
|
-
|
|
7413
|
-
|
|
7422
|
+
min-width:100%;
|
|
7423
|
+
}
|
|
7424
|
+
.iui-table-header .iui-cell{
|
|
7425
|
+
min-height:55px;
|
|
7426
|
+
background-color:#edeff2;
|
|
7427
|
+
background-color:var(--iui-color-background-3);
|
|
7414
7428
|
}
|
|
7415
7429
|
.iui-table-header .iui-cell:not(.iui-slot){
|
|
7416
|
-
flex-wrap:wrap;
|
|
7417
7430
|
-moz-column-gap:4px;
|
|
7418
7431
|
column-gap:4px;
|
|
7432
|
+
padding-block:5.5px;
|
|
7419
7433
|
}
|
|
7420
7434
|
.iui-table-header .iui-cell:not(.iui-slot):focus-visible{
|
|
7421
7435
|
outline:1px solid var(--iui-color-foreground-primary);
|
|
@@ -7434,9 +7448,6 @@ label.iui-input-label.iui-disabled{
|
|
|
7434
7448
|
cursor:-webkit-grabbing;
|
|
7435
7449
|
cursor:grabbing;
|
|
7436
7450
|
}
|
|
7437
|
-
.iui-table-header .iui-cell:not(.iui-slot) .iui-filter-button{
|
|
7438
|
-
margin-right:8px;
|
|
7439
|
-
}
|
|
7440
7451
|
.iui-table-header .iui-cell:not(.iui-slot) .iui-filter-button:not(.iui-active){
|
|
7441
7452
|
visibility:hidden;
|
|
7442
7453
|
}
|
|
@@ -7517,6 +7528,15 @@ label.iui-input-label.iui-disabled{
|
|
|
7517
7528
|
display:flex;
|
|
7518
7529
|
flex-grow:1;
|
|
7519
7530
|
align-items:center;
|
|
7531
|
+
flex-wrap:wrap;
|
|
7532
|
+
justify-content:flex-end;
|
|
7533
|
+
margin-right:12px;
|
|
7534
|
+
}
|
|
7535
|
+
.iui-table-header-actions-container .iui-cell-end-icon{
|
|
7536
|
+
width:28px;
|
|
7537
|
+
height:28px;
|
|
7538
|
+
margin-right:initial;
|
|
7539
|
+
margin-left:auto;
|
|
7520
7540
|
}
|
|
7521
7541
|
|
|
7522
7542
|
.iui-table-body{
|
|
@@ -7536,28 +7556,33 @@ label.iui-input-label.iui-disabled{
|
|
|
7536
7556
|
.iui-table-body.iui-scroll-snapping .iui-row{
|
|
7537
7557
|
scroll-snap-align:start none;
|
|
7538
7558
|
}
|
|
7539
|
-
.iui-table-body.iui-zebra-striping .iui-row:nth-child(even):not(.iui-selected){
|
|
7559
|
+
.iui-table-body.iui-zebra-striping .iui-row:nth-child(even):not(.iui-selected) .iui-cell{
|
|
7540
7560
|
background-color:rgba(0, 0, 0, 0.02);
|
|
7541
7561
|
background-color:rgba(var(--iui-color-foreground-body-rgb), 0.02);
|
|
7542
7562
|
}
|
|
7543
7563
|
.iui-table-body .iui-row{
|
|
7544
7564
|
min-width:100%;
|
|
7545
7565
|
display:flex;
|
|
7546
|
-
|
|
7566
|
+
}
|
|
7567
|
+
.iui-table-body .iui-row .iui-cell{
|
|
7568
|
+
border-top:solid 1px transparent;
|
|
7569
|
+
border-bottom:solid 1px transparent;
|
|
7547
7570
|
border-bottom-color:#c7ccd1;
|
|
7548
7571
|
border-bottom-color:var(--iui-color-background-border);
|
|
7572
|
+
background-color:white;
|
|
7573
|
+
background-color:var(--iui-color-background-1);
|
|
7549
7574
|
}
|
|
7550
7575
|
@media (prefers-reduced-motion: no-preference){
|
|
7551
|
-
.iui-table-body .iui-row{
|
|
7576
|
+
.iui-table-body .iui-row .iui-cell{
|
|
7552
7577
|
transition:border 0.2s ease-out;
|
|
7553
7578
|
}
|
|
7554
7579
|
}
|
|
7555
7580
|
.iui-table-body .iui-row > .iui-slot > .iui-more-options{
|
|
7556
7581
|
visibility:hidden;
|
|
7557
7582
|
}
|
|
7558
|
-
.iui-table-body .iui-row:hover:not(.iui-disabled)
|
|
7559
|
-
background-
|
|
7560
|
-
background-color
|
|
7583
|
+
.iui-table-body .iui-row:hover:not(.iui-disabled) .iui-cell{
|
|
7584
|
+
background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
|
|
7585
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7561
7586
|
}
|
|
7562
7587
|
.iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot:not(.iui-disabled) > .iui-more-options{
|
|
7563
7588
|
visibility:visible;
|
|
@@ -7572,9 +7597,10 @@ label.iui-input-label.iui-disabled{
|
|
|
7572
7597
|
}
|
|
7573
7598
|
.iui-table-body .iui-row.iui-row-expanded{
|
|
7574
7599
|
overflow:hidden;
|
|
7600
|
+
}
|
|
7601
|
+
.iui-table-body .iui-row.iui-row-expanded .iui-cell{
|
|
7575
7602
|
border-left-color:#dde1e4;
|
|
7576
7603
|
border-right-color:#dde1e4;
|
|
7577
|
-
border-bottom-color:transparent;
|
|
7578
7604
|
border-left-color:var(--iui-color-background-4);
|
|
7579
7605
|
border-right-color:var(--iui-color-background-4);
|
|
7580
7606
|
border-bottom-color:transparent;
|
|
@@ -7590,6 +7616,10 @@ label.iui-input-label.iui-disabled{
|
|
|
7590
7616
|
}
|
|
7591
7617
|
.iui-table-body .iui-row.iui-expanded-content{
|
|
7592
7618
|
overflow:hidden;
|
|
7619
|
+
border-left:1px solid transparent;
|
|
7620
|
+
border-right:1px solid transparent;
|
|
7621
|
+
border-bottom:1px solid #c7ccd1;
|
|
7622
|
+
border-bottom:1px solid var(--iui-color-background-border);
|
|
7593
7623
|
}
|
|
7594
7624
|
.iui-table-body .iui-row.iui-expanded-content.iui-enter{
|
|
7595
7625
|
opacity:0;
|
|
@@ -7613,26 +7643,26 @@ label.iui-input-label.iui-disabled{
|
|
|
7613
7643
|
transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out;
|
|
7614
7644
|
}
|
|
7615
7645
|
}
|
|
7616
|
-
.iui-table-body .iui-row:not(.iui-selected) + .iui-selected, .iui-table-body .iui-row.iui-selected:first-child{
|
|
7646
|
+
.iui-table-body .iui-row:not(.iui-selected) + .iui-selected .iui-cell, .iui-table-body .iui-row.iui-selected:first-child .iui-cell{
|
|
7617
7647
|
border-bottom-color:transparent;
|
|
7618
7648
|
}
|
|
7619
|
-
.iui-table-body .iui-row.iui-selected{
|
|
7649
|
+
.iui-table-body .iui-row.iui-selected .iui-cell{
|
|
7620
7650
|
border-color:#008ae0;
|
|
7621
|
-
background:rgba(0, 138, 224, 0.1);
|
|
7651
|
+
background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
|
|
7622
7652
|
border-color:var(--iui-color-foreground-primary);
|
|
7623
|
-
background:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
|
|
7653
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7624
7654
|
}
|
|
7625
|
-
.iui-table-body .iui-row.iui-selected + .iui-selected{
|
|
7655
|
+
.iui-table-body .iui-row.iui-selected + .iui-selected .iui-cell{
|
|
7626
7656
|
border-bottom-color:transparent;
|
|
7627
7657
|
border-top-color:rgba(0, 138, 224, 0.4);
|
|
7628
7658
|
border-top-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
|
|
7629
7659
|
}
|
|
7630
|
-
.iui-table-body .iui-row.iui-selected:last-child{
|
|
7660
|
+
.iui-table-body .iui-row.iui-selected:last-child .iui-cell{
|
|
7631
7661
|
border-bottom-color:#008ae0;
|
|
7632
7662
|
border-bottom-color:var(--iui-color-foreground-primary);
|
|
7633
7663
|
}
|
|
7634
|
-
.iui-table-body .iui-row.iui-selected + :not(.iui-selected),
|
|
7635
|
-
.iui-table-body .iui-row.iui-selected + .iui-expanded-content + :not(.iui-selected){
|
|
7664
|
+
.iui-table-body .iui-row.iui-selected + :not(.iui-selected) .iui-cell,
|
|
7665
|
+
.iui-table-body .iui-row.iui-selected + .iui-expanded-content + .iui-row:not(.iui-selected) .iui-cell{
|
|
7636
7666
|
border-top-color:#008ae0;
|
|
7637
7667
|
border-top-color:var(--iui-color-foreground-primary);
|
|
7638
7668
|
}
|
|
@@ -7673,17 +7703,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7673
7703
|
.iui-table-body .iui-row.iui-expanded-content.iui-disabled .iui-user-icon{
|
|
7674
7704
|
filter:grayscale(100%);
|
|
7675
7705
|
}
|
|
7676
|
-
.iui-table-body .iui-row.iui-positive,
|
|
7706
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type,
|
|
7677
7707
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content{
|
|
7678
7708
|
box-shadow:inset 2px 0 0 0 #53a21a;
|
|
7679
7709
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-positive);
|
|
7680
7710
|
}
|
|
7681
|
-
.iui-table-body .iui-row.iui-positive::-moz-selection, .iui-table-body .iui-row.iui-positive *::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::-moz-selection{
|
|
7711
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::-moz-selection{
|
|
7682
7712
|
background-color:rgba(83, 162, 26, 0.2);
|
|
7683
7713
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
7684
7714
|
}
|
|
7685
|
-
.iui-table-body .iui-row.iui-positive::selection,
|
|
7686
|
-
.iui-table-body .iui-row.iui-positive *::selection,
|
|
7715
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::selection,
|
|
7716
|
+
.iui-table-body .iui-row.iui-positive .iui-cell:first-of-type *::selection,
|
|
7687
7717
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content::selection,
|
|
7688
7718
|
.iui-table-body .iui-row.iui-positive + .iui-expanded-content *::selection{
|
|
7689
7719
|
background-color:rgba(83, 162, 26, 0.2);
|
|
@@ -7693,17 +7723,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7693
7723
|
fill:#53a21a;
|
|
7694
7724
|
fill:var(--iui-icons-color-positive);
|
|
7695
7725
|
}
|
|
7696
|
-
.iui-table-body .iui-row.iui-warning,
|
|
7726
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type,
|
|
7697
7727
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content{
|
|
7698
7728
|
box-shadow:inset 2px 0 0 0 #f18d13;
|
|
7699
7729
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-warning);
|
|
7700
7730
|
}
|
|
7701
|
-
.iui-table-body .iui-row.iui-warning::-moz-selection, .iui-table-body .iui-row.iui-warning *::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::-moz-selection{
|
|
7731
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::-moz-selection{
|
|
7702
7732
|
background-color:rgba(241, 141, 19, 0.2);
|
|
7703
7733
|
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
7704
7734
|
}
|
|
7705
|
-
.iui-table-body .iui-row.iui-warning::selection,
|
|
7706
|
-
.iui-table-body .iui-row.iui-warning *::selection,
|
|
7735
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::selection,
|
|
7736
|
+
.iui-table-body .iui-row.iui-warning .iui-cell:first-of-type *::selection,
|
|
7707
7737
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content::selection,
|
|
7708
7738
|
.iui-table-body .iui-row.iui-warning + .iui-expanded-content *::selection{
|
|
7709
7739
|
background-color:rgba(241, 141, 19, 0.2);
|
|
@@ -7713,17 +7743,17 @@ label.iui-input-label.iui-disabled{
|
|
|
7713
7743
|
fill:#f18d13;
|
|
7714
7744
|
fill:var(--iui-icons-color-warning);
|
|
7715
7745
|
}
|
|
7716
|
-
.iui-table-body .iui-row.iui-negative,
|
|
7746
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type,
|
|
7717
7747
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content{
|
|
7718
7748
|
box-shadow:inset 2px 0 0 0 #d10a0a;
|
|
7719
7749
|
box-shadow:inset 2px 0 0 0 var(--iui-icons-color-negative);
|
|
7720
7750
|
}
|
|
7721
|
-
.iui-table-body .iui-row.iui-negative::-moz-selection, .iui-table-body .iui-row.iui-negative *::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::-moz-selection{
|
|
7751
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::-moz-selection{
|
|
7722
7752
|
background-color:rgba(209, 10, 10, 0.2);
|
|
7723
7753
|
background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
|
|
7724
7754
|
}
|
|
7725
|
-
.iui-table-body .iui-row.iui-negative::selection,
|
|
7726
|
-
.iui-table-body .iui-row.iui-negative *::selection,
|
|
7755
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::selection,
|
|
7756
|
+
.iui-table-body .iui-row.iui-negative .iui-cell:first-of-type *::selection,
|
|
7727
7757
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content::selection,
|
|
7728
7758
|
.iui-table-body .iui-row.iui-negative + .iui-expanded-content *::selection{
|
|
7729
7759
|
background-color:rgba(209, 10, 10, 0.2);
|
|
@@ -7754,12 +7784,18 @@ label.iui-input-label.iui-disabled{
|
|
|
7754
7784
|
display:flex;
|
|
7755
7785
|
flex-grow:1;
|
|
7756
7786
|
min-width:64px;
|
|
7757
|
-
min-height:
|
|
7787
|
+
min-height:57px;
|
|
7758
7788
|
padding-left:16px;
|
|
7759
7789
|
flex-basis:64px;
|
|
7760
7790
|
position:relative;
|
|
7761
7791
|
word-break:break-word;
|
|
7762
7792
|
}
|
|
7793
|
+
.iui-cell:first-of-type{
|
|
7794
|
+
border-left:solid 1px transparent;
|
|
7795
|
+
}
|
|
7796
|
+
.iui-cell:last-of-type{
|
|
7797
|
+
border-right:solid 1px transparent;
|
|
7798
|
+
}
|
|
7763
7799
|
.iui-cell.iui-slot{
|
|
7764
7800
|
width:48px;
|
|
7765
7801
|
padding:0;
|
|
@@ -7770,12 +7806,19 @@ label.iui-input-label.iui-disabled{
|
|
|
7770
7806
|
align-items:center;
|
|
7771
7807
|
flex-basis:48px;
|
|
7772
7808
|
}
|
|
7809
|
+
.iui-cell.iui-cell-sticky{
|
|
7810
|
+
position:-webkit-sticky;
|
|
7811
|
+
position:sticky;
|
|
7812
|
+
z-index:1;
|
|
7813
|
+
left:var(--iui-table-sticky-left, initial);
|
|
7814
|
+
right:var(--iui-table-sticky-right, initial);
|
|
7815
|
+
}
|
|
7773
7816
|
.iui-cell:not(.iui-slot):last-child{
|
|
7774
7817
|
padding-right:16px;
|
|
7775
7818
|
}
|
|
7776
7819
|
.iui-cell.iui-positive{
|
|
7777
|
-
background-
|
|
7778
|
-
background-color
|
|
7820
|
+
background:linear-gradient(rgba(83, 162, 26, 0.1), rgba(83, 162, 26, 0.1)), linear-gradient(white, white);
|
|
7821
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7779
7822
|
}
|
|
7780
7823
|
.iui-cell.iui-positive::-moz-selection, .iui-cell.iui-positive *::-moz-selection{
|
|
7781
7824
|
background-color:rgba(83, 162, 26, 0.2);
|
|
@@ -7787,8 +7830,8 @@ label.iui-input-label.iui-disabled{
|
|
|
7787
7830
|
background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
|
|
7788
7831
|
}
|
|
7789
7832
|
.iui-cell.iui-warning{
|
|
7790
|
-
background-
|
|
7791
|
-
background-color
|
|
7833
|
+
background:linear-gradient(rgba(241, 141, 19, 0.1), rgba(241, 141, 19, 0.1)), linear-gradient(white, white);
|
|
7834
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7792
7835
|
}
|
|
7793
7836
|
.iui-cell.iui-warning::-moz-selection, .iui-cell.iui-warning *::-moz-selection{
|
|
7794
7837
|
background-color:rgba(241, 141, 19, 0.2);
|
|
@@ -7800,8 +7843,8 @@ label.iui-input-label.iui-disabled{
|
|
|
7800
7843
|
background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
|
|
7801
7844
|
}
|
|
7802
7845
|
.iui-cell.iui-negative{
|
|
7803
|
-
background-
|
|
7804
|
-
background-color
|
|
7846
|
+
background:linear-gradient(rgba(209, 10, 10, 0.1), rgba(209, 10, 10, 0.1)), linear-gradient(white, white);
|
|
7847
|
+
background:linear-gradient(rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
|
|
7805
7848
|
}
|
|
7806
7849
|
.iui-cell.iui-negative::-moz-selection, .iui-cell.iui-negative *::-moz-selection{
|
|
7807
7850
|
background-color:rgba(209, 10, 10, 0.2);
|
|
@@ -7824,6 +7867,36 @@ label.iui-input-label.iui-disabled{
|
|
|
7824
7867
|
background-color:var(--iui-color-background-1);
|
|
7825
7868
|
}
|
|
7826
7869
|
|
|
7870
|
+
.iui-cell-shadow-left{
|
|
7871
|
+
position:absolute;
|
|
7872
|
+
top:-1px;
|
|
7873
|
+
bottom:-1px;
|
|
7874
|
+
width:24px;
|
|
7875
|
+
pointer-events:none;
|
|
7876
|
+
left:0;
|
|
7877
|
+
transform:translate(-100%);
|
|
7878
|
+
box-shadow:inset -10px 0 5px -10px rgba(0, 0, 0, 0.25);
|
|
7879
|
+
}
|
|
7880
|
+
.iui-table-header .iui-cell-shadow-left{
|
|
7881
|
+
top:0;
|
|
7882
|
+
bottom:0;
|
|
7883
|
+
}
|
|
7884
|
+
|
|
7885
|
+
.iui-cell-shadow-right{
|
|
7886
|
+
position:absolute;
|
|
7887
|
+
top:-1px;
|
|
7888
|
+
bottom:-1px;
|
|
7889
|
+
width:24px;
|
|
7890
|
+
pointer-events:none;
|
|
7891
|
+
right:0;
|
|
7892
|
+
transform:translate(100%);
|
|
7893
|
+
box-shadow:inset 10px 0 5px -10px rgba(0, 0, 0, 0.25);
|
|
7894
|
+
}
|
|
7895
|
+
.iui-table-header .iui-cell-shadow-right{
|
|
7896
|
+
top:0;
|
|
7897
|
+
bottom:0;
|
|
7898
|
+
}
|
|
7899
|
+
|
|
7827
7900
|
.iui-paginator{
|
|
7828
7901
|
margin:0;
|
|
7829
7902
|
padding:0;
|
package/css/code.css
CHANGED
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
min-width:192px;
|
|
99
99
|
height:100%;
|
|
100
100
|
transform:translateX(100%);
|
|
101
|
-
box-shadow:-1px 0
|
|
101
|
+
box-shadow:-1px 0 10px rgba(0, 0, 0, 0.25);
|
|
102
102
|
-webkit-clip-path:inset(0 0 0 -15px);
|
|
103
103
|
clip-path:inset(0 0 0 -15px);
|
|
104
104
|
}
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
min-height:192px;
|
|
132
132
|
width:100%;
|
|
133
133
|
transform:translateY(100%);
|
|
134
|
-
box-shadow:0 -1px
|
|
134
|
+
box-shadow:0 -1px 10px rgba(0, 0, 0, 0.25);
|
|
135
135
|
-webkit-clip-path:inset(-15px 0 0 0);
|
|
136
136
|
clip-path:inset(-15px 0 0 0);
|
|
137
137
|
}
|
package/css/side-navigation.css
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
border-right:none;
|
|
72
72
|
overflow:hidden;
|
|
73
73
|
justify-content:flex-start;
|
|
74
|
-
--_iui-button-active-stripe-inset:0 calc(100% - 2px)
|
|
74
|
+
--_iui-button-active-stripe-inset:0 0 0 calc(100% - 2px);
|
|
75
75
|
}
|
|
76
76
|
.iui-side-navigation .iui-sidenav-button:not(.iui-expand){
|
|
77
77
|
height:55px;
|