@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/atlas.css
CHANGED
|
@@ -4557,6 +4557,20 @@ input[type=button].btn-block {
|
|
|
4557
4557
|
word-wrap: break-word;
|
|
4558
4558
|
}
|
|
4559
4559
|
|
|
4560
|
+
.c-empty-state-sm.c-empty-state-animation {
|
|
4561
|
+
margin: 2.5rem auto 2rem;
|
|
4562
|
+
max-width: 268px;
|
|
4563
|
+
}
|
|
4564
|
+
.c-empty-state-sm .c-empty-state-image {
|
|
4565
|
+
max-width: 120px;
|
|
4566
|
+
}
|
|
4567
|
+
.c-empty-state-sm .c-empty-state-title {
|
|
4568
|
+
font-size: 1rem;
|
|
4569
|
+
line-height: 1.5;
|
|
4570
|
+
}
|
|
4571
|
+
.c-empty-state-sm .c-empty-state-text {
|
|
4572
|
+
font-size: 0.875rem;
|
|
4573
|
+
}
|
|
4560
4574
|
.label {
|
|
4561
4575
|
border-color: #272833;
|
|
4562
4576
|
border-radius: 0.125rem;
|
|
@@ -5108,6 +5122,12 @@ input[type=button].btn-block {
|
|
|
5108
5122
|
bottom: -0.75rem;
|
|
5109
5123
|
top: auto;
|
|
5110
5124
|
}
|
|
5125
|
+
.sticker-outside.sticker-bottom-right.sticker-sm {
|
|
5126
|
+
bottom: -0.75rem;
|
|
5127
|
+
left: auto;
|
|
5128
|
+
right: -0.75rem;
|
|
5129
|
+
top: auto;
|
|
5130
|
+
}
|
|
5111
5131
|
.sticker-outside.sticker-top-right.sticker-sm {
|
|
5112
5132
|
left: auto;
|
|
5113
5133
|
right: -0.75rem;
|
|
@@ -5127,6 +5147,12 @@ input[type=button].btn-block {
|
|
|
5127
5147
|
bottom: -1.25rem;
|
|
5128
5148
|
top: auto;
|
|
5129
5149
|
}
|
|
5150
|
+
.sticker-outside.sticker-bottom-right.sticker-lg {
|
|
5151
|
+
bottom: -1.25rem;
|
|
5152
|
+
left: auto;
|
|
5153
|
+
right: -1.25rem;
|
|
5154
|
+
top: auto;
|
|
5155
|
+
}
|
|
5130
5156
|
.sticker-outside.sticker-top-right.sticker-lg {
|
|
5131
5157
|
left: auto;
|
|
5132
5158
|
right: -1.25rem;
|
|
@@ -5146,6 +5172,12 @@ input[type=button].btn-block {
|
|
|
5146
5172
|
bottom: -1.5rem;
|
|
5147
5173
|
top: auto;
|
|
5148
5174
|
}
|
|
5175
|
+
.sticker-outside.sticker-bottom-right.sticker-xl {
|
|
5176
|
+
bottom: -1.5rem;
|
|
5177
|
+
left: auto;
|
|
5178
|
+
right: -1.5rem;
|
|
5179
|
+
top: auto;
|
|
5180
|
+
}
|
|
5149
5181
|
.sticker-outside.sticker-top-right.sticker-xl {
|
|
5150
5182
|
left: auto;
|
|
5151
5183
|
right: -1.5rem;
|
|
@@ -5190,34 +5222,17 @@ input[type=button].btn-block {
|
|
|
5190
5222
|
.card-horizontal {
|
|
5191
5223
|
background-color: #fff;
|
|
5192
5224
|
border-color: rgba(0, 0, 0, 0.125);
|
|
5225
|
+
border-radius: 0.25rem;
|
|
5193
5226
|
border-style: solid;
|
|
5194
5227
|
border-width: 0px;
|
|
5195
|
-
border-radius: 0.25rem;
|
|
5196
5228
|
box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
|
|
5197
5229
|
display: block;
|
|
5198
5230
|
margin-bottom: 1.5rem;
|
|
5199
5231
|
min-width: 0;
|
|
5200
5232
|
position: relative;
|
|
5233
|
+
overflow-wrap: break-word;
|
|
5201
5234
|
word-wrap: break-word;
|
|
5202
5235
|
}
|
|
5203
|
-
.card .autofit-col:first-child,
|
|
5204
|
-
.card-horizontal .autofit-col:first-child {
|
|
5205
|
-
border-bottom-left-radius: calc(
|
|
5206
|
-
0.25rem - 0px
|
|
5207
|
-
);
|
|
5208
|
-
border-top-left-radius: calc(
|
|
5209
|
-
0.25rem - 0px
|
|
5210
|
-
);
|
|
5211
|
-
}
|
|
5212
|
-
.card .autofit-col:last-child,
|
|
5213
|
-
.card-horizontal .autofit-col:last-child {
|
|
5214
|
-
border-bottom-right-radius: calc(
|
|
5215
|
-
0.25rem - 0px
|
|
5216
|
-
);
|
|
5217
|
-
border-top-right-radius: calc(
|
|
5218
|
-
0.25rem - 0px
|
|
5219
|
-
);
|
|
5220
|
-
}
|
|
5221
5236
|
.card .aspect-ratio .label,
|
|
5222
5237
|
.card-horizontal .aspect-ratio .label {
|
|
5223
5238
|
display: block;
|
|
@@ -5263,6 +5278,24 @@ input[type=button].btn-block {
|
|
|
5263
5278
|
margin-left: 0;
|
|
5264
5279
|
margin-right: 0;
|
|
5265
5280
|
}
|
|
5281
|
+
.card .autofit-col:first-child,
|
|
5282
|
+
.card-horizontal .autofit-col:first-child {
|
|
5283
|
+
border-bottom-left-radius: calc(
|
|
5284
|
+
0.25rem - 0px
|
|
5285
|
+
);
|
|
5286
|
+
border-top-left-radius: calc(
|
|
5287
|
+
0.25rem - 0px
|
|
5288
|
+
);
|
|
5289
|
+
}
|
|
5290
|
+
.card .autofit-col:last-child,
|
|
5291
|
+
.card-horizontal .autofit-col:last-child {
|
|
5292
|
+
border-bottom-right-radius: calc(
|
|
5293
|
+
0.25rem - 0px
|
|
5294
|
+
);
|
|
5295
|
+
border-top-right-radius: calc(
|
|
5296
|
+
0.25rem - 0px
|
|
5297
|
+
);
|
|
5298
|
+
}
|
|
5266
5299
|
.card > .list-group:first-child .list-group-item:first-child,
|
|
5267
5300
|
.card-horizontal > .list-group:first-child .list-group-item:first-child {
|
|
5268
5301
|
border-top-left-radius: 0.25rem;
|
|
@@ -5300,10 +5333,12 @@ input[type=button].btn-block {
|
|
|
5300
5333
|
margin-bottom: 0;
|
|
5301
5334
|
color: #272833;
|
|
5302
5335
|
}
|
|
5303
|
-
.card-title
|
|
5336
|
+
.card-title[href],
|
|
5337
|
+
.card-title [href] {
|
|
5304
5338
|
color: #272833;
|
|
5305
5339
|
}
|
|
5306
|
-
.card-title
|
|
5340
|
+
.card-title[href]:hover,
|
|
5341
|
+
.card-title [href]:hover {
|
|
5307
5342
|
color: #272833;
|
|
5308
5343
|
}
|
|
5309
5344
|
.card-subtitle {
|
|
@@ -5313,16 +5348,17 @@ input[type=button].btn-block {
|
|
|
5313
5348
|
margin-bottom: 0;
|
|
5314
5349
|
margin-top: 0;
|
|
5315
5350
|
}
|
|
5316
|
-
.card-subtitle
|
|
5351
|
+
.card-subtitle[href],
|
|
5352
|
+
.card-subtitle [href] {
|
|
5317
5353
|
color: #6b6c7e;
|
|
5318
5354
|
}
|
|
5319
|
-
.card-subtitle
|
|
5355
|
+
.card-subtitle[href]:hover,
|
|
5356
|
+
.card-subtitle [href]:hover {
|
|
5320
5357
|
color: #6b6c7e;
|
|
5321
5358
|
}
|
|
5322
5359
|
.card-text:last-child {
|
|
5323
5360
|
margin-bottom: 0;
|
|
5324
5361
|
}
|
|
5325
|
-
|
|
5326
5362
|
.card-link {
|
|
5327
5363
|
color: #6b6c7e;
|
|
5328
5364
|
font-size: 0.875rem;
|
|
@@ -5352,11 +5388,7 @@ input[type=button].btn-block {
|
|
|
5352
5388
|
padding: 0.75rem 1.25rem;
|
|
5353
5389
|
}
|
|
5354
5390
|
.card-header:first-child {
|
|
5355
|
-
border-radius: calc(
|
|
5356
|
-
0.25rem - 0px
|
|
5357
|
-
) calc(
|
|
5358
|
-
0.25rem - 0px
|
|
5359
|
-
) 0 0;
|
|
5391
|
+
border-radius: calc( 0.25rem - 0px ) calc( 0.25rem - 0px ) 0 0;
|
|
5360
5392
|
}
|
|
5361
5393
|
.card-header + .list-group .list-group-item:first-child {
|
|
5362
5394
|
border-top: 0;
|
|
@@ -5380,13 +5412,8 @@ input[type=button].btn-block {
|
|
|
5380
5412
|
padding: 0.75rem 1.25rem;
|
|
5381
5413
|
}
|
|
5382
5414
|
.card-footer:last-child {
|
|
5383
|
-
border-radius: 0 0 calc(
|
|
5384
|
-
0.25rem - 0px
|
|
5385
|
-
) calc(
|
|
5386
|
-
0.25rem - 0px
|
|
5387
|
-
);
|
|
5415
|
+
border-radius: 0 0 calc( 0.25rem - 0px ) calc( 0.25rem - 0px );
|
|
5388
5416
|
}
|
|
5389
|
-
|
|
5390
5417
|
.card-img-overlay {
|
|
5391
5418
|
bottom: 0;
|
|
5392
5419
|
left: 0;
|
|
@@ -7304,8 +7331,23 @@ fieldset[disabled] label .form-control {
|
|
|
7304
7331
|
margin-top: 0.3125rem;
|
|
7305
7332
|
min-height: 1.5rem;
|
|
7306
7333
|
font-size: 0.75rem;
|
|
7334
|
+
padding-bottom: 0.3125rem;
|
|
7335
|
+
padding-left: 0.5rem;
|
|
7336
|
+
padding-right: 0.5rem;
|
|
7337
|
+
padding-top: 0.3125rem;
|
|
7307
7338
|
text-transform: none;
|
|
7308
7339
|
}
|
|
7340
|
+
.form-control .label .label-item {
|
|
7341
|
+
margin-bottom: -0.0625rem;
|
|
7342
|
+
margin-top: -0.0625rem;
|
|
7343
|
+
}
|
|
7344
|
+
.form-control .label > .c-inner {
|
|
7345
|
+
margin-bottom: -0.3125rem;
|
|
7346
|
+
margin-left: -0.5rem;
|
|
7347
|
+
margin-right: -0.5rem;
|
|
7348
|
+
margin-top: -0.3125rem;
|
|
7349
|
+
}
|
|
7350
|
+
|
|
7309
7351
|
fieldset[disabled] .form-control {
|
|
7310
7352
|
background-color: #f1f2f5;
|
|
7311
7353
|
border-color: #f1f2f5;
|
|
@@ -8161,20 +8203,24 @@ button.link-outline {
|
|
|
8161
8203
|
margin-bottom: calc((2rem - (1em * 1.25)) / 2);
|
|
8162
8204
|
margin-top: calc((2rem - (1em * 1.25)) / 2);
|
|
8163
8205
|
}
|
|
8164
|
-
.component-title
|
|
8206
|
+
.component-title[href],
|
|
8207
|
+
.component-title [href] {
|
|
8165
8208
|
color: #272833;
|
|
8166
8209
|
border-radius: 1px;
|
|
8167
8210
|
transition: box-shadow 0.15s ease-in-out;
|
|
8168
8211
|
}
|
|
8169
8212
|
@media (prefers-reduced-motion: reduce) {
|
|
8170
|
-
.component-title
|
|
8213
|
+
.component-title[href],
|
|
8214
|
+
.component-title [href] {
|
|
8171
8215
|
transition: none;
|
|
8172
8216
|
}
|
|
8173
8217
|
}
|
|
8174
|
-
.component-title
|
|
8218
|
+
.component-title[href]:hover,
|
|
8219
|
+
.component-title [href]:hover {
|
|
8175
8220
|
color: #060608;
|
|
8176
8221
|
}
|
|
8177
|
-
.component-title
|
|
8222
|
+
.component-title[href]:focus,
|
|
8223
|
+
.component-title [href]:focus {
|
|
8178
8224
|
color: #060608;
|
|
8179
8225
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
8180
8226
|
outline: 0;
|
|
@@ -8185,20 +8231,24 @@ button.link-outline {
|
|
|
8185
8231
|
font-weight: 600;
|
|
8186
8232
|
line-height: 1.45;
|
|
8187
8233
|
}
|
|
8188
|
-
.component-subtitle
|
|
8234
|
+
.component-subtitle[href],
|
|
8235
|
+
.component-subtitle [href] {
|
|
8189
8236
|
color: #6b6c7e;
|
|
8190
8237
|
border-radius: 1px;
|
|
8191
8238
|
transition: box-shadow 0.15s ease-in-out;
|
|
8192
8239
|
}
|
|
8193
8240
|
@media (prefers-reduced-motion: reduce) {
|
|
8194
|
-
.component-subtitle
|
|
8241
|
+
.component-subtitle[href],
|
|
8242
|
+
.component-subtitle [href] {
|
|
8195
8243
|
transition: none;
|
|
8196
8244
|
}
|
|
8197
8245
|
}
|
|
8198
|
-
.component-subtitle
|
|
8246
|
+
.component-subtitle[href]:hover,
|
|
8247
|
+
.component-subtitle [href]:hover {
|
|
8199
8248
|
color: #272833;
|
|
8200
8249
|
}
|
|
8201
|
-
.component-subtitle
|
|
8250
|
+
.component-subtitle[href]:focus,
|
|
8251
|
+
.component-subtitle [href]:focus {
|
|
8202
8252
|
color: #272833;
|
|
8203
8253
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
8204
8254
|
outline: 0;
|
|
@@ -8524,10 +8574,10 @@ button.link-outline {
|
|
|
8524
8574
|
margin-bottom: 1rem;
|
|
8525
8575
|
}
|
|
8526
8576
|
.clay-range-input[data-label-min]::before {
|
|
8527
|
-
content: attr(data-label-min);
|
|
8577
|
+
content: '\FEFF' attr(data-label-min);
|
|
8528
8578
|
}
|
|
8529
8579
|
.clay-range-input[data-label-max]::after {
|
|
8530
|
-
content: attr(data-label-max);
|
|
8580
|
+
content: '\FEFF' attr(data-label-max);
|
|
8531
8581
|
right: 0;
|
|
8532
8582
|
}
|
|
8533
8583
|
.clay-range-input::after, .clay-range-input::before {
|
|
@@ -9134,10 +9184,10 @@ label.custom-control-label {
|
|
|
9134
9184
|
background-color: #f1f2f5;
|
|
9135
9185
|
}
|
|
9136
9186
|
.custom-file-input:lang(en) ~ .custom-file-label::after {
|
|
9137
|
-
content:
|
|
9187
|
+
content: '\FEFF Browse';
|
|
9138
9188
|
}
|
|
9139
9189
|
.custom-file-input ~ .custom-file-label[data-browse]::after {
|
|
9140
|
-
content: attr(data-browse);
|
|
9190
|
+
content: '\FEFF' attr(data-browse);
|
|
9141
9191
|
}
|
|
9142
9192
|
|
|
9143
9193
|
.custom-file-label {
|
|
@@ -9162,7 +9212,7 @@ label.custom-control-label {
|
|
|
9162
9212
|
border-radius: 0 0.25rem 0.25rem 0;
|
|
9163
9213
|
bottom: 0;
|
|
9164
9214
|
color: #272833;
|
|
9165
|
-
content:
|
|
9215
|
+
content: '\FEFF Browse';
|
|
9166
9216
|
display: block;
|
|
9167
9217
|
height: 36px;
|
|
9168
9218
|
line-height: 1.5;
|
|
@@ -10977,7 +11027,8 @@ label.custom-control-label {
|
|
|
10977
11027
|
margin-top: -0.25rem;
|
|
10978
11028
|
color: #272833;
|
|
10979
11029
|
}
|
|
10980
|
-
.list-group-title
|
|
11030
|
+
.list-group-title[href],
|
|
11031
|
+
.list-group-title [href] {
|
|
10981
11032
|
color: #272833;
|
|
10982
11033
|
max-width: 100%;
|
|
10983
11034
|
border-radius: 1px;
|
|
@@ -10985,14 +11036,17 @@ label.custom-control-label {
|
|
|
10985
11036
|
transition: box-shadow 0.15s ease-in-out;
|
|
10986
11037
|
}
|
|
10987
11038
|
@media (prefers-reduced-motion: reduce) {
|
|
10988
|
-
.list-group-title
|
|
11039
|
+
.list-group-title[href],
|
|
11040
|
+
.list-group-title [href] {
|
|
10989
11041
|
transition: none;
|
|
10990
11042
|
}
|
|
10991
11043
|
}
|
|
10992
|
-
.list-group-title
|
|
11044
|
+
.list-group-title[href]:hover,
|
|
11045
|
+
.list-group-title [href]:hover {
|
|
10993
11046
|
color: #272833;
|
|
10994
11047
|
}
|
|
10995
|
-
.list-group-title
|
|
11048
|
+
.list-group-title[href]:focus,
|
|
11049
|
+
.list-group-title [href]:focus {
|
|
10996
11050
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
10997
11051
|
outline: 0;
|
|
10998
11052
|
}
|
|
@@ -11000,7 +11054,8 @@ label.custom-control-label {
|
|
|
11000
11054
|
color: #6b6c7e;
|
|
11001
11055
|
margin-bottom: 0;
|
|
11002
11056
|
}
|
|
11003
|
-
.list-group-subtitle
|
|
11057
|
+
.list-group-subtitle[href],
|
|
11058
|
+
.list-group-subtitle [href] {
|
|
11004
11059
|
color: #6b6c7e;
|
|
11005
11060
|
border-radius: 1px;
|
|
11006
11061
|
display: inline-block;
|
|
@@ -11008,14 +11063,17 @@ label.custom-control-label {
|
|
|
11008
11063
|
transition: box-shadow 0.15s ease-in-out;
|
|
11009
11064
|
}
|
|
11010
11065
|
@media (prefers-reduced-motion: reduce) {
|
|
11011
|
-
.list-group-subtitle
|
|
11066
|
+
.list-group-subtitle[href],
|
|
11067
|
+
.list-group-subtitle [href] {
|
|
11012
11068
|
transition: none;
|
|
11013
11069
|
}
|
|
11014
11070
|
}
|
|
11015
|
-
.list-group-subtitle
|
|
11071
|
+
.list-group-subtitle[href]:hover,
|
|
11072
|
+
.list-group-subtitle [href]:hover {
|
|
11016
11073
|
color: #272833;
|
|
11017
11074
|
}
|
|
11018
|
-
.list-group-subtitle
|
|
11075
|
+
.list-group-subtitle[href]:focus,
|
|
11076
|
+
.list-group-subtitle [href]:focus {
|
|
11019
11077
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
11020
11078
|
outline: 0;
|
|
11021
11079
|
}
|
|
@@ -11024,7 +11082,8 @@ label.custom-control-label {
|
|
|
11024
11082
|
margin-bottom: 0;
|
|
11025
11083
|
line-height: 1.45;
|
|
11026
11084
|
}
|
|
11027
|
-
.list-group-text
|
|
11085
|
+
.list-group-text[href],
|
|
11086
|
+
.list-group-text [href] {
|
|
11028
11087
|
color: #272833;
|
|
11029
11088
|
border-radius: 1px;
|
|
11030
11089
|
display: inline-block;
|
|
@@ -11032,14 +11091,17 @@ label.custom-control-label {
|
|
|
11032
11091
|
transition: box-shadow 0.15s ease-in-out;
|
|
11033
11092
|
}
|
|
11034
11093
|
@media (prefers-reduced-motion: reduce) {
|
|
11035
|
-
.list-group-text
|
|
11094
|
+
.list-group-text[href],
|
|
11095
|
+
.list-group-text [href] {
|
|
11036
11096
|
transition: none;
|
|
11037
11097
|
}
|
|
11038
11098
|
}
|
|
11039
|
-
.list-group-text
|
|
11099
|
+
.list-group-text[href]:hover,
|
|
11100
|
+
.list-group-text [href]:hover {
|
|
11040
11101
|
color: #272833;
|
|
11041
11102
|
}
|
|
11042
|
-
.list-group-text
|
|
11103
|
+
.list-group-text[href]:focus,
|
|
11104
|
+
.list-group-text [href]:focus {
|
|
11043
11105
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
11044
11106
|
outline: 0;
|
|
11045
11107
|
}
|
|
@@ -11048,7 +11110,8 @@ label.custom-control-label {
|
|
|
11048
11110
|
margin-bottom: 0;
|
|
11049
11111
|
line-height: 1.45;
|
|
11050
11112
|
}
|
|
11051
|
-
.list-group-subtext
|
|
11113
|
+
.list-group-subtext[href],
|
|
11114
|
+
.list-group-subtext [href] {
|
|
11052
11115
|
color: #6b6c7e;
|
|
11053
11116
|
border-radius: 1px;
|
|
11054
11117
|
display: inline-block;
|
|
@@ -11056,14 +11119,17 @@ label.custom-control-label {
|
|
|
11056
11119
|
transition: box-shadow 0.15s ease-in-out;
|
|
11057
11120
|
}
|
|
11058
11121
|
@media (prefers-reduced-motion: reduce) {
|
|
11059
|
-
.list-group-subtext
|
|
11122
|
+
.list-group-subtext[href],
|
|
11123
|
+
.list-group-subtext [href] {
|
|
11060
11124
|
transition: none;
|
|
11061
11125
|
}
|
|
11062
11126
|
}
|
|
11063
|
-
.list-group-subtext
|
|
11127
|
+
.list-group-subtext[href]:hover,
|
|
11128
|
+
.list-group-subtext [href]:hover {
|
|
11064
11129
|
color: #272833;
|
|
11065
11130
|
}
|
|
11066
|
-
.list-group-subtext
|
|
11131
|
+
.list-group-subtext[href]:focus,
|
|
11132
|
+
.list-group-subtext [href]:focus {
|
|
11067
11133
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
11068
11134
|
outline: 0;
|
|
11069
11135
|
}
|
|
@@ -12028,7 +12094,7 @@ label.custom-control-label {
|
|
|
12028
12094
|
background-size: 0.875rem;
|
|
12029
12095
|
}
|
|
12030
12096
|
.multi-step-item.complete .multi-step-icon[data-multi-step-icon]:before {
|
|
12031
|
-
content:
|
|
12097
|
+
content: none;
|
|
12032
12098
|
}
|
|
12033
12099
|
.multi-step-item.complete .multi-step-icon:active {
|
|
12034
12100
|
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");
|
|
@@ -12137,8 +12203,8 @@ label.custom-control-label {
|
|
|
12137
12203
|
outline: 0;
|
|
12138
12204
|
text-decoration: none;
|
|
12139
12205
|
}
|
|
12140
|
-
.multi-step-icon[data-multi-step-icon]
|
|
12141
|
-
content: attr(data-multi-step-icon);
|
|
12206
|
+
.multi-step-icon[data-multi-step-icon]::before {
|
|
12207
|
+
content: '\FEFF' attr(data-multi-step-icon);
|
|
12142
12208
|
height: 2rem;
|
|
12143
12209
|
line-height: 2rem;
|
|
12144
12210
|
text-align: center;
|
|
@@ -17862,7 +17928,8 @@ a.sheet-subtitle:focus {
|
|
|
17862
17928
|
font-size: 1.25rem;
|
|
17863
17929
|
font-weight: 600;
|
|
17864
17930
|
}
|
|
17865
|
-
.sidebar-header .component-title
|
|
17931
|
+
.sidebar-header .component-title[href],
|
|
17932
|
+
.sidebar-header .component-title [href] {
|
|
17866
17933
|
color: #272833;
|
|
17867
17934
|
}
|
|
17868
17935
|
.sidebar-header .component-subtitle {
|
|
@@ -17922,6 +17989,12 @@ a.sheet-subtitle:focus {
|
|
|
17922
17989
|
bottom: -0.75rem;
|
|
17923
17990
|
top: auto;
|
|
17924
17991
|
}
|
|
17992
|
+
.sidebar-list-group .sticker.sticker-outside.sticker-bottom-right {
|
|
17993
|
+
bottom: -0.75rem;
|
|
17994
|
+
left: auto;
|
|
17995
|
+
right: -0.75rem;
|
|
17996
|
+
top: auto;
|
|
17997
|
+
}
|
|
17925
17998
|
.sidebar-list-group .sticker.sticker-outside.sticker-top-right {
|
|
17926
17999
|
left: auto;
|
|
17927
18000
|
right: -0.75rem;
|
|
@@ -17955,7 +18028,8 @@ a.sheet-subtitle:focus {
|
|
|
17955
18028
|
.sidebar-light .sidebar-list-group .list-group-title {
|
|
17956
18029
|
font-size: 1rem;
|
|
17957
18030
|
}
|
|
17958
|
-
.sidebar-light .sidebar-list-group .list-group-title
|
|
18031
|
+
.sidebar-light .sidebar-list-group .list-group-title[href],
|
|
18032
|
+
.sidebar-light .sidebar-list-group .list-group-title [href] {
|
|
17959
18033
|
color: #272833;
|
|
17960
18034
|
}
|
|
17961
18035
|
.sidebar-light .sidebar-panel {
|
|
@@ -17964,7 +18038,8 @@ a.sheet-subtitle:focus {
|
|
|
17964
18038
|
.sidebar-light .sidebar-dt {
|
|
17965
18039
|
color: #6b6c7e;
|
|
17966
18040
|
}
|
|
17967
|
-
.sidebar-light .sidebar-dd
|
|
18041
|
+
.sidebar-light .sidebar-dd[href],
|
|
18042
|
+
.sidebar-light .sidebar-dd [href] {
|
|
17968
18043
|
color: #272833;
|
|
17969
18044
|
}
|
|
17970
18045
|
.sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
@@ -18035,13 +18110,15 @@ a.sheet-subtitle:focus {
|
|
|
18035
18110
|
.sidebar-dark .sidebar-header .component-title {
|
|
18036
18111
|
color: inherit;
|
|
18037
18112
|
}
|
|
18038
|
-
.sidebar-dark .sidebar-header .component-title
|
|
18113
|
+
.sidebar-dark .sidebar-header .component-title[href],
|
|
18114
|
+
.sidebar-dark .sidebar-header .component-title [href] {
|
|
18039
18115
|
color: inherit;
|
|
18040
18116
|
}
|
|
18041
18117
|
.sidebar-dark .sidebar-header .component-subtitle {
|
|
18042
18118
|
color: inherit;
|
|
18043
18119
|
}
|
|
18044
|
-
.sidebar-dark .sidebar-header .component-subtitle
|
|
18120
|
+
.sidebar-dark .sidebar-header .component-subtitle[href],
|
|
18121
|
+
.sidebar-dark .sidebar-header .component-subtitle [href] {
|
|
18045
18122
|
color: inherit;
|
|
18046
18123
|
}
|
|
18047
18124
|
.sidebar-dark .nav-nested .nav-link {
|
|
@@ -18633,7 +18710,8 @@ caption {
|
|
|
18633
18710
|
margin-bottom: 0;
|
|
18634
18711
|
color: #272833;
|
|
18635
18712
|
}
|
|
18636
|
-
.table-title
|
|
18713
|
+
.table-title[href],
|
|
18714
|
+
.table-title [href] {
|
|
18637
18715
|
color: #272833;
|
|
18638
18716
|
border-radius: 1px;
|
|
18639
18717
|
display: inline-block;
|
|
@@ -18641,14 +18719,17 @@ caption {
|
|
|
18641
18719
|
transition: box-shadow 0.15s ease-in-out;
|
|
18642
18720
|
}
|
|
18643
18721
|
@media (prefers-reduced-motion: reduce) {
|
|
18644
|
-
.table-title
|
|
18722
|
+
.table-title[href],
|
|
18723
|
+
.table-title [href] {
|
|
18645
18724
|
transition: none;
|
|
18646
18725
|
}
|
|
18647
18726
|
}
|
|
18648
|
-
.table-title
|
|
18727
|
+
.table-title[href]:hover,
|
|
18728
|
+
.table-title [href]:hover {
|
|
18649
18729
|
color: #272833;
|
|
18650
18730
|
}
|
|
18651
|
-
.table-title
|
|
18731
|
+
.table-title[href]:focus,
|
|
18732
|
+
.table-title [href]:focus {
|
|
18652
18733
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
18653
18734
|
outline: 0;
|
|
18654
18735
|
}
|
|
@@ -18968,7 +19049,8 @@ caption {
|
|
|
18968
19049
|
margin-bottom: 0;
|
|
18969
19050
|
color: #272833;
|
|
18970
19051
|
}
|
|
18971
|
-
.table-list-title
|
|
19052
|
+
.table-list-title[href],
|
|
19053
|
+
.table-list-title [href] {
|
|
18972
19054
|
color: #272833;
|
|
18973
19055
|
border-radius: 1px;
|
|
18974
19056
|
display: inline-block;
|
|
@@ -18976,14 +19058,17 @@ caption {
|
|
|
18976
19058
|
transition: box-shadow 0.15s ease-in-out;
|
|
18977
19059
|
}
|
|
18978
19060
|
@media (prefers-reduced-motion: reduce) {
|
|
18979
|
-
.table-list-title
|
|
19061
|
+
.table-list-title[href],
|
|
19062
|
+
.table-list-title [href] {
|
|
18980
19063
|
transition: none;
|
|
18981
19064
|
}
|
|
18982
19065
|
}
|
|
18983
|
-
.table-list-title
|
|
19066
|
+
.table-list-title[href]:hover,
|
|
19067
|
+
.table-list-title [href]:hover {
|
|
18984
19068
|
color: #272833;
|
|
18985
19069
|
}
|
|
18986
|
-
.table-list-title
|
|
19070
|
+
.table-list-title[href]:focus,
|
|
19071
|
+
.table-list-title [href]:focus {
|
|
18987
19072
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
18988
19073
|
outline: 0;
|
|
18989
19074
|
}
|
|
@@ -20232,7 +20317,7 @@ caption {
|
|
|
20232
20317
|
}
|
|
20233
20318
|
}
|
|
20234
20319
|
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
20235
|
-
content: attr(data-label-off);
|
|
20320
|
+
content: '\FEFF' attr(data-label-off);
|
|
20236
20321
|
margin-left: 56px;
|
|
20237
20322
|
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;
|
|
20238
20323
|
white-space: nowrap;
|
|
@@ -20295,7 +20380,7 @@ caption {
|
|
|
20295
20380
|
left: 28px;
|
|
20296
20381
|
}
|
|
20297
20382
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
20298
|
-
content: attr(data-label-on);
|
|
20383
|
+
content: '\FEFF' attr(data-label-on);
|
|
20299
20384
|
}
|
|
20300
20385
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon {
|
|
20301
20386
|
color: #fff;
|
|
@@ -20797,6 +20882,7 @@ caption {
|
|
|
20797
20882
|
word-wrap: break-word;
|
|
20798
20883
|
}
|
|
20799
20884
|
.treeview-link {
|
|
20885
|
+
background-color: transparent;
|
|
20800
20886
|
cursor: pointer;
|
|
20801
20887
|
display: block;
|
|
20802
20888
|
border-color: transparent;
|
|
@@ -20807,6 +20893,7 @@ caption {
|
|
|
20807
20893
|
min-width: 100%;
|
|
20808
20894
|
padding: 0;
|
|
20809
20895
|
position: relative;
|
|
20896
|
+
text-align: left;
|
|
20810
20897
|
-ms-user-select: none;
|
|
20811
20898
|
-moz-user-select: none;
|
|
20812
20899
|
-webkit-user-select: none;
|
|
@@ -20819,6 +20906,9 @@ caption {
|
|
|
20819
20906
|
box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
|
|
20820
20907
|
outline: 0;
|
|
20821
20908
|
}
|
|
20909
|
+
.treeview-link:disabled, .treeview-link.disabled {
|
|
20910
|
+
cursor: not-allowed;
|
|
20911
|
+
}
|
|
20822
20912
|
.treeview-link.treeview-dropping-bottom {
|
|
20823
20913
|
box-shadow: 0 2px 0 0 #80acff;
|
|
20824
20914
|
}
|
|
@@ -20830,7 +20920,10 @@ caption {
|
|
|
20830
20920
|
box-shadow: 0 -2px 0 0 #80acff;
|
|
20831
20921
|
}
|
|
20832
20922
|
.treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
|
|
20833
|
-
display:
|
|
20923
|
+
display: flex;
|
|
20924
|
+
}
|
|
20925
|
+
.treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
|
|
20926
|
+
display: none;
|
|
20834
20927
|
}
|
|
20835
20928
|
.treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
20836
20929
|
display: none;
|
|
@@ -20871,6 +20964,10 @@ caption {
|
|
|
20871
20964
|
.treeview-light .component-expander:hover {
|
|
20872
20965
|
color: #0b5fff;
|
|
20873
20966
|
}
|
|
20967
|
+
.treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
|
|
20968
|
+
color: #6b6c7e;
|
|
20969
|
+
opacity: 0.5;
|
|
20970
|
+
}
|
|
20874
20971
|
.treeview-light .component-expander.btn-secondary {
|
|
20875
20972
|
background-color: #fff;
|
|
20876
20973
|
}
|
|
@@ -20889,12 +20986,20 @@ caption {
|
|
|
20889
20986
|
background-color: #f1f2f5;
|
|
20890
20987
|
color: #272833;
|
|
20891
20988
|
}
|
|
20989
|
+
.treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
|
|
20990
|
+
background-color: transparent;
|
|
20991
|
+
color: rgba(107, 108, 126, 0.5);
|
|
20992
|
+
}
|
|
20892
20993
|
.treeview-dark .component-expander {
|
|
20893
20994
|
color: #a7a9bc;
|
|
20894
20995
|
}
|
|
20895
20996
|
.treeview-dark .component-expander:hover {
|
|
20896
20997
|
color: #80acff;
|
|
20897
20998
|
}
|
|
20999
|
+
.treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
|
|
21000
|
+
color: #a7a9bc;
|
|
21001
|
+
opacity: 0.5;
|
|
21002
|
+
}
|
|
20898
21003
|
.treeview-dark .treeview-link {
|
|
20899
21004
|
color: #a7a9bc;
|
|
20900
21005
|
}
|
|
@@ -20907,11 +21012,14 @@ caption {
|
|
|
20907
21012
|
}
|
|
20908
21013
|
.treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
|
|
20909
21014
|
background-color: transparent;
|
|
20910
|
-
color: rgba(167, 169, 188, 0.
|
|
21015
|
+
color: rgba(167, 169, 188, 0.5);
|
|
20911
21016
|
}
|
|
20912
21017
|
.treeview-dark .component-action {
|
|
20913
21018
|
color: #a7a9bc;
|
|
20914
21019
|
}
|
|
21020
|
+
.treeview-dark .component-action:disabled, .treeview-dark .component-action.disabled {
|
|
21021
|
+
color: #a7a9bc;
|
|
21022
|
+
}
|
|
20915
21023
|
.bg-checkered {
|
|
20916
21024
|
background-image: linear-gradient(45deg, #e7e7ed 25%, transparent 25%), linear-gradient(-45deg, #e7e7ed 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e7e7ed 75%), linear-gradient(-45deg, transparent 75%, #e7e7ed 75%);
|
|
20917
21025
|
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
|