@clayui/css 3.47.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 +65 -22
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +50 -22
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +14 -0
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_cadmin-variables.scss +2 -0
- package/src/scss/atlas/variables/_forms.scss +9 -8
- package/src/scss/atlas-variables.scss +2 -0
- package/src/scss/atlas.scss +2 -0
- package/src/scss/base-variables.scss +2 -0
- package/src/scss/base.scss +2 -0
- package/src/scss/cadmin/variables/_forms.scss +9 -8
- package/src/scss/cadmin.scss +2 -0
- package/src/scss/components/_custom-forms.scss +2 -2
- package/src/scss/components/_dropdowns.scss +0 -28
- package/src/scss/components/_multi-step-nav.scss +11 -5
- package/src/scss/components/_tables.scss +29 -17
- package/src/scss/functions/_global-functions.scss +18 -0
- package/src/scss/mixins/_alerts.scss +180 -113
- package/src/scss/mixins/_dropdown-menu.scss +17 -0
- package/src/scss/variables/_custom-forms.scss +19 -4
- package/src/scss/variables/_dropdowns.scss +45 -0
- package/src/scss/variables/_multi-step-nav.scss +6 -0
- package/src/scss/variables/_range.scss +4 -2
- package/src/scss/variables/_stickers.scss +3 -3
- package/src/scss/variables/_tables.scss +63 -3
- package/src/scss/variables/_toggle-switch.scss +14 -2
package/lib/css/base.css
CHANGED
|
@@ -5002,6 +5002,12 @@ input[type=button].btn-block {
|
|
|
5002
5002
|
bottom: -0.75rem;
|
|
5003
5003
|
top: auto;
|
|
5004
5004
|
}
|
|
5005
|
+
.sticker-outside.sticker-bottom-right.sticker-sm {
|
|
5006
|
+
bottom: -0.75rem;
|
|
5007
|
+
left: auto;
|
|
5008
|
+
right: -0.75rem;
|
|
5009
|
+
top: auto;
|
|
5010
|
+
}
|
|
5005
5011
|
.sticker-outside.sticker-top-right.sticker-sm {
|
|
5006
5012
|
left: auto;
|
|
5007
5013
|
right: -0.75rem;
|
|
@@ -5021,6 +5027,12 @@ input[type=button].btn-block {
|
|
|
5021
5027
|
bottom: -1.25rem;
|
|
5022
5028
|
top: auto;
|
|
5023
5029
|
}
|
|
5030
|
+
.sticker-outside.sticker-bottom-right.sticker-lg {
|
|
5031
|
+
bottom: -1.25rem;
|
|
5032
|
+
left: auto;
|
|
5033
|
+
right: -1.25rem;
|
|
5034
|
+
top: auto;
|
|
5035
|
+
}
|
|
5024
5036
|
.sticker-outside.sticker-top-right.sticker-lg {
|
|
5025
5037
|
left: auto;
|
|
5026
5038
|
right: -1.25rem;
|
|
@@ -5040,6 +5052,12 @@ input[type=button].btn-block {
|
|
|
5040
5052
|
bottom: -1.5rem;
|
|
5041
5053
|
top: auto;
|
|
5042
5054
|
}
|
|
5055
|
+
.sticker-outside.sticker-bottom-right.sticker-xl {
|
|
5056
|
+
bottom: -1.5rem;
|
|
5057
|
+
left: auto;
|
|
5058
|
+
right: -1.5rem;
|
|
5059
|
+
top: auto;
|
|
5060
|
+
}
|
|
5043
5061
|
.sticker-outside.sticker-top-right.sticker-xl {
|
|
5044
5062
|
left: auto;
|
|
5045
5063
|
right: -1.5rem;
|
|
@@ -8159,10 +8177,10 @@ button.link-outline {
|
|
|
8159
8177
|
margin-bottom: 1rem;
|
|
8160
8178
|
}
|
|
8161
8179
|
.clay-range-input[data-label-min]::before {
|
|
8162
|
-
content: attr(data-label-min);
|
|
8180
|
+
content: '\FEFF' attr(data-label-min);
|
|
8163
8181
|
}
|
|
8164
8182
|
.clay-range-input[data-label-max]::after {
|
|
8165
|
-
content: attr(data-label-max);
|
|
8183
|
+
content: '\FEFF' attr(data-label-max);
|
|
8166
8184
|
right: 0;
|
|
8167
8185
|
}
|
|
8168
8186
|
.clay-range-input::after, .clay-range-input::before {
|
|
@@ -8738,10 +8756,10 @@ label.custom-control-label {
|
|
|
8738
8756
|
background-color: #e9ecef;
|
|
8739
8757
|
}
|
|
8740
8758
|
.custom-file-input:lang(en) ~ .custom-file-label::after {
|
|
8741
|
-
content:
|
|
8759
|
+
content: '\FEFF Browse';
|
|
8742
8760
|
}
|
|
8743
8761
|
.custom-file-input ~ .custom-file-label[data-browse]::after {
|
|
8744
|
-
content: attr(data-browse);
|
|
8762
|
+
content: '\FEFF' attr(data-browse);
|
|
8745
8763
|
}
|
|
8746
8764
|
|
|
8747
8765
|
.custom-file-label {
|
|
@@ -8765,7 +8783,7 @@ label.custom-control-label {
|
|
|
8765
8783
|
border-radius: 0 0.25rem 0.25rem 0;
|
|
8766
8784
|
bottom: 0;
|
|
8767
8785
|
color: #495057;
|
|
8768
|
-
content:
|
|
8786
|
+
content: '\FEFF Browse';
|
|
8769
8787
|
display: block;
|
|
8770
8788
|
height: 36px;
|
|
8771
8789
|
line-height: 1.5;
|
|
@@ -11453,7 +11471,7 @@ label.custom-control-label {
|
|
|
11453
11471
|
background-size: 1rem;
|
|
11454
11472
|
}
|
|
11455
11473
|
.multi-step-item.complete .multi-step-icon[data-multi-step-icon]:before {
|
|
11456
|
-
content:
|
|
11474
|
+
content: none;
|
|
11457
11475
|
}
|
|
11458
11476
|
.multi-step-item.complete .multi-step-icon:active {
|
|
11459
11477
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M192.9%20429.5c-8.3%200-16.4-3.3-22.3-9.2L44.5%20294.1C15%20263.2%2062.7%20222%2089.1%20249.5L191.5%20352l230-258.9c27.2-30.5%2074.3%2011.5%2047.1%2041.9L216.4%20418.9c-5.8%206.5-14%2010.3-22.6%2010.6h-.9z'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
@@ -11557,8 +11575,8 @@ label.custom-control-label {
|
|
|
11557
11575
|
outline: 0;
|
|
11558
11576
|
text-decoration: none;
|
|
11559
11577
|
}
|
|
11560
|
-
.multi-step-icon[data-multi-step-icon]
|
|
11561
|
-
content: attr(data-multi-step-icon);
|
|
11578
|
+
.multi-step-icon[data-multi-step-icon]::before {
|
|
11579
|
+
content: '\FEFF' attr(data-multi-step-icon);
|
|
11562
11580
|
height: 2rem;
|
|
11563
11581
|
line-height: 2rem;
|
|
11564
11582
|
text-align: center;
|
|
@@ -16831,6 +16849,12 @@ a.sheet-subtitle:hover {
|
|
|
16831
16849
|
bottom: -0.75rem;
|
|
16832
16850
|
top: auto;
|
|
16833
16851
|
}
|
|
16852
|
+
.sidebar-list-group .sticker.sticker-outside.sticker-bottom-right {
|
|
16853
|
+
bottom: -0.75rem;
|
|
16854
|
+
left: auto;
|
|
16855
|
+
right: -0.75rem;
|
|
16856
|
+
top: auto;
|
|
16857
|
+
}
|
|
16834
16858
|
.sidebar-list-group .sticker.sticker-outside.sticker-top-right {
|
|
16835
16859
|
left: auto;
|
|
16836
16860
|
right: -0.75rem;
|
|
@@ -17632,21 +17656,21 @@ caption {
|
|
|
17632
17656
|
.table-list caption:first-child + thead tr:first-child th:first-child,
|
|
17633
17657
|
.table-list caption:first-child + thead tr:first-child td:first-child,
|
|
17634
17658
|
.table-list caption:first-child + thead tr:first-child .table-cell-start {
|
|
17635
|
-
border-top-left-radius: 0.25rem;
|
|
17659
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
17636
17660
|
}
|
|
17637
17661
|
.table-list thead:first-child tr:first-child th:last-child,
|
|
17638
17662
|
.table-list thead:first-child tr:first-child td:last-child,
|
|
17639
|
-
.table-list thead:first-child tr:first-child .table-cell-
|
|
17663
|
+
.table-list thead:first-child tr:first-child .table-cell-end,
|
|
17640
17664
|
.table-list tbody:first-child tr:first-child th:last-child,
|
|
17641
17665
|
.table-list tbody:first-child tr:first-child td:last-child,
|
|
17642
|
-
.table-list tbody:first-child tr:first-child .table-cell-
|
|
17666
|
+
.table-list tbody:first-child tr:first-child .table-cell-end,
|
|
17643
17667
|
.table-list tfoot:first-child tr:first-child th:last-child,
|
|
17644
17668
|
.table-list tfoot:first-child tr:first-child td:last-child,
|
|
17645
|
-
.table-list tfoot:first-child tr:first-child .table-cell-
|
|
17669
|
+
.table-list tfoot:first-child tr:first-child .table-cell-end,
|
|
17646
17670
|
.table-list caption:first-child + thead tr:first-child th:last-child,
|
|
17647
17671
|
.table-list caption:first-child + thead tr:first-child td:last-child,
|
|
17648
|
-
.table-list caption:first-child + thead tr:first-child .table-cell-
|
|
17649
|
-
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);
|
|
17650
17674
|
}
|
|
17651
17675
|
.table-list thead td,
|
|
17652
17676
|
.table-list thead th,
|
|
@@ -17667,7 +17691,7 @@ caption {
|
|
|
17667
17691
|
.table-list tfoot:last-child tr:last-child th:first-child,
|
|
17668
17692
|
.table-list tfoot:last-child tr:last-child td:first-child,
|
|
17669
17693
|
.table-list tfoot:last-child tr:last-child .table-cell-start {
|
|
17670
|
-
border-bottom-left-radius: 0.25rem;
|
|
17694
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
17671
17695
|
}
|
|
17672
17696
|
.table-list thead:last-child tr:last-child th:last-child,
|
|
17673
17697
|
.table-list thead:last-child tr:last-child td:last-child,
|
|
@@ -17678,10 +17702,12 @@ caption {
|
|
|
17678
17702
|
.table-list tfoot:last-child tr:last-child th:last-child,
|
|
17679
17703
|
.table-list tfoot:last-child tr:last-child td:last-child,
|
|
17680
17704
|
.table-list tfoot:last-child tr:last-child .table-cell-end {
|
|
17681
|
-
border-bottom-right-radius: 0.25rem;
|
|
17705
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
17682
17706
|
}
|
|
17683
17707
|
.table-list thead {
|
|
17684
17708
|
background-color: #fff;
|
|
17709
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
17710
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
17685
17711
|
}
|
|
17686
17712
|
.table-list thead td,
|
|
17687
17713
|
.table-list thead th {
|
|
@@ -17689,6 +17715,8 @@ caption {
|
|
|
17689
17715
|
}
|
|
17690
17716
|
.table-list tbody {
|
|
17691
17717
|
background-color: #fff;
|
|
17718
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
17719
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
17692
17720
|
}
|
|
17693
17721
|
.table-list tbody td,
|
|
17694
17722
|
.table-list tbody th {
|
|
@@ -17704,16 +17732,16 @@ caption {
|
|
|
17704
17732
|
vertical-align: middle;
|
|
17705
17733
|
}
|
|
17706
17734
|
.table-list .table-row-start .table-cell-start {
|
|
17707
|
-
border-top-left-radius: 0.25rem;
|
|
17735
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
17708
17736
|
}
|
|
17709
17737
|
.table-list .table-row-start .table-cell-end {
|
|
17710
|
-
border-top-right-radius: 0.25rem;
|
|
17738
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
17711
17739
|
}
|
|
17712
17740
|
.table-list .table-row-end .table-cell-start {
|
|
17713
|
-
border-bottom-left-radius: 0.25rem;
|
|
17741
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
17714
17742
|
}
|
|
17715
17743
|
.table-list .table-row-end .table-cell-end {
|
|
17716
|
-
border-bottom-right-radius: 0.25rem;
|
|
17744
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
17717
17745
|
}
|
|
17718
17746
|
|
|
17719
17747
|
.table-list.table-bordered thead th,
|
|
@@ -18997,7 +19025,7 @@ caption {
|
|
|
18997
19025
|
}
|
|
18998
19026
|
}
|
|
18999
19027
|
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19000
|
-
content: attr(data-label-off);
|
|
19028
|
+
content: '\FEFF' attr(data-label-off);
|
|
19001
19029
|
margin-left: 58px;
|
|
19002
19030
|
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
19003
19031
|
white-space: nowrap;
|
|
@@ -19060,7 +19088,7 @@ caption {
|
|
|
19060
19088
|
left: 25px;
|
|
19061
19089
|
}
|
|
19062
19090
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19063
|
-
content: attr(data-label-on);
|
|
19091
|
+
content: '\FEFF' attr(data-label-on);
|
|
19064
19092
|
}
|
|
19065
19093
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon {
|
|
19066
19094
|
color: #fff;
|