@clayui/css 3.54.0 → 3.57.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 +203 -192
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +113 -132
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +59 -69
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/flags-ca-ES-valencia.svg +13 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/flags-ca-ES-valencia.svg +13 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_buttons.scss +1 -1
- package/src/scss/atlas/variables/_dropdowns.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +5 -5
- package/src/scss/atlas/variables/_multi-step-nav.scss +3 -1
- package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
- package/src/scss/atlas/variables/_navs.scss +1 -1
- package/src/scss/atlas/variables/_panels.scss +2 -2
- package/src/scss/atlas/variables/_range.scss +24 -6
- package/src/scss/atlas/variables/_sheets.scss +2 -1
- package/src/scss/atlas/variables/_sidebar.scss +3 -2
- package/src/scss/atlas/variables/_type.scss +0 -2
- package/src/scss/cadmin/components/_breadcrumbs.scss +12 -62
- package/src/scss/cadmin/variables/_breadcrumbs.scss +94 -16
- package/src/scss/cadmin/variables/_range.scss +110 -51
- package/src/scss/cadmin/variables/_treeview.scss +12 -4
- package/src/scss/components/_breadcrumbs.scss +12 -71
- package/src/scss/components/_tables.scss +2 -2
- package/src/scss/functions/_color-functions.scss +66 -26
- package/src/scss/functions/_global-functions.scss +10 -3
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/mixins/_buttons.scss +4 -0
- package/src/scss/mixins/_forms.scss +1020 -378
- package/src/scss/variables/_alerts.scss +8 -0
- package/src/scss/variables/_breadcrumbs.scss +90 -15
- package/src/scss/variables/_buttons.scss +116 -67
- package/src/scss/variables/_cards.scss +1 -1
- package/src/scss/variables/_date-picker.scss +1 -1
- package/src/scss/variables/_dropdowns.scss +4 -4
- package/src/scss/variables/_forms.scss +1 -1
- package/src/scss/variables/_globals.scss +2 -2
- package/src/scss/variables/_links.scss +1 -1
- package/src/scss/variables/_list-group.scss +2 -2
- package/src/scss/variables/_multi-step-nav.scss +1 -1
- package/src/scss/variables/_navbar.scss +2 -2
- package/src/scss/variables/_navs.scss +1 -1
- package/src/scss/variables/_pagination.scss +1 -1
- package/src/scss/variables/_panels.scss +5 -4
- package/src/scss/variables/_range.scss +114 -50
- package/src/scss/variables/_sheets.scss +1 -1
- package/src/scss/variables/_sidebar.scss +2 -0
- package/src/scss/variables/_tables.scss +9 -4
- package/src/scss/variables/_tbar.scss +14 -13
- package/src/scss/variables/_time.scss +1 -1
- package/src/scss/variables/_treeview.scss +12 -4
- package/src/scss/variables/_type.scss +2 -2
- package/src/scss/variables/_utilities.scss +1 -1
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.57.0
|
|
4
4
|
*
|
|
5
5
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
6
6
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -494,7 +494,7 @@ strong {
|
|
|
494
494
|
}
|
|
495
495
|
|
|
496
496
|
.c-kbd > .c-kbd {
|
|
497
|
-
border-width:
|
|
497
|
+
border-width: 0px;
|
|
498
498
|
font-size: inherit;
|
|
499
499
|
font-weight: inherit;
|
|
500
500
|
height: auto;
|
|
@@ -526,7 +526,7 @@ strong {
|
|
|
526
526
|
}
|
|
527
527
|
|
|
528
528
|
.c-kbd-inline {
|
|
529
|
-
border-width:
|
|
529
|
+
border-width: 0px;
|
|
530
530
|
font-weight: 300;
|
|
531
531
|
height: auto;
|
|
532
532
|
line-height: inherit;
|
|
@@ -1205,17 +1205,11 @@ button.collapse-icon .c-inner {
|
|
|
1205
1205
|
text-decoration: none;
|
|
1206
1206
|
}
|
|
1207
1207
|
.btn:focus, .btn.focus {
|
|
1208
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
1208
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
1209
1209
|
outline: 0;
|
|
1210
1210
|
}
|
|
1211
|
-
.btn:active {
|
|
1212
|
-
box-shadow: none;
|
|
1213
|
-
}
|
|
1214
1211
|
.btn:active:focus {
|
|
1215
|
-
box-shadow:
|
|
1216
|
-
}
|
|
1217
|
-
.btn.active {
|
|
1218
|
-
box-shadow: [none];
|
|
1212
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
1219
1213
|
}
|
|
1220
1214
|
.btn:disabled, .btn.disabled {
|
|
1221
1215
|
cursor: not-allowed;
|
|
@@ -1227,9 +1221,6 @@ button.collapse-icon .c-inner {
|
|
|
1227
1221
|
.btn:disabled:active, .btn.disabled:active {
|
|
1228
1222
|
pointer-events: none;
|
|
1229
1223
|
}
|
|
1230
|
-
.btn[aria-expanded=true], .btn.show {
|
|
1231
|
-
box-shadow: [none];
|
|
1232
|
-
}
|
|
1233
1224
|
.btn .c-inner {
|
|
1234
1225
|
margin-bottom: -0.4375rem;
|
|
1235
1226
|
margin-left: -0.9375rem;
|
|
@@ -1699,7 +1690,7 @@ input[type=button].btn-block {
|
|
|
1699
1690
|
}
|
|
1700
1691
|
.btn-link {
|
|
1701
1692
|
border-radius: 1px;
|
|
1702
|
-
box-shadow:
|
|
1693
|
+
box-shadow: none;
|
|
1703
1694
|
color: #0b5fff;
|
|
1704
1695
|
font-weight: 400;
|
|
1705
1696
|
text-decoration: none;
|
|
@@ -1709,26 +1700,17 @@ input[type=button].btn-block {
|
|
|
1709
1700
|
text-decoration: underline;
|
|
1710
1701
|
}
|
|
1711
1702
|
.btn-link:focus, .focus.btn-link {
|
|
1712
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
1703
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
1713
1704
|
text-decoration: none;
|
|
1714
1705
|
}
|
|
1715
|
-
.btn-link:active {
|
|
1716
|
-
box-shadow: [none];
|
|
1717
|
-
}
|
|
1718
1706
|
.btn-link:active:focus {
|
|
1719
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
1720
|
-
}
|
|
1721
|
-
.active.btn-link {
|
|
1722
|
-
box-shadow: [none];
|
|
1707
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
1723
1708
|
}
|
|
1724
1709
|
.btn-link:disabled, .disabled.btn-link {
|
|
1725
1710
|
box-shadow: none;
|
|
1726
1711
|
color: #0b5fff;
|
|
1727
1712
|
text-decoration: none;
|
|
1728
1713
|
}
|
|
1729
|
-
[aria-expanded=true].btn-link, .show.btn-link {
|
|
1730
|
-
box-shadow: [none];
|
|
1731
|
-
}
|
|
1732
1714
|
.btn-outline-primary {
|
|
1733
1715
|
border-color: #0b5fff;
|
|
1734
1716
|
color: #0b5fff;
|
|
@@ -4042,7 +4024,7 @@ input[type=button].btn-block {
|
|
|
4042
4024
|
text-decoration: none;
|
|
4043
4025
|
}
|
|
4044
4026
|
.badge[href]:focus, .badge[type]:focus {
|
|
4045
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
4027
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
4046
4028
|
outline: 0;
|
|
4047
4029
|
}
|
|
4048
4030
|
.badge a {
|
|
@@ -4299,16 +4281,9 @@ input[type=button].btn-block {
|
|
|
4299
4281
|
.breadcrumb-link:focus {
|
|
4300
4282
|
color: #6b6c7e;
|
|
4301
4283
|
text-decoration: underline;
|
|
4302
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
4284
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
4303
4285
|
outline: 0;
|
|
4304
4286
|
}
|
|
4305
|
-
.breadcrumb-link > .breadcrumb-text-truncate {
|
|
4306
|
-
text-decoration: none;
|
|
4307
|
-
}
|
|
4308
|
-
.breadcrumb-link > .breadcrumb-text-truncate:hover, .breadcrumb-link > .breadcrumb-text-truncate:focus {
|
|
4309
|
-
text-decoration: underline;
|
|
4310
|
-
}
|
|
4311
|
-
|
|
4312
4287
|
.breadcrumb-item {
|
|
4313
4288
|
font-size: 0.875rem;
|
|
4314
4289
|
margin-right: 0.5em;
|
|
@@ -4319,6 +4294,9 @@ input[type=button].btn-block {
|
|
|
4319
4294
|
color: #272833;
|
|
4320
4295
|
font-weight: 600;
|
|
4321
4296
|
}
|
|
4297
|
+
.breadcrumb-item > span {
|
|
4298
|
+
text-transform: inherit;
|
|
4299
|
+
}
|
|
4322
4300
|
.breadcrumb-item + .breadcrumb-item {
|
|
4323
4301
|
padding-left: 1em;
|
|
4324
4302
|
}
|
|
@@ -4332,9 +4310,7 @@ input[type=button].btn-block {
|
|
|
4332
4310
|
content: "";
|
|
4333
4311
|
height: 0.6em;
|
|
4334
4312
|
left: 0;
|
|
4335
|
-
margin-top: calc(
|
|
4336
|
-
-0.6em / 2
|
|
4337
|
-
);
|
|
4313
|
+
margin-top: calc(-0.6em / 2);
|
|
4338
4314
|
padding: 0;
|
|
4339
4315
|
position: absolute;
|
|
4340
4316
|
top: 50%;
|
|
@@ -4349,17 +4325,20 @@ input[type=button].btn-block {
|
|
|
4349
4325
|
.breadcrumb-item .dropdown-toggle {
|
|
4350
4326
|
text-decoration: none;
|
|
4351
4327
|
}
|
|
4352
|
-
.breadcrumb-item .dropdown-toggle:hover
|
|
4328
|
+
.breadcrumb-item .dropdown-toggle:hover {
|
|
4329
|
+
text-decoration: none;
|
|
4330
|
+
}
|
|
4331
|
+
.breadcrumb-item .dropdown-toggle:focus, .breadcrumb-item .dropdown-toggle.focus {
|
|
4353
4332
|
text-decoration: none;
|
|
4354
4333
|
}
|
|
4355
|
-
|
|
4356
4334
|
.breadcrumb-text-truncate {
|
|
4357
4335
|
display: inline-block;
|
|
4358
4336
|
max-width: 17.875rem;
|
|
4359
4337
|
overflow: hidden;
|
|
4338
|
+
text-decoration: inherit;
|
|
4360
4339
|
text-overflow: ellipsis;
|
|
4361
|
-
white-space: nowrap;
|
|
4362
4340
|
vertical-align: bottom;
|
|
4341
|
+
white-space: nowrap;
|
|
4363
4342
|
}
|
|
4364
4343
|
@media (max-width: 767.98px) {
|
|
4365
4344
|
.breadcrumb-text-truncate {
|
|
@@ -4606,7 +4585,7 @@ input[type=button].btn-block {
|
|
|
4606
4585
|
}
|
|
4607
4586
|
.label[href]:focus, .label[type]:focus, .label[tabindex]:focus {
|
|
4608
4587
|
text-decoration: underline;
|
|
4609
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
4588
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
4610
4589
|
}
|
|
4611
4590
|
.label a,
|
|
4612
4591
|
.label .btn-unstyled {
|
|
@@ -5573,49 +5552,49 @@ input[type=button].btn-block {
|
|
|
5573
5552
|
.rounded-0 .card-header,
|
|
5574
5553
|
.rounded-0 .card-item-first {
|
|
5575
5554
|
border-top-left-radius: calc(
|
|
5576
|
-
|
|
5555
|
+
0px - 0px
|
|
5577
5556
|
);
|
|
5578
5557
|
border-top-right-radius: calc(
|
|
5579
|
-
|
|
5558
|
+
0px - 0px
|
|
5580
5559
|
);
|
|
5581
5560
|
}
|
|
5582
5561
|
.rounded-0 .card-footer,
|
|
5583
5562
|
.rounded-0 .card-item-last {
|
|
5584
5563
|
border-bottom-left-radius: calc(
|
|
5585
|
-
|
|
5564
|
+
0px - 0px
|
|
5586
5565
|
);
|
|
5587
5566
|
border-bottom-right-radius: calc(
|
|
5588
|
-
|
|
5567
|
+
0px - 0px
|
|
5589
5568
|
);
|
|
5590
5569
|
}
|
|
5591
5570
|
.rounded-0 .autofit-col:first-child {
|
|
5592
5571
|
border-bottom-left-radius: calc(
|
|
5593
|
-
|
|
5572
|
+
0px - 0px
|
|
5594
5573
|
);
|
|
5595
5574
|
border-top-left-radius: calc(
|
|
5596
|
-
|
|
5575
|
+
0px - 0px
|
|
5597
5576
|
);
|
|
5598
5577
|
}
|
|
5599
5578
|
.rounded-0 .autofit-col:first-child .card-item-first {
|
|
5600
5579
|
border-radius: calc(
|
|
5601
|
-
|
|
5580
|
+
0px - 0px
|
|
5602
5581
|
) 0 0 calc(
|
|
5603
|
-
|
|
5582
|
+
0px - 0px
|
|
5604
5583
|
);
|
|
5605
5584
|
}
|
|
5606
5585
|
.rounded-0 .autofit-col:last-child {
|
|
5607
5586
|
border-bottom-right-radius: calc(
|
|
5608
|
-
|
|
5587
|
+
0px - 0px
|
|
5609
5588
|
);
|
|
5610
5589
|
border-top-right-radius: calc(
|
|
5611
|
-
|
|
5590
|
+
0px - 0px
|
|
5612
5591
|
);
|
|
5613
5592
|
}
|
|
5614
5593
|
.rounded-0 .autofit-col:last-child .card-item-last {
|
|
5615
5594
|
border-radius: 0 calc(
|
|
5616
|
-
|
|
5595
|
+
0px - 0px
|
|
5617
5596
|
) calc(
|
|
5618
|
-
|
|
5597
|
+
0px - 0px
|
|
5619
5598
|
) 0;
|
|
5620
5599
|
}
|
|
5621
5600
|
|
|
@@ -6258,7 +6237,7 @@ input[type=button].btn-block {
|
|
|
6258
6237
|
right: -1px;
|
|
6259
6238
|
}
|
|
6260
6239
|
.card-type-template .aspect-ratio {
|
|
6261
|
-
border-width:
|
|
6240
|
+
border-width: 0px;
|
|
6262
6241
|
color: #6b6c7e;
|
|
6263
6242
|
text-align: center;
|
|
6264
6243
|
background-image: none;
|
|
@@ -6361,8 +6340,8 @@ input[type=button].btn-block {
|
|
|
6361
6340
|
|
|
6362
6341
|
.dropdown-item {
|
|
6363
6342
|
background-color: transparent;
|
|
6364
|
-
border-radius:
|
|
6365
|
-
border-width:
|
|
6343
|
+
border-radius: 0px;
|
|
6344
|
+
border-width: 0px;
|
|
6366
6345
|
clear: both;
|
|
6367
6346
|
color: #6b6c7e;
|
|
6368
6347
|
cursor: pointer;
|
|
@@ -6390,7 +6369,7 @@ input[type=button].btn-block {
|
|
|
6390
6369
|
background-color: #f0f5ff;
|
|
6391
6370
|
color: #272833;
|
|
6392
6371
|
text-decoration: none;
|
|
6393
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
6372
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
6394
6373
|
outline: 0;
|
|
6395
6374
|
}
|
|
6396
6375
|
.dropdown-item:active {
|
|
@@ -6424,7 +6403,7 @@ input[type=button].btn-block {
|
|
|
6424
6403
|
color: #272833;
|
|
6425
6404
|
}
|
|
6426
6405
|
.dropdown-item.btn:not([disabled]):not(.disabled):active:focus, .dropdown-item.btn:not([disabled]):not(.disabled).active:focus {
|
|
6427
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
6406
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
6428
6407
|
}
|
|
6429
6408
|
.dropdown-item:disabled, .dropdown-item.disabled {
|
|
6430
6409
|
background-color: transparent;
|
|
@@ -6530,7 +6509,7 @@ input[type=button].btn-block {
|
|
|
6530
6509
|
border-color: #e7e7ed;
|
|
6531
6510
|
border-radius: 0.25rem;
|
|
6532
6511
|
border-style: solid;
|
|
6533
|
-
border-width:
|
|
6512
|
+
border-width: 0px;
|
|
6534
6513
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
6535
6514
|
color: #272833;
|
|
6536
6515
|
display: none;
|
|
@@ -7284,7 +7263,7 @@ fieldset[disabled] label .form-control {
|
|
|
7284
7263
|
.form-control:focus, .form-control.focus {
|
|
7285
7264
|
background-color: #f0f5ff;
|
|
7286
7265
|
border-color: #80acff;
|
|
7287
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7266
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
7288
7267
|
color: #272833;
|
|
7289
7268
|
outline: 0;
|
|
7290
7269
|
}
|
|
@@ -7469,7 +7448,7 @@ div.form-control-sm {
|
|
|
7469
7448
|
}
|
|
7470
7449
|
.form-control-inset {
|
|
7471
7450
|
background-color: transparent;
|
|
7472
|
-
border-width:
|
|
7451
|
+
border-width: 0px;
|
|
7473
7452
|
color: #272833;
|
|
7474
7453
|
flex-grow: 1;
|
|
7475
7454
|
margin-bottom: 0.3125rem;
|
|
@@ -7633,7 +7612,7 @@ textarea.form-control-plaintext,
|
|
|
7633
7612
|
box-shadow: none;
|
|
7634
7613
|
}
|
|
7635
7614
|
.form-control[type=range]:focus::-webkit-slider-thumb {
|
|
7636
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7615
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
7637
7616
|
}
|
|
7638
7617
|
.form-control[type=range]::-webkit-slider-thumb {
|
|
7639
7618
|
border-radius: 100px;
|
|
@@ -7983,7 +7962,7 @@ textarea.form-control-lg,
|
|
|
7983
7962
|
}
|
|
7984
7963
|
.component-link:focus {
|
|
7985
7964
|
color: #484955;
|
|
7986
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7965
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
7987
7966
|
outline: 0;
|
|
7988
7967
|
}
|
|
7989
7968
|
.single-link {
|
|
@@ -8005,7 +7984,7 @@ textarea.form-control-lg,
|
|
|
8005
7984
|
}
|
|
8006
7985
|
.link-primary:focus {
|
|
8007
7986
|
color: #0041be;
|
|
8008
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7987
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8009
7988
|
outline: 0;
|
|
8010
7989
|
}
|
|
8011
7990
|
.link-secondary {
|
|
@@ -8023,7 +8002,7 @@ textarea.form-control-lg,
|
|
|
8023
8002
|
}
|
|
8024
8003
|
.link-secondary:focus {
|
|
8025
8004
|
color: #272833;
|
|
8026
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8005
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8027
8006
|
outline: 0;
|
|
8028
8007
|
}
|
|
8029
8008
|
button.link-outline {
|
|
@@ -8194,7 +8173,7 @@ button.link-outline {
|
|
|
8194
8173
|
.component-title[href]:focus,
|
|
8195
8174
|
.component-title [href]:focus {
|
|
8196
8175
|
color: #060608;
|
|
8197
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8176
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8198
8177
|
outline: 0;
|
|
8199
8178
|
}
|
|
8200
8179
|
.component-subtitle {
|
|
@@ -8222,7 +8201,7 @@ button.link-outline {
|
|
|
8222
8201
|
.component-subtitle[href]:focus,
|
|
8223
8202
|
.component-subtitle [href]:focus {
|
|
8224
8203
|
color: #272833;
|
|
8225
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8204
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8226
8205
|
outline: 0;
|
|
8227
8206
|
}
|
|
8228
8207
|
.component-action {
|
|
@@ -8230,7 +8209,7 @@ button.link-outline {
|
|
|
8230
8209
|
background-color: transparent;
|
|
8231
8210
|
border-color: transparent;
|
|
8232
8211
|
border-radius: 0.25rem;
|
|
8233
|
-
border-width:
|
|
8212
|
+
border-width: 0px;
|
|
8234
8213
|
color: #6b6c7e;
|
|
8235
8214
|
display: inline-flex;
|
|
8236
8215
|
height: 2rem;
|
|
@@ -8306,7 +8285,7 @@ button.link-outline {
|
|
|
8306
8285
|
flex-direction: column;
|
|
8307
8286
|
}
|
|
8308
8287
|
.clay-range .input-group-text {
|
|
8309
|
-
border-width:
|
|
8288
|
+
border-width: 0px;
|
|
8310
8289
|
color: #a7a9bc;
|
|
8311
8290
|
font-size: 0.875rem;
|
|
8312
8291
|
font-weight: 600;
|
|
@@ -8336,19 +8315,24 @@ button.link-outline {
|
|
|
8336
8315
|
text-align: center;
|
|
8337
8316
|
}
|
|
8338
8317
|
.clay-range-input {
|
|
8339
|
-
color: #a7a9bc;
|
|
8340
8318
|
display: block;
|
|
8341
8319
|
padding-bottom: 0.1px;
|
|
8342
8320
|
position: relative;
|
|
8343
8321
|
vertical-align: middle;
|
|
8344
8322
|
width: 100%;
|
|
8323
|
+
color: #a7a9bc;
|
|
8345
8324
|
}
|
|
8346
8325
|
.clay-range-input .tooltip {
|
|
8347
|
-
margin-left: 0.
|
|
8326
|
+
margin-left: 0.8125rem;
|
|
8348
8327
|
transition: opacity 0.15s linear;
|
|
8349
8328
|
visibility: hidden;
|
|
8350
8329
|
white-space: nowrap;
|
|
8351
8330
|
}
|
|
8331
|
+
@media (prefers-reduced-motion: reduce) {
|
|
8332
|
+
.clay-range-input .tooltip {
|
|
8333
|
+
transition: none;
|
|
8334
|
+
}
|
|
8335
|
+
}
|
|
8352
8336
|
.clay-range-input .tooltip-inner {
|
|
8353
8337
|
padding: 0.5rem 0.75rem;
|
|
8354
8338
|
}
|
|
@@ -8363,7 +8347,7 @@ button.link-outline {
|
|
|
8363
8347
|
transform: translateX(-50%);
|
|
8364
8348
|
}
|
|
8365
8349
|
.clay-range-input .clay-tooltip-bottom .tooltip-arrow {
|
|
8366
|
-
margin-left: -0.
|
|
8350
|
+
margin-left: -0.25rem;
|
|
8367
8351
|
}
|
|
8368
8352
|
.clay-range-input .clay-tooltip-top {
|
|
8369
8353
|
bottom: 100%;
|
|
@@ -8372,9 +8356,12 @@ button.link-outline {
|
|
|
8372
8356
|
transform: translateX(-50%);
|
|
8373
8357
|
}
|
|
8374
8358
|
.clay-range-input .clay-tooltip-top .tooltip-arrow {
|
|
8375
|
-
margin-left: -0.
|
|
8359
|
+
margin-left: -0.25rem;
|
|
8376
8360
|
}
|
|
8377
8361
|
.clay-range-input .clay-range-track {
|
|
8362
|
+
-moz-appearance: none;
|
|
8363
|
+
-webkit-appearance: none;
|
|
8364
|
+
appearance: none;
|
|
8378
8365
|
background-color: #f1f2f5;
|
|
8379
8366
|
border-radius: 100px;
|
|
8380
8367
|
height: 0.25rem;
|
|
@@ -8383,19 +8370,22 @@ button.link-outline {
|
|
|
8383
8370
|
top: 50%;
|
|
8384
8371
|
width: 100%;
|
|
8385
8372
|
}
|
|
8373
|
+
.clay-range-input .clay-range-track::-ms-expand {
|
|
8374
|
+
display: none;
|
|
8375
|
+
}
|
|
8386
8376
|
.clay-range-input .clay-range-progress {
|
|
8387
8377
|
background-color: #0b5fff;
|
|
8388
8378
|
border-radius: 100px 0 0 100px;
|
|
8389
|
-
height: 0.25rem;
|
|
8390
|
-
margin-top: -0.125rem;
|
|
8391
8379
|
position: absolute;
|
|
8392
8380
|
top: 50%;
|
|
8393
8381
|
width: 50%;
|
|
8382
|
+
height: 0.25rem;
|
|
8383
|
+
margin-top: -0.125rem;
|
|
8394
8384
|
}
|
|
8395
8385
|
.clay-range-input .clay-range-thumb {
|
|
8396
8386
|
background-color: #fff;
|
|
8397
8387
|
border-radius: 100px;
|
|
8398
|
-
border-width:
|
|
8388
|
+
border-width: 0px;
|
|
8399
8389
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8400
8390
|
height: 1.5rem;
|
|
8401
8391
|
margin-top: -0.75rem;
|
|
@@ -8410,22 +8400,26 @@ button.link-outline {
|
|
|
8410
8400
|
-webkit-appearance: none;
|
|
8411
8401
|
appearance: none;
|
|
8412
8402
|
background-color: transparent;
|
|
8413
|
-
content: "1.5rem";
|
|
8414
8403
|
height: 2.5rem;
|
|
8415
8404
|
margin: 0;
|
|
8416
8405
|
padding: 0;
|
|
8417
8406
|
position: relative;
|
|
8418
8407
|
z-index: 1;
|
|
8408
|
+
content: "1.5rem";
|
|
8409
|
+
}
|
|
8410
|
+
.clay-range-input .form-control-range::-ms-expand {
|
|
8411
|
+
display: none;
|
|
8419
8412
|
}
|
|
8420
8413
|
.clay-range-input .form-control-range::-moz-focus-outer {
|
|
8421
8414
|
border-width: 0;
|
|
8422
8415
|
}
|
|
8423
8416
|
.clay-range-input .form-control-range::-moz-range-thumb {
|
|
8424
8417
|
-moz-appearance: none;
|
|
8418
|
+
-webkit-appearance: none;
|
|
8425
8419
|
appearance: none;
|
|
8426
8420
|
background-color: #fff;
|
|
8427
8421
|
border-radius: 100px;
|
|
8428
|
-
border-width:
|
|
8422
|
+
border-width: 0px;
|
|
8429
8423
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8430
8424
|
height: 1.5rem;
|
|
8431
8425
|
margin-top: -0.75rem;
|
|
@@ -8433,6 +8427,9 @@ button.link-outline {
|
|
|
8433
8427
|
top: 50%;
|
|
8434
8428
|
width: 1.5rem;
|
|
8435
8429
|
}
|
|
8430
|
+
.clay-range-input .form-control-range::-moz-range-thumb::-ms-expand {
|
|
8431
|
+
display: none;
|
|
8432
|
+
}
|
|
8436
8433
|
.clay-range-input .form-control-range::-moz-range-track {
|
|
8437
8434
|
-moz-appearance: none;
|
|
8438
8435
|
appearance: none;
|
|
@@ -8445,13 +8442,12 @@ button.link-outline {
|
|
|
8445
8442
|
background-color: transparent;
|
|
8446
8443
|
}
|
|
8447
8444
|
.clay-range-input .form-control-range::-ms-thumb {
|
|
8445
|
+
-moz-appearance: none;
|
|
8446
|
+
-webkit-appearance: none;
|
|
8448
8447
|
appearance: none;
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8453
|
-
height: 1.5rem;
|
|
8454
|
-
width: 1.5rem;
|
|
8448
|
+
}
|
|
8449
|
+
.clay-range-input .form-control-range::-ms-thumb::-ms-expand {
|
|
8450
|
+
display: none;
|
|
8455
8451
|
}
|
|
8456
8452
|
.clay-range-input .form-control-range::-ms-tooltip {
|
|
8457
8453
|
display: none;
|
|
@@ -8470,11 +8466,12 @@ button.link-outline {
|
|
|
8470
8466
|
height: 100%;
|
|
8471
8467
|
}
|
|
8472
8468
|
.clay-range-input .form-control-range::-webkit-slider-thumb {
|
|
8469
|
+
-moz-appearance: none;
|
|
8473
8470
|
-webkit-appearance: none;
|
|
8474
8471
|
appearance: none;
|
|
8475
8472
|
background-color: #fff;
|
|
8476
8473
|
border-radius: 100px;
|
|
8477
|
-
border-width:
|
|
8474
|
+
border-width: 0px;
|
|
8478
8475
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8479
8476
|
height: 1.5rem;
|
|
8480
8477
|
margin-top: -0.75rem;
|
|
@@ -8482,6 +8479,9 @@ button.link-outline {
|
|
|
8482
8479
|
top: 50%;
|
|
8483
8480
|
width: 1.5rem;
|
|
8484
8481
|
}
|
|
8482
|
+
.clay-range-input .form-control-range::-webkit-slider-thumb::-ms-expand {
|
|
8483
|
+
display: none;
|
|
8484
|
+
}
|
|
8485
8485
|
.clay-range-input .form-control-range:hover {
|
|
8486
8486
|
cursor: pointer;
|
|
8487
8487
|
}
|
|
@@ -8505,20 +8505,20 @@ button.link-outline {
|
|
|
8505
8505
|
outline: 0;
|
|
8506
8506
|
}
|
|
8507
8507
|
.clay-range-input .form-control-range:focus ~ .clay-range-progress .clay-range-thumb, .clay-range-input .form-control-range.focus ~ .clay-range-progress .clay-range-thumb {
|
|
8508
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
8508
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8509
8509
|
}
|
|
8510
8510
|
.clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip, .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip {
|
|
8511
8511
|
visibility: visible;
|
|
8512
8512
|
opacity: 1;
|
|
8513
8513
|
}
|
|
8514
8514
|
.clay-range-input .form-control-range:focus::-moz-range-thumb, .clay-range-input .form-control-range.focus::-moz-range-thumb {
|
|
8515
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
8515
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8516
8516
|
}
|
|
8517
8517
|
.clay-range-input .form-control-range:focus::-ms-thumb, .clay-range-input .form-control-range.focus::-ms-thumb {
|
|
8518
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
8518
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8519
8519
|
}
|
|
8520
8520
|
.clay-range-input .form-control-range:focus::-webkit-slider-thumb, .clay-range-input .form-control-range.focus::-webkit-slider-thumb {
|
|
8521
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
8521
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8522
8522
|
}
|
|
8523
8523
|
.clay-range-input .form-control-range:disabled {
|
|
8524
8524
|
color: #a7a9bc;
|
|
@@ -8690,13 +8690,13 @@ button.link-outline {
|
|
|
8690
8690
|
width: 1.5rem;
|
|
8691
8691
|
}
|
|
8692
8692
|
.clay-color-btn:active {
|
|
8693
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8693
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8694
8694
|
}
|
|
8695
8695
|
.clay-color-btn.active {
|
|
8696
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8696
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8697
8697
|
}
|
|
8698
8698
|
.clay-color-btn[aria-expanded=true], .clay-color-btn.show {
|
|
8699
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8699
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8700
8700
|
}
|
|
8701
8701
|
.clay-color-btn .c-inner {
|
|
8702
8702
|
margin-bottom: 0;
|
|
@@ -8869,7 +8869,7 @@ button.link-outline {
|
|
|
8869
8869
|
}
|
|
8870
8870
|
.form-file-input:focus + .input-group {
|
|
8871
8871
|
border-radius: 1px;
|
|
8872
|
-
box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.125rem #fff
|
|
8872
|
+
box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8873
8873
|
}
|
|
8874
8874
|
.form-file-input:disabled {
|
|
8875
8875
|
cursor: not-allowed;
|
|
@@ -8968,12 +8968,12 @@ label.custom-control-label {
|
|
|
8968
8968
|
}
|
|
8969
8969
|
.custom-control-input:focus ~ .custom-control-label::before {
|
|
8970
8970
|
border-color: #cdced9;
|
|
8971
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8971
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8972
8972
|
}
|
|
8973
8973
|
.custom-control-input:active ~ .custom-control-label::before {
|
|
8974
8974
|
background-color: #fff;
|
|
8975
8975
|
border-color: #cdced9;
|
|
8976
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 0.125rem #fff
|
|
8976
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8977
8977
|
color: #fff;
|
|
8978
8978
|
}
|
|
8979
8979
|
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
|
|
@@ -9154,7 +9154,7 @@ label.custom-control-label {
|
|
|
9154
9154
|
}
|
|
9155
9155
|
.custom-file-input:focus ~ .custom-file-label {
|
|
9156
9156
|
border-color: #80acff;
|
|
9157
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
9157
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9158
9158
|
}
|
|
9159
9159
|
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
|
|
9160
9160
|
background-color: #f1f2f5;
|
|
@@ -9210,13 +9210,13 @@ label.custom-control-label {
|
|
|
9210
9210
|
outline: none;
|
|
9211
9211
|
}
|
|
9212
9212
|
.custom-range:focus::-webkit-slider-thumb {
|
|
9213
|
-
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff
|
|
9213
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9214
9214
|
}
|
|
9215
9215
|
.custom-range:focus::-moz-range-thumb {
|
|
9216
|
-
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff
|
|
9216
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9217
9217
|
}
|
|
9218
9218
|
.custom-range:focus::-ms-thumb {
|
|
9219
|
-
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff
|
|
9219
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9220
9220
|
}
|
|
9221
9221
|
.custom-range::-moz-focus-outer {
|
|
9222
9222
|
border: 0;
|
|
@@ -9446,7 +9446,7 @@ label.custom-control-label {
|
|
|
9446
9446
|
.clay-time-inner-spin .btn {
|
|
9447
9447
|
align-items: center;
|
|
9448
9448
|
border-radius: 8px;
|
|
9449
|
-
border-width:
|
|
9449
|
+
border-width: 0px;
|
|
9450
9450
|
display: inline-flex;
|
|
9451
9451
|
font-size: 8px;
|
|
9452
9452
|
height: auto;
|
|
@@ -9592,7 +9592,7 @@ label.custom-control-label {
|
|
|
9592
9592
|
|
|
9593
9593
|
.date-picker-calendar-item {
|
|
9594
9594
|
align-items: center;
|
|
9595
|
-
border-width:
|
|
9595
|
+
border-width: 0px;
|
|
9596
9596
|
display: inline-flex;
|
|
9597
9597
|
flex-shrink: 0;
|
|
9598
9598
|
font-weight: 600;
|
|
@@ -10012,7 +10012,7 @@ label.custom-control-label {
|
|
|
10012
10012
|
}
|
|
10013
10013
|
.was-validated .form-control:valid:focus,
|
|
10014
10014
|
.was-validated .form-control.is-valid:focus {
|
|
10015
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10015
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10016
10016
|
}
|
|
10017
10017
|
|
|
10018
10018
|
.was-validated .form-control:invalid,
|
|
@@ -10024,7 +10024,7 @@ label.custom-control-label {
|
|
|
10024
10024
|
}
|
|
10025
10025
|
.was-validated .form-control:invalid:focus,
|
|
10026
10026
|
.was-validated .form-control.is-invalid:focus {
|
|
10027
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10027
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10028
10028
|
}
|
|
10029
10029
|
|
|
10030
10030
|
.has-error .custom-control-label,
|
|
@@ -10038,7 +10038,7 @@ label.custom-control-label {
|
|
|
10038
10038
|
color: #272833;
|
|
10039
10039
|
}
|
|
10040
10040
|
.has-error .form-control:focus, .has-error .form-control.focus {
|
|
10041
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10041
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10042
10042
|
}
|
|
10043
10043
|
.has-error .form-control[readonly] {
|
|
10044
10044
|
background-color: #fff;
|
|
@@ -10063,7 +10063,7 @@ label.custom-control-label {
|
|
|
10063
10063
|
color: #272833;
|
|
10064
10064
|
}
|
|
10065
10065
|
.has-error .input-group-item.focus {
|
|
10066
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10066
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10067
10067
|
}
|
|
10068
10068
|
.has-error .input-group-item.focus .input-group-inset {
|
|
10069
10069
|
background-color: #feefef;
|
|
@@ -10097,7 +10097,7 @@ label.custom-control-label {
|
|
|
10097
10097
|
color: #272833;
|
|
10098
10098
|
}
|
|
10099
10099
|
.has-warning .form-control:focus, .has-warning .form-control.focus {
|
|
10100
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10100
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10101
10101
|
}
|
|
10102
10102
|
.has-warning .form-control[readonly] {
|
|
10103
10103
|
background-color: #fff;
|
|
@@ -10122,7 +10122,7 @@ label.custom-control-label {
|
|
|
10122
10122
|
color: #272833;
|
|
10123
10123
|
}
|
|
10124
10124
|
.has-warning .input-group-item.focus {
|
|
10125
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10125
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10126
10126
|
}
|
|
10127
10127
|
.has-warning .input-group-item.focus .input-group-inset {
|
|
10128
10128
|
background-color: #fff4ec;
|
|
@@ -10156,7 +10156,7 @@ label.custom-control-label {
|
|
|
10156
10156
|
color: #272833;
|
|
10157
10157
|
}
|
|
10158
10158
|
.has-success .form-control:focus, .has-success .form-control.focus {
|
|
10159
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10159
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10160
10160
|
}
|
|
10161
10161
|
.has-success .form-control[readonly] {
|
|
10162
10162
|
background-color: #fff;
|
|
@@ -10181,7 +10181,7 @@ label.custom-control-label {
|
|
|
10181
10181
|
color: #272833;
|
|
10182
10182
|
}
|
|
10183
10183
|
.has-success .input-group-item.focus {
|
|
10184
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10184
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10185
10185
|
}
|
|
10186
10186
|
.has-success .input-group-item.focus .input-group-inset {
|
|
10187
10187
|
background-color: #edf9f0;
|
|
@@ -10331,7 +10331,7 @@ label.custom-control-label {
|
|
|
10331
10331
|
}
|
|
10332
10332
|
.input-group-item.focus {
|
|
10333
10333
|
border-radius: 0.25rem;
|
|
10334
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10334
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10335
10335
|
}
|
|
10336
10336
|
.input-group-item.focus.input-group-prepend {
|
|
10337
10337
|
border-bottom-right-radius: 0;
|
|
@@ -11023,7 +11023,7 @@ label.custom-control-label {
|
|
|
11023
11023
|
}
|
|
11024
11024
|
.list-group-title[href]:focus,
|
|
11025
11025
|
.list-group-title [href]:focus {
|
|
11026
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11026
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11027
11027
|
outline: 0;
|
|
11028
11028
|
}
|
|
11029
11029
|
.list-group-subtitle {
|
|
@@ -11050,7 +11050,7 @@ label.custom-control-label {
|
|
|
11050
11050
|
}
|
|
11051
11051
|
.list-group-subtitle[href]:focus,
|
|
11052
11052
|
.list-group-subtitle [href]:focus {
|
|
11053
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11053
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11054
11054
|
outline: 0;
|
|
11055
11055
|
}
|
|
11056
11056
|
.list-group-text {
|
|
@@ -11078,7 +11078,7 @@ label.custom-control-label {
|
|
|
11078
11078
|
}
|
|
11079
11079
|
.list-group-text[href]:focus,
|
|
11080
11080
|
.list-group-text [href]:focus {
|
|
11081
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11081
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11082
11082
|
outline: 0;
|
|
11083
11083
|
}
|
|
11084
11084
|
.list-group-subtext {
|
|
@@ -11106,7 +11106,7 @@ label.custom-control-label {
|
|
|
11106
11106
|
}
|
|
11107
11107
|
.list-group-subtext[href]:focus,
|
|
11108
11108
|
.list-group-subtext [href]:focus {
|
|
11109
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11109
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11110
11110
|
outline: 0;
|
|
11111
11111
|
}
|
|
11112
11112
|
.show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
|
|
@@ -11457,8 +11457,8 @@ label.custom-control-label {
|
|
|
11457
11457
|
}
|
|
11458
11458
|
.list-group-notification .list-group-item-primary {
|
|
11459
11459
|
background-color: #fff;
|
|
11460
|
-
border-bottom-left-radius:
|
|
11461
|
-
border-top-left-radius:
|
|
11460
|
+
border-bottom-left-radius: 0px;
|
|
11461
|
+
border-top-left-radius: 0px;
|
|
11462
11462
|
box-shadow: inset 0.5rem 0 #80acff, inset -0.0625rem 0 #e7e7ed, inset 0 0.0625rem #e7e7ed, inset 0 -0.0625rem #e7e7ed;
|
|
11463
11463
|
}
|
|
11464
11464
|
.list-group-notification .list-group-item-primary.active {
|
|
@@ -12052,7 +12052,7 @@ label.custom-control-label {
|
|
|
12052
12052
|
color: #fff;
|
|
12053
12053
|
}
|
|
12054
12054
|
.multi-step-item.active .multi-step-divider {
|
|
12055
|
-
background-color: #
|
|
12055
|
+
background-color: #e7e7ed;
|
|
12056
12056
|
}
|
|
12057
12057
|
.multi-step-item.active.complete .multi-step-icon {
|
|
12058
12058
|
background-color: #0b5fff;
|
|
@@ -12082,7 +12082,7 @@ label.custom-control-label {
|
|
|
12082
12082
|
color: #a7a9bc;
|
|
12083
12083
|
}
|
|
12084
12084
|
.multi-step-item.disabled .multi-step-icon {
|
|
12085
|
-
background-color: #
|
|
12085
|
+
background-color: #e7e7ed;
|
|
12086
12086
|
background-repeat: no-repeat;
|
|
12087
12087
|
color: #a7a9bc;
|
|
12088
12088
|
cursor: not-allowed;
|
|
@@ -12095,7 +12095,7 @@ label.custom-control-label {
|
|
|
12095
12095
|
color: #a7a9bc;
|
|
12096
12096
|
}
|
|
12097
12097
|
.multi-step-item.disabled .multi-step-divider {
|
|
12098
|
-
background-color: #
|
|
12098
|
+
background-color: #e7e7ed;
|
|
12099
12099
|
}
|
|
12100
12100
|
|
|
12101
12101
|
.multi-step-title {
|
|
@@ -12113,7 +12113,7 @@ label.custom-control-label {
|
|
|
12113
12113
|
}
|
|
12114
12114
|
|
|
12115
12115
|
.multi-step-divider {
|
|
12116
|
-
background-color: #
|
|
12116
|
+
background-color: #e7e7ed;
|
|
12117
12117
|
height: 0.25rem;
|
|
12118
12118
|
margin-left: 2rem;
|
|
12119
12119
|
margin-top: -0.25rem;
|
|
@@ -12150,9 +12150,9 @@ label.custom-control-label {
|
|
|
12150
12150
|
|
|
12151
12151
|
.multi-step-icon {
|
|
12152
12152
|
align-items: center;
|
|
12153
|
-
background-color: #
|
|
12153
|
+
background-color: #e7e7ed;
|
|
12154
12154
|
border-radius: 100px;
|
|
12155
|
-
border-width:
|
|
12155
|
+
border-width: 0px;
|
|
12156
12156
|
color: #6b6c7e;
|
|
12157
12157
|
cursor: pointer;
|
|
12158
12158
|
display: flex;
|
|
@@ -12168,13 +12168,13 @@ label.custom-control-label {
|
|
|
12168
12168
|
width: 2rem;
|
|
12169
12169
|
}
|
|
12170
12170
|
.multi-step-icon:hover {
|
|
12171
|
-
background-color: #
|
|
12171
|
+
background-color: #e7e7ed;
|
|
12172
12172
|
color: #6b6c7e;
|
|
12173
12173
|
text-decoration: none;
|
|
12174
12174
|
}
|
|
12175
12175
|
.multi-step-icon:focus {
|
|
12176
|
-
background-color: #
|
|
12177
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12176
|
+
background-color: #e7e7ed;
|
|
12177
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12178
12178
|
color: #6b6c7e;
|
|
12179
12179
|
outline: 0;
|
|
12180
12180
|
text-decoration: none;
|
|
@@ -12307,10 +12307,10 @@ label.custom-control-label {
|
|
|
12307
12307
|
width: 100%;
|
|
12308
12308
|
}
|
|
12309
12309
|
.nav-link.btn-unstyled:focus, .nav-link.btn-unstyled.focus {
|
|
12310
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12310
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12311
12311
|
}
|
|
12312
12312
|
.nav-link.btn-unstyled:active:focus {
|
|
12313
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12313
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12314
12314
|
}
|
|
12315
12315
|
.nav-link.btn-unstyled:disabled, .nav-link.btn-unstyled.disabled {
|
|
12316
12316
|
opacity: 1;
|
|
@@ -12620,7 +12620,7 @@ label.custom-control-label {
|
|
|
12620
12620
|
}
|
|
12621
12621
|
.nav-tabs .nav-link:focus {
|
|
12622
12622
|
border-color: transparent;
|
|
12623
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12623
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12624
12624
|
outline: 0;
|
|
12625
12625
|
}
|
|
12626
12626
|
.nav-tabs .nav-link:active {
|
|
@@ -12718,7 +12718,7 @@ label.custom-control-label {
|
|
|
12718
12718
|
width: auto;
|
|
12719
12719
|
}
|
|
12720
12720
|
.nav-underline .nav-link:focus {
|
|
12721
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12721
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12722
12722
|
outline: 0;
|
|
12723
12723
|
}
|
|
12724
12724
|
.nav-underline .nav-link.active {
|
|
@@ -12845,13 +12845,13 @@ label.custom-control-label {
|
|
|
12845
12845
|
}
|
|
12846
12846
|
@media (max-width: 767.98px) {
|
|
12847
12847
|
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler:focus, .menubar-vertical-expand-md.menubar-transparent .menubar-toggler.focus {
|
|
12848
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12848
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12849
12849
|
outline: 0;
|
|
12850
12850
|
}
|
|
12851
12851
|
}
|
|
12852
12852
|
@media (max-width: 767.98px) {
|
|
12853
12853
|
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler:active:focus {
|
|
12854
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12854
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12855
12855
|
}
|
|
12856
12856
|
}
|
|
12857
12857
|
@media (max-width: 767.98px) {
|
|
@@ -12875,7 +12875,7 @@ label.custom-control-label {
|
|
|
12875
12875
|
}
|
|
12876
12876
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
12877
12877
|
background-color: rgba(39, 40, 51, 0.03);
|
|
12878
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
12878
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
12879
12879
|
color: #272833;
|
|
12880
12880
|
outline: 0;
|
|
12881
12881
|
}
|
|
@@ -13044,13 +13044,13 @@ label.custom-control-label {
|
|
|
13044
13044
|
}
|
|
13045
13045
|
@media (max-width: 991.98px) {
|
|
13046
13046
|
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:focus, .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler.focus {
|
|
13047
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
13047
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
13048
13048
|
outline: 0;
|
|
13049
13049
|
}
|
|
13050
13050
|
}
|
|
13051
13051
|
@media (max-width: 991.98px) {
|
|
13052
13052
|
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:active:focus {
|
|
13053
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
13053
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
13054
13054
|
}
|
|
13055
13055
|
}
|
|
13056
13056
|
@media (max-width: 991.98px) {
|
|
@@ -13074,7 +13074,7 @@ label.custom-control-label {
|
|
|
13074
13074
|
}
|
|
13075
13075
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13076
13076
|
background-color: rgba(39, 40, 51, 0.03);
|
|
13077
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
13077
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
13078
13078
|
color: #272833;
|
|
13079
13079
|
outline: 0;
|
|
13080
13080
|
}
|
|
@@ -14992,7 +14992,7 @@ label.custom-control-label {
|
|
|
14992
14992
|
}
|
|
14993
14993
|
.application-bar .navbar-nav .nav-link:focus,
|
|
14994
14994
|
.application-bar .navbar-nav .btn-unstyled:focus {
|
|
14995
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
14995
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
14996
14996
|
}
|
|
14997
14997
|
.application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled,
|
|
14998
14998
|
.application-bar .navbar-nav .btn-unstyled:disabled,
|
|
@@ -15010,7 +15010,7 @@ label.custom-control-label {
|
|
|
15010
15010
|
}
|
|
15011
15011
|
}
|
|
15012
15012
|
.application-bar .navbar-brand:focus {
|
|
15013
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
15013
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
15014
15014
|
}
|
|
15015
15015
|
.application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
|
|
15016
15016
|
box-shadow: none;
|
|
@@ -16059,7 +16059,7 @@ label.custom-control-label {
|
|
|
16059
16059
|
}
|
|
16060
16060
|
.management-bar .navbar-nav .nav-link:focus,
|
|
16061
16061
|
.management-bar .navbar-nav .btn-unstyled:focus {
|
|
16062
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16062
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16063
16063
|
}
|
|
16064
16064
|
.management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled,
|
|
16065
16065
|
.management-bar .navbar-nav .btn-unstyled:disabled,
|
|
@@ -16077,7 +16077,7 @@ label.custom-control-label {
|
|
|
16077
16077
|
}
|
|
16078
16078
|
}
|
|
16079
16079
|
.management-bar .navbar-brand:focus {
|
|
16080
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16080
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16081
16081
|
}
|
|
16082
16082
|
.management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
|
|
16083
16083
|
box-shadow: none;
|
|
@@ -16624,12 +16624,12 @@ label.custom-control-label {
|
|
|
16624
16624
|
}
|
|
16625
16625
|
.navigation-bar .navbar-nav .nav-link,
|
|
16626
16626
|
.navigation-bar .navbar-nav .btn-unstyled {
|
|
16627
|
-
border-radius:
|
|
16627
|
+
border-radius: 0px;
|
|
16628
16628
|
outline: 0;
|
|
16629
16629
|
}
|
|
16630
16630
|
.navigation-bar .navbar-nav .nav-link:focus,
|
|
16631
16631
|
.navigation-bar .navbar-nav .btn-unstyled:focus {
|
|
16632
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16632
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16633
16633
|
}
|
|
16634
16634
|
.navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled,
|
|
16635
16635
|
.navigation-bar .navbar-nav .btn-unstyled:disabled,
|
|
@@ -16637,11 +16637,11 @@ label.custom-control-label {
|
|
|
16637
16637
|
box-shadow: none;
|
|
16638
16638
|
}
|
|
16639
16639
|
.navigation-bar .navbar-brand {
|
|
16640
|
-
border-radius:
|
|
16640
|
+
border-radius: 0px;
|
|
16641
16641
|
outline: 0;
|
|
16642
16642
|
}
|
|
16643
16643
|
.navigation-bar .navbar-brand:focus {
|
|
16644
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16644
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16645
16645
|
}
|
|
16646
16646
|
.navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
|
|
16647
16647
|
box-shadow: none;
|
|
@@ -16889,7 +16889,7 @@ label.custom-control-label {
|
|
|
16889
16889
|
z-index: 2;
|
|
16890
16890
|
}
|
|
16891
16891
|
.page-link:focus {
|
|
16892
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16892
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16893
16893
|
outline: 0;
|
|
16894
16894
|
z-index: 4;
|
|
16895
16895
|
background-color: rgba(0, 0, 0, 0.02);
|
|
@@ -17009,7 +17009,7 @@ label.custom-control-label {
|
|
|
17009
17009
|
}
|
|
17010
17010
|
.pagination-items-per-page > a:focus,
|
|
17011
17011
|
.pagination-items-per-page > button:focus {
|
|
17012
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
17012
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
17013
17013
|
outline: 0;
|
|
17014
17014
|
background-color: rgba(0, 0, 0, 0.02);
|
|
17015
17015
|
border-color: transparent;
|
|
@@ -17197,7 +17197,7 @@ label.custom-control-label {
|
|
|
17197
17197
|
}
|
|
17198
17198
|
|
|
17199
17199
|
.panel-header {
|
|
17200
|
-
border-bottom:
|
|
17200
|
+
border-bottom: 0px solid transparent;
|
|
17201
17201
|
border-top-left-radius: calc(
|
|
17202
17202
|
0.25rem - 1px
|
|
17203
17203
|
);
|
|
@@ -17245,7 +17245,7 @@ label.custom-control-label {
|
|
|
17245
17245
|
}
|
|
17246
17246
|
.panel-header-link:focus {
|
|
17247
17247
|
z-index: 1;
|
|
17248
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
17248
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
17249
17249
|
outline: 0;
|
|
17250
17250
|
}
|
|
17251
17251
|
.panel-header-link .collapse-icon {
|
|
@@ -17263,7 +17263,7 @@ label.custom-control-label {
|
|
|
17263
17263
|
border-bottom-right-radius: calc(
|
|
17264
17264
|
0.25rem - 1px
|
|
17265
17265
|
);
|
|
17266
|
-
border-top:
|
|
17266
|
+
border-top: 0px solid transparent;
|
|
17267
17267
|
padding: 0.75rem 1.25rem;
|
|
17268
17268
|
}
|
|
17269
17269
|
|
|
@@ -17311,7 +17311,7 @@ label.custom-control-label {
|
|
|
17311
17311
|
border-bottom-width: 0;
|
|
17312
17312
|
}
|
|
17313
17313
|
.panel-group .panel-header + .panel-collapse > .panel-body {
|
|
17314
|
-
border-top:
|
|
17314
|
+
border-top: 0px solid transparent;
|
|
17315
17315
|
}
|
|
17316
17316
|
.panel-group .panel-unstyled {
|
|
17317
17317
|
margin-bottom: 1.5rem;
|
|
@@ -17446,13 +17446,13 @@ label.custom-control-label {
|
|
|
17446
17446
|
}
|
|
17447
17447
|
.panel-unstyled {
|
|
17448
17448
|
background-color: transparent;
|
|
17449
|
-
border-radius:
|
|
17450
|
-
border-width:
|
|
17449
|
+
border-radius: 0px;
|
|
17450
|
+
border-width: 0px;
|
|
17451
17451
|
margin-bottom: 1.5rem;
|
|
17452
17452
|
}
|
|
17453
17453
|
.panel-unstyled .panel-header {
|
|
17454
17454
|
border-color: #a7a9bc;
|
|
17455
|
-
border-radius:
|
|
17455
|
+
border-radius: 0px;
|
|
17456
17456
|
border-style: solid;
|
|
17457
17457
|
border-width: 0 0 1px 0;
|
|
17458
17458
|
padding-left: 0;
|
|
@@ -18212,7 +18212,7 @@ a.sheet-subtitle:hover {
|
|
|
18212
18212
|
text-decoration: none;
|
|
18213
18213
|
}
|
|
18214
18214
|
a.sheet-subtitle:focus {
|
|
18215
|
-
box-shadow: 0 0 0 0.25rem #fff
|
|
18215
|
+
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
|
|
18216
18216
|
outline: 0;
|
|
18217
18217
|
}
|
|
18218
18218
|
.sheet-tertiary-title {
|
|
@@ -18265,7 +18265,7 @@ a.sheet-subtitle:focus {
|
|
|
18265
18265
|
}
|
|
18266
18266
|
|
|
18267
18267
|
.sheet-dataset-content .sheet-header {
|
|
18268
|
-
border-width:
|
|
18268
|
+
border-width: 0px;
|
|
18269
18269
|
margin: -1.5rem -1.5rem 1.5rem;
|
|
18270
18270
|
padding: 1rem 1.5rem;
|
|
18271
18271
|
}
|
|
@@ -18425,6 +18425,8 @@ a.sheet-subtitle:focus {
|
|
|
18425
18425
|
.sidebar-header .component-title {
|
|
18426
18426
|
font-size: 1.25rem;
|
|
18427
18427
|
font-weight: 600;
|
|
18428
|
+
overflow-wrap: break-word;
|
|
18429
|
+
word-wrap: break-word;
|
|
18428
18430
|
}
|
|
18429
18431
|
.sidebar-header .component-title[href],
|
|
18430
18432
|
.sidebar-header .component-title [href] {
|
|
@@ -18434,6 +18436,8 @@ a.sheet-subtitle:focus {
|
|
|
18434
18436
|
font-size: 0.75rem;
|
|
18435
18437
|
font-weight: 400;
|
|
18436
18438
|
margin-bottom: 0;
|
|
18439
|
+
overflow-wrap: break-word;
|
|
18440
|
+
word-wrap: break-word;
|
|
18437
18441
|
}
|
|
18438
18442
|
.sidebar-body {
|
|
18439
18443
|
overflow: auto;
|
|
@@ -18517,7 +18521,7 @@ a.sheet-subtitle:focus {
|
|
|
18517
18521
|
background-color: #fff;
|
|
18518
18522
|
border-color: #e7e7ed;
|
|
18519
18523
|
border-bottom-width: 0;
|
|
18520
|
-
border-left-width:
|
|
18524
|
+
border-left-width: 0px;
|
|
18521
18525
|
border-right-width: 0;
|
|
18522
18526
|
border-top-width: 0;
|
|
18523
18527
|
box-shadow: -0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
@@ -18541,7 +18545,7 @@ a.sheet-subtitle:focus {
|
|
|
18541
18545
|
color: #272833;
|
|
18542
18546
|
}
|
|
18543
18547
|
.sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
18544
|
-
box-shadow: 0 0 0 0.25rem #fff
|
|
18548
|
+
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
|
|
18545
18549
|
}
|
|
18546
18550
|
.sidebar-light .component-navigation-bar {
|
|
18547
18551
|
background-color: #fff;
|
|
@@ -18633,7 +18637,7 @@ a.sheet-subtitle:focus {
|
|
|
18633
18637
|
color: #fff;
|
|
18634
18638
|
}
|
|
18635
18639
|
.sidebar-dark .nav-nested .nav-link:focus {
|
|
18636
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
18640
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
18637
18641
|
outline: 0;
|
|
18638
18642
|
}
|
|
18639
18643
|
.sidebar-dark .nav-nested .nav-link:active {
|
|
@@ -18827,7 +18831,7 @@ caption {
|
|
|
18827
18831
|
.table thead th {
|
|
18828
18832
|
background-color: #fff;
|
|
18829
18833
|
border-bottom: 1px solid #e7e7ed;
|
|
18830
|
-
border-top-width:
|
|
18834
|
+
border-top-width: 0px;
|
|
18831
18835
|
vertical-align: bottom;
|
|
18832
18836
|
}
|
|
18833
18837
|
.table thead th a {
|
|
@@ -18844,7 +18848,7 @@ caption {
|
|
|
18844
18848
|
color: #272833;
|
|
18845
18849
|
}
|
|
18846
18850
|
.table thead th a:focus {
|
|
18847
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
18851
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
18848
18852
|
outline: 0;
|
|
18849
18853
|
}
|
|
18850
18854
|
.table th {
|
|
@@ -18860,8 +18864,8 @@ caption {
|
|
|
18860
18864
|
.table td {
|
|
18861
18865
|
background-clip: padding-box;
|
|
18862
18866
|
border-bottom-width: 0.0625rem;
|
|
18863
|
-
border-left-width:
|
|
18864
|
-
border-right-width:
|
|
18867
|
+
border-left-width: 0px;
|
|
18868
|
+
border-right-width: 0px;
|
|
18865
18869
|
border-top-width: 0.0625rem;
|
|
18866
18870
|
border-color: #e7e7ed;
|
|
18867
18871
|
border-style: solid;
|
|
@@ -18887,7 +18891,7 @@ caption {
|
|
|
18887
18891
|
background-color: #fff;
|
|
18888
18892
|
}
|
|
18889
18893
|
.table tbody + tbody {
|
|
18890
|
-
border-top: 0.
|
|
18894
|
+
border-top: calc(2 * 0.0625rem) solid #e7e7ed;
|
|
18891
18895
|
}
|
|
18892
18896
|
.table tfoot {
|
|
18893
18897
|
background-color: #fff;
|
|
@@ -18931,8 +18935,7 @@ caption {
|
|
|
18931
18935
|
}
|
|
18932
18936
|
.table-bordered thead td,
|
|
18933
18937
|
.table-bordered thead th {
|
|
18934
|
-
border-bottom-width: 0.
|
|
18935
|
-
border-top-width: 0.0625rem;
|
|
18938
|
+
border-bottom-width: calc(2 * 0.0625rem);
|
|
18936
18939
|
}
|
|
18937
18940
|
.table-bordered td,
|
|
18938
18941
|
.table-bordered th {
|
|
@@ -19228,7 +19231,7 @@ caption {
|
|
|
19228
19231
|
}
|
|
19229
19232
|
.table-title[href]:focus,
|
|
19230
19233
|
.table-title [href]:focus {
|
|
19231
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19234
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19232
19235
|
outline: 0;
|
|
19233
19236
|
}
|
|
19234
19237
|
.table-link {
|
|
@@ -19247,7 +19250,7 @@ caption {
|
|
|
19247
19250
|
color: #272833;
|
|
19248
19251
|
}
|
|
19249
19252
|
.table-link:focus {
|
|
19250
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19253
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19251
19254
|
outline: 0;
|
|
19252
19255
|
}
|
|
19253
19256
|
.table-action-link {
|
|
@@ -19275,7 +19278,7 @@ caption {
|
|
|
19275
19278
|
.table-action-link:focus {
|
|
19276
19279
|
background-color: rgba(0, 0, 0, 0.02);
|
|
19277
19280
|
color: #272833;
|
|
19278
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19281
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19279
19282
|
outline: 0;
|
|
19280
19283
|
}
|
|
19281
19284
|
.table-action-link:active {
|
|
@@ -19556,7 +19559,7 @@ caption {
|
|
|
19556
19559
|
}
|
|
19557
19560
|
.table-list-title[href]:focus,
|
|
19558
19561
|
.table-list-title [href]:focus {
|
|
19559
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19562
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19560
19563
|
outline: 0;
|
|
19561
19564
|
}
|
|
19562
19565
|
.table-list-link {
|
|
@@ -19575,7 +19578,7 @@ caption {
|
|
|
19575
19578
|
color: #272833;
|
|
19576
19579
|
}
|
|
19577
19580
|
.table-list-link:focus {
|
|
19578
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19581
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19579
19582
|
outline: 0;
|
|
19580
19583
|
}
|
|
19581
19584
|
.table-list-action-link {
|
|
@@ -19602,7 +19605,7 @@ caption {
|
|
|
19602
19605
|
.table-list-action-link:focus {
|
|
19603
19606
|
background-color: rgba(0, 0, 0, 0.02);
|
|
19604
19607
|
color: #272833;
|
|
19605
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19608
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19606
19609
|
outline: 0;
|
|
19607
19610
|
}
|
|
19608
19611
|
.table-list-action-link:active {
|
|
@@ -20201,8 +20204,8 @@ caption {
|
|
|
20201
20204
|
padding-right: 0.25rem;
|
|
20202
20205
|
}
|
|
20203
20206
|
.subnav-tbar-primary .tbar-link-monospaced {
|
|
20204
|
-
border-radius:
|
|
20205
|
-
border-width:
|
|
20207
|
+
border-radius: 0px;
|
|
20208
|
+
border-width: 0px;
|
|
20206
20209
|
height: 3rem;
|
|
20207
20210
|
margin-bottom: -0.625rem;
|
|
20208
20211
|
margin-top: -0.625rem;
|
|
@@ -20290,8 +20293,8 @@ caption {
|
|
|
20290
20293
|
}
|
|
20291
20294
|
.tbar-stacked .tbar-btn-monospaced {
|
|
20292
20295
|
border-color: transparent;
|
|
20293
|
-
border-radius:
|
|
20294
|
-
border-width:
|
|
20296
|
+
border-radius: 0px;
|
|
20297
|
+
border-width: 0px;
|
|
20295
20298
|
color: inherit;
|
|
20296
20299
|
height: 2.5rem;
|
|
20297
20300
|
margin-bottom: 0;
|
|
@@ -20305,10 +20308,10 @@ caption {
|
|
|
20305
20308
|
width: 2.5rem;
|
|
20306
20309
|
}
|
|
20307
20310
|
.tbar-stacked .tbar-btn-monospaced:focus, .tbar-stacked .tbar-btn-monospaced.focus {
|
|
20308
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
20311
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
20309
20312
|
}
|
|
20310
20313
|
.tbar-stacked .tbar-btn-monospaced:active:focus {
|
|
20311
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
20314
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
20312
20315
|
}
|
|
20313
20316
|
.tbar-stacked .tbar-btn-monospaced .c-inner {
|
|
20314
20317
|
margin-bottom: 0;
|
|
@@ -20321,7 +20324,7 @@ caption {
|
|
|
20321
20324
|
}
|
|
20322
20325
|
.tbar-light {
|
|
20323
20326
|
background-color: #fff;
|
|
20324
|
-
box-shadow: inset 1px 0 0 0 #f1f2f5
|
|
20327
|
+
box-shadow: inset 1px 0 0 0 #f1f2f5, inset -1px 0 0 0 #f1f2f5;
|
|
20325
20328
|
color: #6b6c7e;
|
|
20326
20329
|
}
|
|
20327
20330
|
.tbar-light .tbar-divider-before::before {
|
|
@@ -20356,7 +20359,7 @@ caption {
|
|
|
20356
20359
|
}
|
|
20357
20360
|
.tbar-dark-l2 {
|
|
20358
20361
|
background-color: #393a4a;
|
|
20359
|
-
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06)
|
|
20362
|
+
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06), inset -1px 0 0 0 rgba(255, 255, 255, 0.06);
|
|
20360
20363
|
border-color: rgba(255, 255, 255, 0.06);
|
|
20361
20364
|
color: #a7a9bc;
|
|
20362
20365
|
}
|
|
@@ -20392,7 +20395,7 @@ caption {
|
|
|
20392
20395
|
}
|
|
20393
20396
|
.tbar-dark-d1 {
|
|
20394
20397
|
background-color: #1c1c24;
|
|
20395
|
-
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06)
|
|
20398
|
+
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06), inset -1px 0 0 0 rgba(255, 255, 255, 0.06);
|
|
20396
20399
|
color: #a7a9bc;
|
|
20397
20400
|
}
|
|
20398
20401
|
.tbar-dark-d1 .tbar-divider-before::before {
|
|
@@ -20845,7 +20848,7 @@ caption {
|
|
|
20845
20848
|
opacity: 0;
|
|
20846
20849
|
}
|
|
20847
20850
|
.toggle-switch-check:focus ~ .toggle-switch-bar::before {
|
|
20848
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
20851
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
20849
20852
|
}
|
|
20850
20853
|
.toggle-switch-check[disabled] ~ .toggle-switch-bar, .toggle-switch-check:disabled ~ .toggle-switch-bar {
|
|
20851
20854
|
cursor: not-allowed;
|
|
@@ -21278,26 +21281,30 @@ caption {
|
|
|
21278
21281
|
padding: 2px 0;
|
|
21279
21282
|
}
|
|
21280
21283
|
.treeview .btn-monospaced {
|
|
21281
|
-
font-size:
|
|
21284
|
+
font-size: inherit;
|
|
21282
21285
|
height: 24px;
|
|
21283
21286
|
width: 24px;
|
|
21284
21287
|
}
|
|
21285
21288
|
.treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
|
|
21286
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
21289
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21287
21290
|
}
|
|
21288
21291
|
.treeview .btn-monospaced:active:focus {
|
|
21289
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
21292
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21290
21293
|
}
|
|
21291
21294
|
.treeview .custom-control {
|
|
21292
21295
|
margin-left: 4px;
|
|
21293
21296
|
margin-right: 4px;
|
|
21294
21297
|
margin-top: 1.5px;
|
|
21295
21298
|
}
|
|
21299
|
+
.treeview .component-expander {
|
|
21300
|
+
font-size: 10px;
|
|
21301
|
+
}
|
|
21296
21302
|
.treeview .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
21297
21303
|
display: none;
|
|
21298
21304
|
}
|
|
21299
21305
|
.treeview .component-action {
|
|
21300
21306
|
display: none;
|
|
21307
|
+
font-size: 16px;
|
|
21301
21308
|
margin-left: 2px;
|
|
21302
21309
|
margin-right: 2px;
|
|
21303
21310
|
}
|
|
@@ -21318,12 +21325,16 @@ caption {
|
|
|
21318
21325
|
background-color: transparent;
|
|
21319
21326
|
}
|
|
21320
21327
|
.treeview .component-icon {
|
|
21321
|
-
display: inline;
|
|
21328
|
+
display: inline-block;
|
|
21329
|
+
font-size: 16px;
|
|
21322
21330
|
height: auto;
|
|
21323
|
-
margin
|
|
21324
|
-
|
|
21331
|
+
margin: auto 4px;
|
|
21332
|
+
vertical-align: middle;
|
|
21325
21333
|
width: auto;
|
|
21326
21334
|
}
|
|
21335
|
+
.treeview .component-icon .lexicon-icon {
|
|
21336
|
+
display: block;
|
|
21337
|
+
}
|
|
21327
21338
|
.treeview .component-text {
|
|
21328
21339
|
padding-bottom: 1.5px;
|
|
21329
21340
|
padding-left: 4px;
|
|
@@ -21390,7 +21401,7 @@ caption {
|
|
|
21390
21401
|
text-decoration: none;
|
|
21391
21402
|
}
|
|
21392
21403
|
.treeview-link:focus {
|
|
21393
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
21404
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21394
21405
|
outline: 0;
|
|
21395
21406
|
}
|
|
21396
21407
|
.treeview-link:disabled, .treeview-link.disabled {
|
|
@@ -21520,7 +21531,7 @@ caption {
|
|
|
21520
21531
|
appearance: none;
|
|
21521
21532
|
background-color: transparent;
|
|
21522
21533
|
border-radius: 0.1875rem;
|
|
21523
|
-
border-width:
|
|
21534
|
+
border-width: 0px;
|
|
21524
21535
|
color: #272833;
|
|
21525
21536
|
cursor: pointer;
|
|
21526
21537
|
display: inline-flex;
|
|
@@ -21550,7 +21561,7 @@ caption {
|
|
|
21550
21561
|
outline: 0;
|
|
21551
21562
|
}
|
|
21552
21563
|
.close:focus {
|
|
21553
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
21564
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
21554
21565
|
outline: 0;
|
|
21555
21566
|
opacity: 0.75;
|
|
21556
21567
|
}
|
|
@@ -21566,7 +21577,7 @@ caption {
|
|
|
21566
21577
|
}
|
|
21567
21578
|
|
|
21568
21579
|
.c-focus-inset:focus:not(:disabled):not(.disabled):not([disabled]), .c-focus-inset.focus:not(:disabled):not(.disabled):not([disabled]) {
|
|
21569
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
21580
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21570
21581
|
border-color: #80acff;
|
|
21571
21582
|
outline: 0;
|
|
21572
21583
|
}
|
|
@@ -24825,7 +24836,7 @@ button.bg-dark:focus {
|
|
|
24825
24836
|
}
|
|
24826
24837
|
|
|
24827
24838
|
.rounded-0 {
|
|
24828
|
-
border-radius:
|
|
24839
|
+
border-radius: 0px !important;
|
|
24829
24840
|
}
|
|
24830
24841
|
|
|
24831
24842
|
.clearfix::after {
|