@clayui/css 3.49.0 → 3.50.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/lib/css/atlas.css +16 -12
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +16 -12
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/components/_tables.scss +29 -17
- package/src/scss/functions/_global-functions.scss +18 -0
- package/src/scss/variables/_tables.scss +63 -3
package/lib/css/base.css
CHANGED
|
@@ -17656,21 +17656,21 @@ caption {
|
|
|
17656
17656
|
.table-list caption:first-child + thead tr:first-child th:first-child,
|
|
17657
17657
|
.table-list caption:first-child + thead tr:first-child td:first-child,
|
|
17658
17658
|
.table-list caption:first-child + thead tr:first-child .table-cell-start {
|
|
17659
|
-
border-top-left-radius: 0.25rem;
|
|
17659
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
17660
17660
|
}
|
|
17661
17661
|
.table-list thead:first-child tr:first-child th:last-child,
|
|
17662
17662
|
.table-list thead:first-child tr:first-child td:last-child,
|
|
17663
|
-
.table-list thead:first-child tr:first-child .table-cell-
|
|
17663
|
+
.table-list thead:first-child tr:first-child .table-cell-end,
|
|
17664
17664
|
.table-list tbody:first-child tr:first-child th:last-child,
|
|
17665
17665
|
.table-list tbody:first-child tr:first-child td:last-child,
|
|
17666
|
-
.table-list tbody:first-child tr:first-child .table-cell-
|
|
17666
|
+
.table-list tbody:first-child tr:first-child .table-cell-end,
|
|
17667
17667
|
.table-list tfoot:first-child tr:first-child th:last-child,
|
|
17668
17668
|
.table-list tfoot:first-child tr:first-child td:last-child,
|
|
17669
|
-
.table-list tfoot:first-child tr:first-child .table-cell-
|
|
17669
|
+
.table-list tfoot:first-child tr:first-child .table-cell-end,
|
|
17670
17670
|
.table-list caption:first-child + thead tr:first-child th:last-child,
|
|
17671
17671
|
.table-list caption:first-child + thead tr:first-child td:last-child,
|
|
17672
|
-
.table-list caption:first-child + thead tr:first-child .table-cell-
|
|
17673
|
-
border-top-right-radius: 0.25rem;
|
|
17672
|
+
.table-list caption:first-child + thead tr:first-child .table-cell-end {
|
|
17673
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
17674
17674
|
}
|
|
17675
17675
|
.table-list thead td,
|
|
17676
17676
|
.table-list thead th,
|
|
@@ -17691,7 +17691,7 @@ caption {
|
|
|
17691
17691
|
.table-list tfoot:last-child tr:last-child th:first-child,
|
|
17692
17692
|
.table-list tfoot:last-child tr:last-child td:first-child,
|
|
17693
17693
|
.table-list tfoot:last-child tr:last-child .table-cell-start {
|
|
17694
|
-
border-bottom-left-radius: 0.25rem;
|
|
17694
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
17695
17695
|
}
|
|
17696
17696
|
.table-list thead:last-child tr:last-child th:last-child,
|
|
17697
17697
|
.table-list thead:last-child tr:last-child td:last-child,
|
|
@@ -17702,10 +17702,12 @@ caption {
|
|
|
17702
17702
|
.table-list tfoot:last-child tr:last-child th:last-child,
|
|
17703
17703
|
.table-list tfoot:last-child tr:last-child td:last-child,
|
|
17704
17704
|
.table-list tfoot:last-child tr:last-child .table-cell-end {
|
|
17705
|
-
border-bottom-right-radius: 0.25rem;
|
|
17705
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
17706
17706
|
}
|
|
17707
17707
|
.table-list thead {
|
|
17708
17708
|
background-color: #fff;
|
|
17709
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
17710
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
17709
17711
|
}
|
|
17710
17712
|
.table-list thead td,
|
|
17711
17713
|
.table-list thead th {
|
|
@@ -17713,6 +17715,8 @@ caption {
|
|
|
17713
17715
|
}
|
|
17714
17716
|
.table-list tbody {
|
|
17715
17717
|
background-color: #fff;
|
|
17718
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
17719
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
17716
17720
|
}
|
|
17717
17721
|
.table-list tbody td,
|
|
17718
17722
|
.table-list tbody th {
|
|
@@ -17728,16 +17732,16 @@ caption {
|
|
|
17728
17732
|
vertical-align: middle;
|
|
17729
17733
|
}
|
|
17730
17734
|
.table-list .table-row-start .table-cell-start {
|
|
17731
|
-
border-top-left-radius: 0.25rem;
|
|
17735
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
17732
17736
|
}
|
|
17733
17737
|
.table-list .table-row-start .table-cell-end {
|
|
17734
|
-
border-top-right-radius: 0.25rem;
|
|
17738
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
17735
17739
|
}
|
|
17736
17740
|
.table-list .table-row-end .table-cell-start {
|
|
17737
|
-
border-bottom-left-radius: 0.25rem;
|
|
17741
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
17738
17742
|
}
|
|
17739
17743
|
.table-list .table-row-end .table-cell-end {
|
|
17740
|
-
border-bottom-right-radius: 0.25rem;
|
|
17744
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
17741
17745
|
}
|
|
17742
17746
|
|
|
17743
17747
|
.table-list.table-bordered thead th,
|