@clayui/css 3.46.0 → 3.49.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 +192 -84
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +141 -66
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +137 -64
- 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/_cards.scss +12 -0
- package/src/scss/atlas/variables/_forms.scss +9 -8
- package/src/scss/atlas/variables/_list-group.scss +28 -12
- 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/components/_cards.scss +10 -120
- package/src/scss/cadmin/components/_empty-state.scss +36 -0
- package/src/scss/cadmin/components/_links.scss +0 -8
- package/src/scss/cadmin/components/_treeview.scss +58 -1
- package/src/scss/cadmin/variables/_cards.scss +164 -1
- package/src/scss/cadmin/variables/_empty-state.scss +23 -0
- package/src/scss/cadmin/variables/_forms.scss +9 -8
- package/src/scss/cadmin/variables/_links.scss +14 -0
- package/src/scss/cadmin/variables/_list-group.scss +32 -16
- package/src/scss/cadmin/variables/_sidebar.scss +1 -1
- package/src/scss/cadmin/variables/_treeview.scss +17 -1
- package/src/scss/cadmin.scss +2 -0
- package/src/scss/components/_cards.scss +28 -122
- package/src/scss/components/_custom-forms.scss +2 -2
- package/src/scss/components/_dropdowns.scss +0 -28
- package/src/scss/components/_empty-state.scss +30 -0
- package/src/scss/components/_links.scss +1 -9
- package/src/scss/components/_multi-step-nav.scss +11 -5
- package/src/scss/components/_tables.scss +0 -8
- package/src/scss/components/_treeview.scss +58 -1
- package/src/scss/mixins/_alerts.scss +180 -113
- package/src/scss/mixins/_cards.scss +59 -25
- package/src/scss/mixins/_dropdown-menu.scss +17 -0
- package/src/scss/mixins/_links.scss +22 -2
- package/src/scss/variables/_cards.scss +158 -4
- package/src/scss/variables/_custom-forms.scss +19 -4
- package/src/scss/variables/_dropdowns.scss +45 -0
- package/src/scss/variables/_empty-state.scss +23 -0
- package/src/scss/variables/_links.scss +21 -3
- package/src/scss/variables/_list-group.scss +22 -12
- package/src/scss/variables/_multi-step-nav.scss +6 -0
- package/src/scss/variables/_range.scss +4 -2
- package/src/scss/variables/_sidebar.scss +3 -3
- package/src/scss/variables/_stickers.scss +3 -3
- package/src/scss/variables/_tables.scss +14 -0
- package/src/scss/variables/_toggle-switch.scss +14 -2
- package/src/scss/variables/_treeview.scss +21 -1
package/lib/css/base.css
CHANGED
|
@@ -4402,6 +4402,20 @@ input[type=button].btn-block {
|
|
|
4402
4402
|
word-wrap: break-word;
|
|
4403
4403
|
}
|
|
4404
4404
|
|
|
4405
|
+
.c-empty-state-sm.c-empty-state-animation {
|
|
4406
|
+
margin: 2.5rem auto 2rem;
|
|
4407
|
+
max-width: 268px;
|
|
4408
|
+
}
|
|
4409
|
+
.c-empty-state-sm .c-empty-state-image {
|
|
4410
|
+
max-width: 120px;
|
|
4411
|
+
}
|
|
4412
|
+
.c-empty-state-sm .c-empty-state-title {
|
|
4413
|
+
font-size: 1rem;
|
|
4414
|
+
line-height: 1.5;
|
|
4415
|
+
}
|
|
4416
|
+
.c-empty-state-sm .c-empty-state-text {
|
|
4417
|
+
font-size: 0.875rem;
|
|
4418
|
+
}
|
|
4405
4419
|
.label {
|
|
4406
4420
|
border-color: #212529;
|
|
4407
4421
|
border-radius: 0.25rem;
|
|
@@ -4988,6 +5002,12 @@ input[type=button].btn-block {
|
|
|
4988
5002
|
bottom: -0.75rem;
|
|
4989
5003
|
top: auto;
|
|
4990
5004
|
}
|
|
5005
|
+
.sticker-outside.sticker-bottom-right.sticker-sm {
|
|
5006
|
+
bottom: -0.75rem;
|
|
5007
|
+
left: auto;
|
|
5008
|
+
right: -0.75rem;
|
|
5009
|
+
top: auto;
|
|
5010
|
+
}
|
|
4991
5011
|
.sticker-outside.sticker-top-right.sticker-sm {
|
|
4992
5012
|
left: auto;
|
|
4993
5013
|
right: -0.75rem;
|
|
@@ -5007,6 +5027,12 @@ input[type=button].btn-block {
|
|
|
5007
5027
|
bottom: -1.25rem;
|
|
5008
5028
|
top: auto;
|
|
5009
5029
|
}
|
|
5030
|
+
.sticker-outside.sticker-bottom-right.sticker-lg {
|
|
5031
|
+
bottom: -1.25rem;
|
|
5032
|
+
left: auto;
|
|
5033
|
+
right: -1.25rem;
|
|
5034
|
+
top: auto;
|
|
5035
|
+
}
|
|
5010
5036
|
.sticker-outside.sticker-top-right.sticker-lg {
|
|
5011
5037
|
left: auto;
|
|
5012
5038
|
right: -1.25rem;
|
|
@@ -5026,6 +5052,12 @@ input[type=button].btn-block {
|
|
|
5026
5052
|
bottom: -1.5rem;
|
|
5027
5053
|
top: auto;
|
|
5028
5054
|
}
|
|
5055
|
+
.sticker-outside.sticker-bottom-right.sticker-xl {
|
|
5056
|
+
bottom: -1.5rem;
|
|
5057
|
+
left: auto;
|
|
5058
|
+
right: -1.5rem;
|
|
5059
|
+
top: auto;
|
|
5060
|
+
}
|
|
5029
5061
|
.sticker-outside.sticker-top-right.sticker-xl {
|
|
5030
5062
|
left: auto;
|
|
5031
5063
|
right: -1.5rem;
|
|
@@ -5070,33 +5102,16 @@ input[type=button].btn-block {
|
|
|
5070
5102
|
.card-horizontal {
|
|
5071
5103
|
background-color: #fff;
|
|
5072
5104
|
border-color: rgba(0, 0, 0, 0.125);
|
|
5105
|
+
border-radius: 0.25rem;
|
|
5073
5106
|
border-style: solid;
|
|
5074
5107
|
border-width: 0.0625rem;
|
|
5075
|
-
border-radius: 0.25rem;
|
|
5076
5108
|
display: block;
|
|
5077
5109
|
margin-bottom: 1.5rem;
|
|
5078
5110
|
min-width: 0;
|
|
5079
5111
|
position: relative;
|
|
5112
|
+
overflow-wrap: break-word;
|
|
5080
5113
|
word-wrap: break-word;
|
|
5081
5114
|
}
|
|
5082
|
-
.card .autofit-col:first-child,
|
|
5083
|
-
.card-horizontal .autofit-col:first-child {
|
|
5084
|
-
border-bottom-left-radius: calc(
|
|
5085
|
-
0.25rem - 0.0625rem
|
|
5086
|
-
);
|
|
5087
|
-
border-top-left-radius: calc(
|
|
5088
|
-
0.25rem - 0.0625rem
|
|
5089
|
-
);
|
|
5090
|
-
}
|
|
5091
|
-
.card .autofit-col:last-child,
|
|
5092
|
-
.card-horizontal .autofit-col:last-child {
|
|
5093
|
-
border-bottom-right-radius: calc(
|
|
5094
|
-
0.25rem - 0.0625rem
|
|
5095
|
-
);
|
|
5096
|
-
border-top-right-radius: calc(
|
|
5097
|
-
0.25rem - 0.0625rem
|
|
5098
|
-
);
|
|
5099
|
-
}
|
|
5100
5115
|
.card .aspect-ratio .label,
|
|
5101
5116
|
.card-horizontal .aspect-ratio .label {
|
|
5102
5117
|
display: block;
|
|
@@ -5142,6 +5157,24 @@ input[type=button].btn-block {
|
|
|
5142
5157
|
margin-left: 0;
|
|
5143
5158
|
margin-right: 0;
|
|
5144
5159
|
}
|
|
5160
|
+
.card .autofit-col:first-child,
|
|
5161
|
+
.card-horizontal .autofit-col:first-child {
|
|
5162
|
+
border-bottom-left-radius: calc(
|
|
5163
|
+
0.25rem - 0.0625rem
|
|
5164
|
+
);
|
|
5165
|
+
border-top-left-radius: calc(
|
|
5166
|
+
0.25rem - 0.0625rem
|
|
5167
|
+
);
|
|
5168
|
+
}
|
|
5169
|
+
.card .autofit-col:last-child,
|
|
5170
|
+
.card-horizontal .autofit-col:last-child {
|
|
5171
|
+
border-bottom-right-radius: calc(
|
|
5172
|
+
0.25rem - 0.0625rem
|
|
5173
|
+
);
|
|
5174
|
+
border-top-right-radius: calc(
|
|
5175
|
+
0.25rem - 0.0625rem
|
|
5176
|
+
);
|
|
5177
|
+
}
|
|
5145
5178
|
.card > .list-group:first-child .list-group-item:first-child,
|
|
5146
5179
|
.card-horizontal > .list-group:first-child .list-group-item:first-child {
|
|
5147
5180
|
border-top-left-radius: 0.25rem;
|
|
@@ -5185,16 +5218,17 @@ input[type=button].btn-block {
|
|
|
5185
5218
|
margin-bottom: 0;
|
|
5186
5219
|
margin-top: 0;
|
|
5187
5220
|
}
|
|
5188
|
-
.card-subtitle
|
|
5221
|
+
.card-subtitle[href],
|
|
5222
|
+
.card-subtitle [href] {
|
|
5189
5223
|
color: #6c757d;
|
|
5190
5224
|
}
|
|
5191
|
-
.card-subtitle
|
|
5225
|
+
.card-subtitle[href]:hover,
|
|
5226
|
+
.card-subtitle [href]:hover {
|
|
5192
5227
|
color: #494f54;
|
|
5193
5228
|
}
|
|
5194
5229
|
.card-text:last-child {
|
|
5195
5230
|
margin-bottom: 0;
|
|
5196
5231
|
}
|
|
5197
|
-
|
|
5198
5232
|
.card-link {
|
|
5199
5233
|
color: #007bff;
|
|
5200
5234
|
}
|
|
@@ -5223,11 +5257,7 @@ input[type=button].btn-block {
|
|
|
5223
5257
|
padding: 0.75rem 1.25rem;
|
|
5224
5258
|
}
|
|
5225
5259
|
.card-header:first-child {
|
|
5226
|
-
border-radius: calc(
|
|
5227
|
-
0.25rem - 0.0625rem
|
|
5228
|
-
) calc(
|
|
5229
|
-
0.25rem - 0.0625rem
|
|
5230
|
-
) 0 0;
|
|
5260
|
+
border-radius: calc( 0.25rem - 0.0625rem ) calc( 0.25rem - 0.0625rem ) 0 0;
|
|
5231
5261
|
}
|
|
5232
5262
|
.card-header + .list-group .list-group-item:first-child {
|
|
5233
5263
|
border-top: 0;
|
|
@@ -5251,13 +5281,8 @@ input[type=button].btn-block {
|
|
|
5251
5281
|
padding: 0.75rem 1.25rem;
|
|
5252
5282
|
}
|
|
5253
5283
|
.card-footer:last-child {
|
|
5254
|
-
border-radius: 0 0 calc(
|
|
5255
|
-
0.25rem - 0.0625rem
|
|
5256
|
-
) calc(
|
|
5257
|
-
0.25rem - 0.0625rem
|
|
5258
|
-
);
|
|
5284
|
+
border-radius: 0 0 calc( 0.25rem - 0.0625rem ) calc( 0.25rem - 0.0625rem );
|
|
5259
5285
|
}
|
|
5260
|
-
|
|
5261
5286
|
.card-img-overlay {
|
|
5262
5287
|
bottom: 0;
|
|
5263
5288
|
left: 0;
|
|
@@ -7842,20 +7867,24 @@ button.link-outline {
|
|
|
7842
7867
|
margin-bottom: calc(( 1.9375rem - (1em * 1.2) ) / 2);
|
|
7843
7868
|
margin-top: calc(( 1.9375rem - (1em * 1.2) ) / 2);
|
|
7844
7869
|
}
|
|
7845
|
-
.component-title
|
|
7870
|
+
.component-title[href],
|
|
7871
|
+
.component-title [href] {
|
|
7846
7872
|
color: #212529;
|
|
7847
7873
|
}
|
|
7848
|
-
.component-title
|
|
7874
|
+
.component-title[href]:hover,
|
|
7875
|
+
.component-title [href]:hover {
|
|
7849
7876
|
color: black;
|
|
7850
7877
|
}
|
|
7851
7878
|
.component-subtitle {
|
|
7852
7879
|
color: #6c757d;
|
|
7853
7880
|
margin-bottom: 0;
|
|
7854
7881
|
}
|
|
7855
|
-
.component-subtitle
|
|
7882
|
+
.component-subtitle[href],
|
|
7883
|
+
.component-subtitle [href] {
|
|
7856
7884
|
color: #6c757d;
|
|
7857
7885
|
}
|
|
7858
|
-
.component-subtitle
|
|
7886
|
+
.component-subtitle[href]:hover,
|
|
7887
|
+
.component-subtitle [href]:hover {
|
|
7859
7888
|
color: #494f54;
|
|
7860
7889
|
}
|
|
7861
7890
|
.component-action {
|
|
@@ -8148,10 +8177,10 @@ button.link-outline {
|
|
|
8148
8177
|
margin-bottom: 1rem;
|
|
8149
8178
|
}
|
|
8150
8179
|
.clay-range-input[data-label-min]::before {
|
|
8151
|
-
content: attr(data-label-min);
|
|
8180
|
+
content: '\FEFF' attr(data-label-min);
|
|
8152
8181
|
}
|
|
8153
8182
|
.clay-range-input[data-label-max]::after {
|
|
8154
|
-
content: attr(data-label-max);
|
|
8183
|
+
content: '\FEFF' attr(data-label-max);
|
|
8155
8184
|
right: 0;
|
|
8156
8185
|
}
|
|
8157
8186
|
.clay-range-input::after, .clay-range-input::before {
|
|
@@ -8727,10 +8756,10 @@ label.custom-control-label {
|
|
|
8727
8756
|
background-color: #e9ecef;
|
|
8728
8757
|
}
|
|
8729
8758
|
.custom-file-input:lang(en) ~ .custom-file-label::after {
|
|
8730
|
-
content:
|
|
8759
|
+
content: '\FEFF Browse';
|
|
8731
8760
|
}
|
|
8732
8761
|
.custom-file-input ~ .custom-file-label[data-browse]::after {
|
|
8733
|
-
content: attr(data-browse);
|
|
8762
|
+
content: '\FEFF' attr(data-browse);
|
|
8734
8763
|
}
|
|
8735
8764
|
|
|
8736
8765
|
.custom-file-label {
|
|
@@ -8754,7 +8783,7 @@ label.custom-control-label {
|
|
|
8754
8783
|
border-radius: 0 0.25rem 0.25rem 0;
|
|
8755
8784
|
bottom: 0;
|
|
8756
8785
|
color: #495057;
|
|
8757
|
-
content:
|
|
8786
|
+
content: '\FEFF Browse';
|
|
8758
8787
|
display: block;
|
|
8759
8788
|
height: 36px;
|
|
8760
8789
|
line-height: 1.5;
|
|
@@ -10461,41 +10490,49 @@ label.custom-control-label {
|
|
|
10461
10490
|
margin-bottom: 0;
|
|
10462
10491
|
margin-top: -0.25rem;
|
|
10463
10492
|
}
|
|
10464
|
-
.list-group-title
|
|
10493
|
+
.list-group-title[href],
|
|
10494
|
+
.list-group-title [href] {
|
|
10465
10495
|
color: #212529;
|
|
10466
10496
|
max-width: 100%;
|
|
10467
10497
|
}
|
|
10468
|
-
.list-group-title
|
|
10498
|
+
.list-group-title[href]:hover,
|
|
10499
|
+
.list-group-title [href]:hover {
|
|
10469
10500
|
color: black;
|
|
10470
10501
|
}
|
|
10471
10502
|
.list-group-subtitle {
|
|
10472
10503
|
color: #6c757d;
|
|
10473
10504
|
margin-bottom: 0;
|
|
10474
10505
|
}
|
|
10475
|
-
.list-group-subtitle
|
|
10506
|
+
.list-group-subtitle[href],
|
|
10507
|
+
.list-group-subtitle [href] {
|
|
10476
10508
|
color: #6c757d;
|
|
10477
10509
|
}
|
|
10478
|
-
.list-group-subtitle
|
|
10510
|
+
.list-group-subtitle[href]:hover,
|
|
10511
|
+
.list-group-subtitle [href]:hover {
|
|
10479
10512
|
color: #494f54;
|
|
10480
10513
|
}
|
|
10481
10514
|
.list-group-text {
|
|
10482
10515
|
color: #212529;
|
|
10483
10516
|
margin-bottom: 0;
|
|
10484
10517
|
}
|
|
10485
|
-
.list-group-text
|
|
10518
|
+
.list-group-text[href],
|
|
10519
|
+
.list-group-text [href] {
|
|
10486
10520
|
color: #212529;
|
|
10487
10521
|
}
|
|
10488
|
-
.list-group-text
|
|
10522
|
+
.list-group-text[href]:hover,
|
|
10523
|
+
.list-group-text [href]:hover {
|
|
10489
10524
|
color: black;
|
|
10490
10525
|
}
|
|
10491
10526
|
.list-group-subtext {
|
|
10492
10527
|
color: #6c757d;
|
|
10493
10528
|
margin-bottom: 0;
|
|
10494
10529
|
}
|
|
10495
|
-
.list-group-subtext
|
|
10530
|
+
.list-group-subtext[href],
|
|
10531
|
+
.list-group-subtext [href] {
|
|
10496
10532
|
color: #6c757d;
|
|
10497
10533
|
}
|
|
10498
|
-
.list-group-subtext
|
|
10534
|
+
.list-group-subtext[href]:hover,
|
|
10535
|
+
.list-group-subtext [href]:hover {
|
|
10499
10536
|
color: #494f54;
|
|
10500
10537
|
}
|
|
10501
10538
|
.show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
|
|
@@ -11434,7 +11471,7 @@ label.custom-control-label {
|
|
|
11434
11471
|
background-size: 1rem;
|
|
11435
11472
|
}
|
|
11436
11473
|
.multi-step-item.complete .multi-step-icon[data-multi-step-icon]:before {
|
|
11437
|
-
content:
|
|
11474
|
+
content: none;
|
|
11438
11475
|
}
|
|
11439
11476
|
.multi-step-item.complete .multi-step-icon:active {
|
|
11440
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");
|
|
@@ -11538,8 +11575,8 @@ label.custom-control-label {
|
|
|
11538
11575
|
outline: 0;
|
|
11539
11576
|
text-decoration: none;
|
|
11540
11577
|
}
|
|
11541
|
-
.multi-step-icon[data-multi-step-icon]
|
|
11542
|
-
content: attr(data-multi-step-icon);
|
|
11578
|
+
.multi-step-icon[data-multi-step-icon]::before {
|
|
11579
|
+
content: '\FEFF' attr(data-multi-step-icon);
|
|
11543
11580
|
height: 2rem;
|
|
11544
11581
|
line-height: 2rem;
|
|
11545
11582
|
text-align: center;
|
|
@@ -16751,7 +16788,8 @@ a.sheet-subtitle:hover {
|
|
|
16751
16788
|
font-size: 1.5rem;
|
|
16752
16789
|
font-weight: 500;
|
|
16753
16790
|
}
|
|
16754
|
-
.sidebar-header .component-title
|
|
16791
|
+
.sidebar-header .component-title[href],
|
|
16792
|
+
.sidebar-header .component-title [href] {
|
|
16755
16793
|
color: #212529;
|
|
16756
16794
|
}
|
|
16757
16795
|
.sidebar-header .component-subtitle {
|
|
@@ -16811,6 +16849,12 @@ a.sheet-subtitle:hover {
|
|
|
16811
16849
|
bottom: -0.75rem;
|
|
16812
16850
|
top: auto;
|
|
16813
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
|
+
}
|
|
16814
16858
|
.sidebar-list-group .sticker.sticker-outside.sticker-top-right {
|
|
16815
16859
|
left: auto;
|
|
16816
16860
|
right: -0.75rem;
|
|
@@ -16843,13 +16887,15 @@ a.sheet-subtitle:hover {
|
|
|
16843
16887
|
.sidebar-light .sidebar-list-group .list-group-title {
|
|
16844
16888
|
font-size: 1rem;
|
|
16845
16889
|
}
|
|
16846
|
-
.sidebar-light .sidebar-list-group .list-group-title
|
|
16890
|
+
.sidebar-light .sidebar-list-group .list-group-title[href],
|
|
16891
|
+
.sidebar-light .sidebar-list-group .list-group-title [href] {
|
|
16847
16892
|
color: #212529;
|
|
16848
16893
|
}
|
|
16849
16894
|
.sidebar-light .sidebar-panel {
|
|
16850
16895
|
background-color: #e9ecef;
|
|
16851
16896
|
}
|
|
16852
|
-
.sidebar-light .sidebar-dd
|
|
16897
|
+
.sidebar-light .sidebar-dd[href],
|
|
16898
|
+
.sidebar-light .sidebar-dd [href] {
|
|
16853
16899
|
color: #212529;
|
|
16854
16900
|
}
|
|
16855
16901
|
.sidebar-light .component-navigation-bar {
|
|
@@ -16917,13 +16963,15 @@ a.sheet-subtitle:hover {
|
|
|
16917
16963
|
.sidebar-dark .sidebar-header .component-title {
|
|
16918
16964
|
color: inherit;
|
|
16919
16965
|
}
|
|
16920
|
-
.sidebar-dark .sidebar-header .component-title
|
|
16966
|
+
.sidebar-dark .sidebar-header .component-title[href],
|
|
16967
|
+
.sidebar-dark .sidebar-header .component-title [href] {
|
|
16921
16968
|
color: inherit;
|
|
16922
16969
|
}
|
|
16923
16970
|
.sidebar-dark .sidebar-header .component-subtitle {
|
|
16924
16971
|
color: inherit;
|
|
16925
16972
|
}
|
|
16926
|
-
.sidebar-dark .sidebar-header .component-subtitle
|
|
16973
|
+
.sidebar-dark .sidebar-header .component-subtitle[href],
|
|
16974
|
+
.sidebar-dark .sidebar-header .component-subtitle [href] {
|
|
16927
16975
|
color: inherit;
|
|
16928
16976
|
}
|
|
16929
16977
|
.sidebar-dark .nav-nested .nav-link {
|
|
@@ -17481,10 +17529,12 @@ caption {
|
|
|
17481
17529
|
line-height: 1.5;
|
|
17482
17530
|
margin-bottom: 0;
|
|
17483
17531
|
}
|
|
17484
|
-
.table-title
|
|
17532
|
+
.table-title[href],
|
|
17533
|
+
.table-title [href] {
|
|
17485
17534
|
color: #212529;
|
|
17486
17535
|
}
|
|
17487
|
-
.table-title
|
|
17536
|
+
.table-title[href]:hover,
|
|
17537
|
+
.table-title [href]:hover {
|
|
17488
17538
|
color: #212529;
|
|
17489
17539
|
}
|
|
17490
17540
|
.table-link {
|
|
@@ -17763,10 +17813,12 @@ caption {
|
|
|
17763
17813
|
line-height: 1.2;
|
|
17764
17814
|
margin-bottom: 0;
|
|
17765
17815
|
}
|
|
17766
|
-
.table-list-title
|
|
17816
|
+
.table-list-title[href],
|
|
17817
|
+
.table-list-title [href] {
|
|
17767
17818
|
color: #212529;
|
|
17768
17819
|
}
|
|
17769
|
-
.table-list-title
|
|
17820
|
+
.table-list-title[href]:hover,
|
|
17821
|
+
.table-list-title [href]:hover {
|
|
17770
17822
|
color: #212529;
|
|
17771
17823
|
}
|
|
17772
17824
|
.table-list-link {
|
|
@@ -18969,7 +19021,7 @@ caption {
|
|
|
18969
19021
|
}
|
|
18970
19022
|
}
|
|
18971
19023
|
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
18972
|
-
content: attr(data-label-off);
|
|
19024
|
+
content: '\FEFF' attr(data-label-off);
|
|
18973
19025
|
margin-left: 58px;
|
|
18974
19026
|
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;
|
|
18975
19027
|
white-space: nowrap;
|
|
@@ -19032,7 +19084,7 @@ caption {
|
|
|
19032
19084
|
left: 25px;
|
|
19033
19085
|
}
|
|
19034
19086
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19035
|
-
content: attr(data-label-on);
|
|
19087
|
+
content: '\FEFF' attr(data-label-on);
|
|
19036
19088
|
}
|
|
19037
19089
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon {
|
|
19038
19090
|
color: #fff;
|
|
@@ -19533,6 +19585,7 @@ caption {
|
|
|
19533
19585
|
word-wrap: break-word;
|
|
19534
19586
|
}
|
|
19535
19587
|
.treeview-link {
|
|
19588
|
+
background-color: transparent;
|
|
19536
19589
|
cursor: pointer;
|
|
19537
19590
|
display: block;
|
|
19538
19591
|
border-color: transparent;
|
|
@@ -19543,6 +19596,7 @@ caption {
|
|
|
19543
19596
|
min-width: 100%;
|
|
19544
19597
|
padding: 0;
|
|
19545
19598
|
position: relative;
|
|
19599
|
+
text-align: left;
|
|
19546
19600
|
-ms-user-select: none;
|
|
19547
19601
|
-moz-user-select: none;
|
|
19548
19602
|
-webkit-user-select: none;
|
|
@@ -19555,6 +19609,9 @@ caption {
|
|
|
19555
19609
|
box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19556
19610
|
outline: 0;
|
|
19557
19611
|
}
|
|
19612
|
+
.treeview-link:disabled, .treeview-link.disabled {
|
|
19613
|
+
cursor: not-allowed;
|
|
19614
|
+
}
|
|
19558
19615
|
.treeview-link.treeview-dropping-bottom {
|
|
19559
19616
|
box-shadow: 0 2px 0 0 #75b8ff;
|
|
19560
19617
|
}
|
|
@@ -19566,7 +19623,10 @@ caption {
|
|
|
19566
19623
|
box-shadow: 0 -2px 0 0 #75b8ff;
|
|
19567
19624
|
}
|
|
19568
19625
|
.treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
|
|
19569
|
-
display:
|
|
19626
|
+
display: flex;
|
|
19627
|
+
}
|
|
19628
|
+
.treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
|
|
19629
|
+
display: none;
|
|
19570
19630
|
}
|
|
19571
19631
|
.treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
19572
19632
|
display: none;
|
|
@@ -19607,6 +19667,10 @@ caption {
|
|
|
19607
19667
|
.treeview-light .component-expander:hover {
|
|
19608
19668
|
color: #007bff;
|
|
19609
19669
|
}
|
|
19670
|
+
.treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
|
|
19671
|
+
color: #6c757d;
|
|
19672
|
+
opacity: 0.5;
|
|
19673
|
+
}
|
|
19610
19674
|
.treeview-light .component-expander.btn-secondary {
|
|
19611
19675
|
background-color: #fff;
|
|
19612
19676
|
}
|
|
@@ -19625,12 +19689,20 @@ caption {
|
|
|
19625
19689
|
background-color: #e9ecef;
|
|
19626
19690
|
color: #212529;
|
|
19627
19691
|
}
|
|
19692
|
+
.treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
|
|
19693
|
+
background-color: transparent;
|
|
19694
|
+
color: rgba(108, 117, 125, 0.5);
|
|
19695
|
+
}
|
|
19628
19696
|
.treeview-dark .component-expander {
|
|
19629
19697
|
color: #a9afb5;
|
|
19630
19698
|
}
|
|
19631
19699
|
.treeview-dark .component-expander:hover {
|
|
19632
19700
|
color: #75b8ff;
|
|
19633
19701
|
}
|
|
19702
|
+
.treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
|
|
19703
|
+
color: #a9afb5;
|
|
19704
|
+
opacity: 0.5;
|
|
19705
|
+
}
|
|
19634
19706
|
.treeview-dark .treeview-link {
|
|
19635
19707
|
color: #a9afb5;
|
|
19636
19708
|
}
|
|
@@ -19643,11 +19715,14 @@ caption {
|
|
|
19643
19715
|
}
|
|
19644
19716
|
.treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
|
|
19645
19717
|
background-color: transparent;
|
|
19646
|
-
color: rgba(169, 175, 181, 0.
|
|
19718
|
+
color: rgba(169, 175, 181, 0.5);
|
|
19647
19719
|
}
|
|
19648
19720
|
.treeview-dark .component-action {
|
|
19649
19721
|
color: #a9afb5;
|
|
19650
19722
|
}
|
|
19723
|
+
.treeview-dark .component-action:disabled, .treeview-dark .component-action.disabled {
|
|
19724
|
+
color: #a9afb5;
|
|
19725
|
+
}
|
|
19651
19726
|
.bg-checkered {
|
|
19652
19727
|
background-image: linear-gradient(45deg, #e9ecef 25%, transparent 25%), linear-gradient(-45deg, #e9ecef 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e9ecef 75%), linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
|
|
19653
19728
|
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
|