@clayui/css 3.54.0 → 3.55.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 +136 -155
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +54 -91
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +0 -0
- package/lib/css/cadmin.css +0 -0
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/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/_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/_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/components/_tables.scss +2 -2
- package/src/scss/mixins/_buttons.scss +4 -0
- 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 +2 -2
- package/src/scss/variables/_sheets.scss +1 -1
- package/src/scss/variables/_tables.scss +4 -4
- package/src/scss/variables/_tbar.scss +14 -13
- package/src/scss/variables/_time.scss +1 -1
- package/src/scss/variables/_type.scss +2 -2
- package/src/scss/variables/_utilities.scss +1 -1
package/lib/css/atlas.css
CHANGED
|
@@ -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,7 +4281,7 @@ 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
4287
|
.breadcrumb-link > .breadcrumb-text-truncate {
|
|
@@ -4606,7 +4588,7 @@ input[type=button].btn-block {
|
|
|
4606
4588
|
}
|
|
4607
4589
|
.label[href]:focus, .label[type]:focus, .label[tabindex]:focus {
|
|
4608
4590
|
text-decoration: underline;
|
|
4609
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
4591
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
4610
4592
|
}
|
|
4611
4593
|
.label a,
|
|
4612
4594
|
.label .btn-unstyled {
|
|
@@ -5573,49 +5555,49 @@ input[type=button].btn-block {
|
|
|
5573
5555
|
.rounded-0 .card-header,
|
|
5574
5556
|
.rounded-0 .card-item-first {
|
|
5575
5557
|
border-top-left-radius: calc(
|
|
5576
|
-
|
|
5558
|
+
0px - 0px
|
|
5577
5559
|
);
|
|
5578
5560
|
border-top-right-radius: calc(
|
|
5579
|
-
|
|
5561
|
+
0px - 0px
|
|
5580
5562
|
);
|
|
5581
5563
|
}
|
|
5582
5564
|
.rounded-0 .card-footer,
|
|
5583
5565
|
.rounded-0 .card-item-last {
|
|
5584
5566
|
border-bottom-left-radius: calc(
|
|
5585
|
-
|
|
5567
|
+
0px - 0px
|
|
5586
5568
|
);
|
|
5587
5569
|
border-bottom-right-radius: calc(
|
|
5588
|
-
|
|
5570
|
+
0px - 0px
|
|
5589
5571
|
);
|
|
5590
5572
|
}
|
|
5591
5573
|
.rounded-0 .autofit-col:first-child {
|
|
5592
5574
|
border-bottom-left-radius: calc(
|
|
5593
|
-
|
|
5575
|
+
0px - 0px
|
|
5594
5576
|
);
|
|
5595
5577
|
border-top-left-radius: calc(
|
|
5596
|
-
|
|
5578
|
+
0px - 0px
|
|
5597
5579
|
);
|
|
5598
5580
|
}
|
|
5599
5581
|
.rounded-0 .autofit-col:first-child .card-item-first {
|
|
5600
5582
|
border-radius: calc(
|
|
5601
|
-
|
|
5583
|
+
0px - 0px
|
|
5602
5584
|
) 0 0 calc(
|
|
5603
|
-
|
|
5585
|
+
0px - 0px
|
|
5604
5586
|
);
|
|
5605
5587
|
}
|
|
5606
5588
|
.rounded-0 .autofit-col:last-child {
|
|
5607
5589
|
border-bottom-right-radius: calc(
|
|
5608
|
-
|
|
5590
|
+
0px - 0px
|
|
5609
5591
|
);
|
|
5610
5592
|
border-top-right-radius: calc(
|
|
5611
|
-
|
|
5593
|
+
0px - 0px
|
|
5612
5594
|
);
|
|
5613
5595
|
}
|
|
5614
5596
|
.rounded-0 .autofit-col:last-child .card-item-last {
|
|
5615
5597
|
border-radius: 0 calc(
|
|
5616
|
-
|
|
5598
|
+
0px - 0px
|
|
5617
5599
|
) calc(
|
|
5618
|
-
|
|
5600
|
+
0px - 0px
|
|
5619
5601
|
) 0;
|
|
5620
5602
|
}
|
|
5621
5603
|
|
|
@@ -6258,7 +6240,7 @@ input[type=button].btn-block {
|
|
|
6258
6240
|
right: -1px;
|
|
6259
6241
|
}
|
|
6260
6242
|
.card-type-template .aspect-ratio {
|
|
6261
|
-
border-width:
|
|
6243
|
+
border-width: 0px;
|
|
6262
6244
|
color: #6b6c7e;
|
|
6263
6245
|
text-align: center;
|
|
6264
6246
|
background-image: none;
|
|
@@ -6361,8 +6343,8 @@ input[type=button].btn-block {
|
|
|
6361
6343
|
|
|
6362
6344
|
.dropdown-item {
|
|
6363
6345
|
background-color: transparent;
|
|
6364
|
-
border-radius:
|
|
6365
|
-
border-width:
|
|
6346
|
+
border-radius: 0px;
|
|
6347
|
+
border-width: 0px;
|
|
6366
6348
|
clear: both;
|
|
6367
6349
|
color: #6b6c7e;
|
|
6368
6350
|
cursor: pointer;
|
|
@@ -6390,7 +6372,7 @@ input[type=button].btn-block {
|
|
|
6390
6372
|
background-color: #f0f5ff;
|
|
6391
6373
|
color: #272833;
|
|
6392
6374
|
text-decoration: none;
|
|
6393
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
6375
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
6394
6376
|
outline: 0;
|
|
6395
6377
|
}
|
|
6396
6378
|
.dropdown-item:active {
|
|
@@ -6424,7 +6406,7 @@ input[type=button].btn-block {
|
|
|
6424
6406
|
color: #272833;
|
|
6425
6407
|
}
|
|
6426
6408
|
.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
|
|
6409
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
6428
6410
|
}
|
|
6429
6411
|
.dropdown-item:disabled, .dropdown-item.disabled {
|
|
6430
6412
|
background-color: transparent;
|
|
@@ -6530,7 +6512,7 @@ input[type=button].btn-block {
|
|
|
6530
6512
|
border-color: #e7e7ed;
|
|
6531
6513
|
border-radius: 0.25rem;
|
|
6532
6514
|
border-style: solid;
|
|
6533
|
-
border-width:
|
|
6515
|
+
border-width: 0px;
|
|
6534
6516
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
6535
6517
|
color: #272833;
|
|
6536
6518
|
display: none;
|
|
@@ -7284,7 +7266,7 @@ fieldset[disabled] label .form-control {
|
|
|
7284
7266
|
.form-control:focus, .form-control.focus {
|
|
7285
7267
|
background-color: #f0f5ff;
|
|
7286
7268
|
border-color: #80acff;
|
|
7287
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7269
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
7288
7270
|
color: #272833;
|
|
7289
7271
|
outline: 0;
|
|
7290
7272
|
}
|
|
@@ -7469,7 +7451,7 @@ div.form-control-sm {
|
|
|
7469
7451
|
}
|
|
7470
7452
|
.form-control-inset {
|
|
7471
7453
|
background-color: transparent;
|
|
7472
|
-
border-width:
|
|
7454
|
+
border-width: 0px;
|
|
7473
7455
|
color: #272833;
|
|
7474
7456
|
flex-grow: 1;
|
|
7475
7457
|
margin-bottom: 0.3125rem;
|
|
@@ -7633,7 +7615,7 @@ textarea.form-control-plaintext,
|
|
|
7633
7615
|
box-shadow: none;
|
|
7634
7616
|
}
|
|
7635
7617
|
.form-control[type=range]:focus::-webkit-slider-thumb {
|
|
7636
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7618
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
7637
7619
|
}
|
|
7638
7620
|
.form-control[type=range]::-webkit-slider-thumb {
|
|
7639
7621
|
border-radius: 100px;
|
|
@@ -7983,7 +7965,7 @@ textarea.form-control-lg,
|
|
|
7983
7965
|
}
|
|
7984
7966
|
.component-link:focus {
|
|
7985
7967
|
color: #484955;
|
|
7986
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7968
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
7987
7969
|
outline: 0;
|
|
7988
7970
|
}
|
|
7989
7971
|
.single-link {
|
|
@@ -8005,7 +7987,7 @@ textarea.form-control-lg,
|
|
|
8005
7987
|
}
|
|
8006
7988
|
.link-primary:focus {
|
|
8007
7989
|
color: #0041be;
|
|
8008
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
7990
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8009
7991
|
outline: 0;
|
|
8010
7992
|
}
|
|
8011
7993
|
.link-secondary {
|
|
@@ -8023,7 +8005,7 @@ textarea.form-control-lg,
|
|
|
8023
8005
|
}
|
|
8024
8006
|
.link-secondary:focus {
|
|
8025
8007
|
color: #272833;
|
|
8026
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8008
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8027
8009
|
outline: 0;
|
|
8028
8010
|
}
|
|
8029
8011
|
button.link-outline {
|
|
@@ -8194,7 +8176,7 @@ button.link-outline {
|
|
|
8194
8176
|
.component-title[href]:focus,
|
|
8195
8177
|
.component-title [href]:focus {
|
|
8196
8178
|
color: #060608;
|
|
8197
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8179
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8198
8180
|
outline: 0;
|
|
8199
8181
|
}
|
|
8200
8182
|
.component-subtitle {
|
|
@@ -8222,7 +8204,7 @@ button.link-outline {
|
|
|
8222
8204
|
.component-subtitle[href]:focus,
|
|
8223
8205
|
.component-subtitle [href]:focus {
|
|
8224
8206
|
color: #272833;
|
|
8225
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8207
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8226
8208
|
outline: 0;
|
|
8227
8209
|
}
|
|
8228
8210
|
.component-action {
|
|
@@ -8230,7 +8212,7 @@ button.link-outline {
|
|
|
8230
8212
|
background-color: transparent;
|
|
8231
8213
|
border-color: transparent;
|
|
8232
8214
|
border-radius: 0.25rem;
|
|
8233
|
-
border-width:
|
|
8215
|
+
border-width: 0px;
|
|
8234
8216
|
color: #6b6c7e;
|
|
8235
8217
|
display: inline-flex;
|
|
8236
8218
|
height: 2rem;
|
|
@@ -8306,7 +8288,7 @@ button.link-outline {
|
|
|
8306
8288
|
flex-direction: column;
|
|
8307
8289
|
}
|
|
8308
8290
|
.clay-range .input-group-text {
|
|
8309
|
-
border-width:
|
|
8291
|
+
border-width: 0px;
|
|
8310
8292
|
color: #a7a9bc;
|
|
8311
8293
|
font-size: 0.875rem;
|
|
8312
8294
|
font-weight: 600;
|
|
@@ -8395,7 +8377,7 @@ button.link-outline {
|
|
|
8395
8377
|
.clay-range-input .clay-range-thumb {
|
|
8396
8378
|
background-color: #fff;
|
|
8397
8379
|
border-radius: 100px;
|
|
8398
|
-
border-width:
|
|
8380
|
+
border-width: 0px;
|
|
8399
8381
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8400
8382
|
height: 1.5rem;
|
|
8401
8383
|
margin-top: -0.75rem;
|
|
@@ -8425,7 +8407,7 @@ button.link-outline {
|
|
|
8425
8407
|
appearance: none;
|
|
8426
8408
|
background-color: #fff;
|
|
8427
8409
|
border-radius: 100px;
|
|
8428
|
-
border-width:
|
|
8410
|
+
border-width: 0px;
|
|
8429
8411
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8430
8412
|
height: 1.5rem;
|
|
8431
8413
|
margin-top: -0.75rem;
|
|
@@ -8448,7 +8430,7 @@ button.link-outline {
|
|
|
8448
8430
|
appearance: none;
|
|
8449
8431
|
background-color: #fff;
|
|
8450
8432
|
border-radius: 100px;
|
|
8451
|
-
border-width:
|
|
8433
|
+
border-width: 0px;
|
|
8452
8434
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8453
8435
|
height: 1.5rem;
|
|
8454
8436
|
width: 1.5rem;
|
|
@@ -8474,7 +8456,7 @@ button.link-outline {
|
|
|
8474
8456
|
appearance: none;
|
|
8475
8457
|
background-color: #fff;
|
|
8476
8458
|
border-radius: 100px;
|
|
8477
|
-
border-width:
|
|
8459
|
+
border-width: 0px;
|
|
8478
8460
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8479
8461
|
height: 1.5rem;
|
|
8480
8462
|
margin-top: -0.75rem;
|
|
@@ -8505,20 +8487,20 @@ button.link-outline {
|
|
|
8505
8487
|
outline: 0;
|
|
8506
8488
|
}
|
|
8507
8489
|
.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
|
|
8490
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8509
8491
|
}
|
|
8510
8492
|
.clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip, .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip {
|
|
8511
8493
|
visibility: visible;
|
|
8512
8494
|
opacity: 1;
|
|
8513
8495
|
}
|
|
8514
8496
|
.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
|
|
8497
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8516
8498
|
}
|
|
8517
8499
|
.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
|
|
8500
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8519
8501
|
}
|
|
8520
8502
|
.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
|
|
8503
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
8522
8504
|
}
|
|
8523
8505
|
.clay-range-input .form-control-range:disabled {
|
|
8524
8506
|
color: #a7a9bc;
|
|
@@ -8690,13 +8672,13 @@ button.link-outline {
|
|
|
8690
8672
|
width: 1.5rem;
|
|
8691
8673
|
}
|
|
8692
8674
|
.clay-color-btn:active {
|
|
8693
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8675
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8694
8676
|
}
|
|
8695
8677
|
.clay-color-btn.active {
|
|
8696
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8678
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8697
8679
|
}
|
|
8698
8680
|
.clay-color-btn[aria-expanded=true], .clay-color-btn.show {
|
|
8699
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8681
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8700
8682
|
}
|
|
8701
8683
|
.clay-color-btn .c-inner {
|
|
8702
8684
|
margin-bottom: 0;
|
|
@@ -8869,7 +8851,7 @@ button.link-outline {
|
|
|
8869
8851
|
}
|
|
8870
8852
|
.form-file-input:focus + .input-group {
|
|
8871
8853
|
border-radius: 1px;
|
|
8872
|
-
box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.125rem #fff
|
|
8854
|
+
box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8873
8855
|
}
|
|
8874
8856
|
.form-file-input:disabled {
|
|
8875
8857
|
cursor: not-allowed;
|
|
@@ -8968,12 +8950,12 @@ label.custom-control-label {
|
|
|
8968
8950
|
}
|
|
8969
8951
|
.custom-control-input:focus ~ .custom-control-label::before {
|
|
8970
8952
|
border-color: #cdced9;
|
|
8971
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
8953
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8972
8954
|
}
|
|
8973
8955
|
.custom-control-input:active ~ .custom-control-label::before {
|
|
8974
8956
|
background-color: #fff;
|
|
8975
8957
|
border-color: #cdced9;
|
|
8976
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 0.125rem #fff
|
|
8958
|
+
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
8959
|
color: #fff;
|
|
8978
8960
|
}
|
|
8979
8961
|
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
|
|
@@ -9154,7 +9136,7 @@ label.custom-control-label {
|
|
|
9154
9136
|
}
|
|
9155
9137
|
.custom-file-input:focus ~ .custom-file-label {
|
|
9156
9138
|
border-color: #80acff;
|
|
9157
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
9139
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9158
9140
|
}
|
|
9159
9141
|
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
|
|
9160
9142
|
background-color: #f1f2f5;
|
|
@@ -9210,13 +9192,13 @@ label.custom-control-label {
|
|
|
9210
9192
|
outline: none;
|
|
9211
9193
|
}
|
|
9212
9194
|
.custom-range:focus::-webkit-slider-thumb {
|
|
9213
|
-
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff
|
|
9195
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9214
9196
|
}
|
|
9215
9197
|
.custom-range:focus::-moz-range-thumb {
|
|
9216
|
-
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff
|
|
9198
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9217
9199
|
}
|
|
9218
9200
|
.custom-range:focus::-ms-thumb {
|
|
9219
|
-
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff
|
|
9201
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
9220
9202
|
}
|
|
9221
9203
|
.custom-range::-moz-focus-outer {
|
|
9222
9204
|
border: 0;
|
|
@@ -9446,7 +9428,7 @@ label.custom-control-label {
|
|
|
9446
9428
|
.clay-time-inner-spin .btn {
|
|
9447
9429
|
align-items: center;
|
|
9448
9430
|
border-radius: 8px;
|
|
9449
|
-
border-width:
|
|
9431
|
+
border-width: 0px;
|
|
9450
9432
|
display: inline-flex;
|
|
9451
9433
|
font-size: 8px;
|
|
9452
9434
|
height: auto;
|
|
@@ -9592,7 +9574,7 @@ label.custom-control-label {
|
|
|
9592
9574
|
|
|
9593
9575
|
.date-picker-calendar-item {
|
|
9594
9576
|
align-items: center;
|
|
9595
|
-
border-width:
|
|
9577
|
+
border-width: 0px;
|
|
9596
9578
|
display: inline-flex;
|
|
9597
9579
|
flex-shrink: 0;
|
|
9598
9580
|
font-weight: 600;
|
|
@@ -10012,7 +9994,7 @@ label.custom-control-label {
|
|
|
10012
9994
|
}
|
|
10013
9995
|
.was-validated .form-control:valid:focus,
|
|
10014
9996
|
.was-validated .form-control.is-valid:focus {
|
|
10015
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
9997
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10016
9998
|
}
|
|
10017
9999
|
|
|
10018
10000
|
.was-validated .form-control:invalid,
|
|
@@ -10024,7 +10006,7 @@ label.custom-control-label {
|
|
|
10024
10006
|
}
|
|
10025
10007
|
.was-validated .form-control:invalid:focus,
|
|
10026
10008
|
.was-validated .form-control.is-invalid:focus {
|
|
10027
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10009
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10028
10010
|
}
|
|
10029
10011
|
|
|
10030
10012
|
.has-error .custom-control-label,
|
|
@@ -10038,7 +10020,7 @@ label.custom-control-label {
|
|
|
10038
10020
|
color: #272833;
|
|
10039
10021
|
}
|
|
10040
10022
|
.has-error .form-control:focus, .has-error .form-control.focus {
|
|
10041
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10023
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10042
10024
|
}
|
|
10043
10025
|
.has-error .form-control[readonly] {
|
|
10044
10026
|
background-color: #fff;
|
|
@@ -10063,7 +10045,7 @@ label.custom-control-label {
|
|
|
10063
10045
|
color: #272833;
|
|
10064
10046
|
}
|
|
10065
10047
|
.has-error .input-group-item.focus {
|
|
10066
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10048
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10067
10049
|
}
|
|
10068
10050
|
.has-error .input-group-item.focus .input-group-inset {
|
|
10069
10051
|
background-color: #feefef;
|
|
@@ -10097,7 +10079,7 @@ label.custom-control-label {
|
|
|
10097
10079
|
color: #272833;
|
|
10098
10080
|
}
|
|
10099
10081
|
.has-warning .form-control:focus, .has-warning .form-control.focus {
|
|
10100
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10082
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10101
10083
|
}
|
|
10102
10084
|
.has-warning .form-control[readonly] {
|
|
10103
10085
|
background-color: #fff;
|
|
@@ -10122,7 +10104,7 @@ label.custom-control-label {
|
|
|
10122
10104
|
color: #272833;
|
|
10123
10105
|
}
|
|
10124
10106
|
.has-warning .input-group-item.focus {
|
|
10125
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10107
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10126
10108
|
}
|
|
10127
10109
|
.has-warning .input-group-item.focus .input-group-inset {
|
|
10128
10110
|
background-color: #fff4ec;
|
|
@@ -10156,7 +10138,7 @@ label.custom-control-label {
|
|
|
10156
10138
|
color: #272833;
|
|
10157
10139
|
}
|
|
10158
10140
|
.has-success .form-control:focus, .has-success .form-control.focus {
|
|
10159
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10141
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10160
10142
|
}
|
|
10161
10143
|
.has-success .form-control[readonly] {
|
|
10162
10144
|
background-color: #fff;
|
|
@@ -10181,7 +10163,7 @@ label.custom-control-label {
|
|
|
10181
10163
|
color: #272833;
|
|
10182
10164
|
}
|
|
10183
10165
|
.has-success .input-group-item.focus {
|
|
10184
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10166
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10185
10167
|
}
|
|
10186
10168
|
.has-success .input-group-item.focus .input-group-inset {
|
|
10187
10169
|
background-color: #edf9f0;
|
|
@@ -10331,7 +10313,7 @@ label.custom-control-label {
|
|
|
10331
10313
|
}
|
|
10332
10314
|
.input-group-item.focus {
|
|
10333
10315
|
border-radius: 0.25rem;
|
|
10334
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
10316
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
10335
10317
|
}
|
|
10336
10318
|
.input-group-item.focus.input-group-prepend {
|
|
10337
10319
|
border-bottom-right-radius: 0;
|
|
@@ -11023,7 +11005,7 @@ label.custom-control-label {
|
|
|
11023
11005
|
}
|
|
11024
11006
|
.list-group-title[href]:focus,
|
|
11025
11007
|
.list-group-title [href]:focus {
|
|
11026
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11008
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11027
11009
|
outline: 0;
|
|
11028
11010
|
}
|
|
11029
11011
|
.list-group-subtitle {
|
|
@@ -11050,7 +11032,7 @@ label.custom-control-label {
|
|
|
11050
11032
|
}
|
|
11051
11033
|
.list-group-subtitle[href]:focus,
|
|
11052
11034
|
.list-group-subtitle [href]:focus {
|
|
11053
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11035
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11054
11036
|
outline: 0;
|
|
11055
11037
|
}
|
|
11056
11038
|
.list-group-text {
|
|
@@ -11078,7 +11060,7 @@ label.custom-control-label {
|
|
|
11078
11060
|
}
|
|
11079
11061
|
.list-group-text[href]:focus,
|
|
11080
11062
|
.list-group-text [href]:focus {
|
|
11081
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11063
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11082
11064
|
outline: 0;
|
|
11083
11065
|
}
|
|
11084
11066
|
.list-group-subtext {
|
|
@@ -11106,7 +11088,7 @@ label.custom-control-label {
|
|
|
11106
11088
|
}
|
|
11107
11089
|
.list-group-subtext[href]:focus,
|
|
11108
11090
|
.list-group-subtext [href]:focus {
|
|
11109
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
11091
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11110
11092
|
outline: 0;
|
|
11111
11093
|
}
|
|
11112
11094
|
.show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
|
|
@@ -11457,8 +11439,8 @@ label.custom-control-label {
|
|
|
11457
11439
|
}
|
|
11458
11440
|
.list-group-notification .list-group-item-primary {
|
|
11459
11441
|
background-color: #fff;
|
|
11460
|
-
border-bottom-left-radius:
|
|
11461
|
-
border-top-left-radius:
|
|
11442
|
+
border-bottom-left-radius: 0px;
|
|
11443
|
+
border-top-left-radius: 0px;
|
|
11462
11444
|
box-shadow: inset 0.5rem 0 #80acff, inset -0.0625rem 0 #e7e7ed, inset 0 0.0625rem #e7e7ed, inset 0 -0.0625rem #e7e7ed;
|
|
11463
11445
|
}
|
|
11464
11446
|
.list-group-notification .list-group-item-primary.active {
|
|
@@ -12152,7 +12134,7 @@ label.custom-control-label {
|
|
|
12152
12134
|
align-items: center;
|
|
12153
12135
|
background-color: #f1f2f5;
|
|
12154
12136
|
border-radius: 100px;
|
|
12155
|
-
border-width:
|
|
12137
|
+
border-width: 0px;
|
|
12156
12138
|
color: #6b6c7e;
|
|
12157
12139
|
cursor: pointer;
|
|
12158
12140
|
display: flex;
|
|
@@ -12174,7 +12156,7 @@ label.custom-control-label {
|
|
|
12174
12156
|
}
|
|
12175
12157
|
.multi-step-icon:focus {
|
|
12176
12158
|
background-color: #f1f2f5;
|
|
12177
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12159
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12178
12160
|
color: #6b6c7e;
|
|
12179
12161
|
outline: 0;
|
|
12180
12162
|
text-decoration: none;
|
|
@@ -12307,10 +12289,10 @@ label.custom-control-label {
|
|
|
12307
12289
|
width: 100%;
|
|
12308
12290
|
}
|
|
12309
12291
|
.nav-link.btn-unstyled:focus, .nav-link.btn-unstyled.focus {
|
|
12310
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12292
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12311
12293
|
}
|
|
12312
12294
|
.nav-link.btn-unstyled:active:focus {
|
|
12313
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12295
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12314
12296
|
}
|
|
12315
12297
|
.nav-link.btn-unstyled:disabled, .nav-link.btn-unstyled.disabled {
|
|
12316
12298
|
opacity: 1;
|
|
@@ -12620,7 +12602,7 @@ label.custom-control-label {
|
|
|
12620
12602
|
}
|
|
12621
12603
|
.nav-tabs .nav-link:focus {
|
|
12622
12604
|
border-color: transparent;
|
|
12623
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12605
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12624
12606
|
outline: 0;
|
|
12625
12607
|
}
|
|
12626
12608
|
.nav-tabs .nav-link:active {
|
|
@@ -12718,7 +12700,7 @@ label.custom-control-label {
|
|
|
12718
12700
|
width: auto;
|
|
12719
12701
|
}
|
|
12720
12702
|
.nav-underline .nav-link:focus {
|
|
12721
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12703
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12722
12704
|
outline: 0;
|
|
12723
12705
|
}
|
|
12724
12706
|
.nav-underline .nav-link.active {
|
|
@@ -12845,13 +12827,13 @@ label.custom-control-label {
|
|
|
12845
12827
|
}
|
|
12846
12828
|
@media (max-width: 767.98px) {
|
|
12847
12829
|
.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
|
|
12830
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12849
12831
|
outline: 0;
|
|
12850
12832
|
}
|
|
12851
12833
|
}
|
|
12852
12834
|
@media (max-width: 767.98px) {
|
|
12853
12835
|
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler:active:focus {
|
|
12854
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
12836
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12855
12837
|
}
|
|
12856
12838
|
}
|
|
12857
12839
|
@media (max-width: 767.98px) {
|
|
@@ -12875,7 +12857,7 @@ label.custom-control-label {
|
|
|
12875
12857
|
}
|
|
12876
12858
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
12877
12859
|
background-color: rgba(39, 40, 51, 0.03);
|
|
12878
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
12860
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
12879
12861
|
color: #272833;
|
|
12880
12862
|
outline: 0;
|
|
12881
12863
|
}
|
|
@@ -13044,13 +13026,13 @@ label.custom-control-label {
|
|
|
13044
13026
|
}
|
|
13045
13027
|
@media (max-width: 991.98px) {
|
|
13046
13028
|
.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
|
|
13029
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
13048
13030
|
outline: 0;
|
|
13049
13031
|
}
|
|
13050
13032
|
}
|
|
13051
13033
|
@media (max-width: 991.98px) {
|
|
13052
13034
|
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:active:focus {
|
|
13053
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
13035
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
13054
13036
|
}
|
|
13055
13037
|
}
|
|
13056
13038
|
@media (max-width: 991.98px) {
|
|
@@ -13074,7 +13056,7 @@ label.custom-control-label {
|
|
|
13074
13056
|
}
|
|
13075
13057
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13076
13058
|
background-color: rgba(39, 40, 51, 0.03);
|
|
13077
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
13059
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
13078
13060
|
color: #272833;
|
|
13079
13061
|
outline: 0;
|
|
13080
13062
|
}
|
|
@@ -14992,7 +14974,7 @@ label.custom-control-label {
|
|
|
14992
14974
|
}
|
|
14993
14975
|
.application-bar .navbar-nav .nav-link:focus,
|
|
14994
14976
|
.application-bar .navbar-nav .btn-unstyled:focus {
|
|
14995
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
14977
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
14996
14978
|
}
|
|
14997
14979
|
.application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled,
|
|
14998
14980
|
.application-bar .navbar-nav .btn-unstyled:disabled,
|
|
@@ -15010,7 +14992,7 @@ label.custom-control-label {
|
|
|
15010
14992
|
}
|
|
15011
14993
|
}
|
|
15012
14994
|
.application-bar .navbar-brand:focus {
|
|
15013
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
14995
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
15014
14996
|
}
|
|
15015
14997
|
.application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
|
|
15016
14998
|
box-shadow: none;
|
|
@@ -16059,7 +16041,7 @@ label.custom-control-label {
|
|
|
16059
16041
|
}
|
|
16060
16042
|
.management-bar .navbar-nav .nav-link:focus,
|
|
16061
16043
|
.management-bar .navbar-nav .btn-unstyled:focus {
|
|
16062
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16044
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16063
16045
|
}
|
|
16064
16046
|
.management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled,
|
|
16065
16047
|
.management-bar .navbar-nav .btn-unstyled:disabled,
|
|
@@ -16077,7 +16059,7 @@ label.custom-control-label {
|
|
|
16077
16059
|
}
|
|
16078
16060
|
}
|
|
16079
16061
|
.management-bar .navbar-brand:focus {
|
|
16080
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16062
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16081
16063
|
}
|
|
16082
16064
|
.management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
|
|
16083
16065
|
box-shadow: none;
|
|
@@ -16624,12 +16606,12 @@ label.custom-control-label {
|
|
|
16624
16606
|
}
|
|
16625
16607
|
.navigation-bar .navbar-nav .nav-link,
|
|
16626
16608
|
.navigation-bar .navbar-nav .btn-unstyled {
|
|
16627
|
-
border-radius:
|
|
16609
|
+
border-radius: 0px;
|
|
16628
16610
|
outline: 0;
|
|
16629
16611
|
}
|
|
16630
16612
|
.navigation-bar .navbar-nav .nav-link:focus,
|
|
16631
16613
|
.navigation-bar .navbar-nav .btn-unstyled:focus {
|
|
16632
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16614
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16633
16615
|
}
|
|
16634
16616
|
.navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled,
|
|
16635
16617
|
.navigation-bar .navbar-nav .btn-unstyled:disabled,
|
|
@@ -16637,11 +16619,11 @@ label.custom-control-label {
|
|
|
16637
16619
|
box-shadow: none;
|
|
16638
16620
|
}
|
|
16639
16621
|
.navigation-bar .navbar-brand {
|
|
16640
|
-
border-radius:
|
|
16622
|
+
border-radius: 0px;
|
|
16641
16623
|
outline: 0;
|
|
16642
16624
|
}
|
|
16643
16625
|
.navigation-bar .navbar-brand:focus {
|
|
16644
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16626
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16645
16627
|
}
|
|
16646
16628
|
.navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
|
|
16647
16629
|
box-shadow: none;
|
|
@@ -16889,7 +16871,7 @@ label.custom-control-label {
|
|
|
16889
16871
|
z-index: 2;
|
|
16890
16872
|
}
|
|
16891
16873
|
.page-link:focus {
|
|
16892
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16874
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16893
16875
|
outline: 0;
|
|
16894
16876
|
z-index: 4;
|
|
16895
16877
|
background-color: rgba(0, 0, 0, 0.02);
|
|
@@ -17009,7 +16991,7 @@ label.custom-control-label {
|
|
|
17009
16991
|
}
|
|
17010
16992
|
.pagination-items-per-page > a:focus,
|
|
17011
16993
|
.pagination-items-per-page > button:focus {
|
|
17012
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
16994
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
17013
16995
|
outline: 0;
|
|
17014
16996
|
background-color: rgba(0, 0, 0, 0.02);
|
|
17015
16997
|
border-color: transparent;
|
|
@@ -17197,7 +17179,7 @@ label.custom-control-label {
|
|
|
17197
17179
|
}
|
|
17198
17180
|
|
|
17199
17181
|
.panel-header {
|
|
17200
|
-
border-bottom:
|
|
17182
|
+
border-bottom: 0px solid transparent;
|
|
17201
17183
|
border-top-left-radius: calc(
|
|
17202
17184
|
0.25rem - 1px
|
|
17203
17185
|
);
|
|
@@ -17245,7 +17227,7 @@ label.custom-control-label {
|
|
|
17245
17227
|
}
|
|
17246
17228
|
.panel-header-link:focus {
|
|
17247
17229
|
z-index: 1;
|
|
17248
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
17230
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
17249
17231
|
outline: 0;
|
|
17250
17232
|
}
|
|
17251
17233
|
.panel-header-link .collapse-icon {
|
|
@@ -17263,7 +17245,7 @@ label.custom-control-label {
|
|
|
17263
17245
|
border-bottom-right-radius: calc(
|
|
17264
17246
|
0.25rem - 1px
|
|
17265
17247
|
);
|
|
17266
|
-
border-top:
|
|
17248
|
+
border-top: 0px solid transparent;
|
|
17267
17249
|
padding: 0.75rem 1.25rem;
|
|
17268
17250
|
}
|
|
17269
17251
|
|
|
@@ -17311,7 +17293,7 @@ label.custom-control-label {
|
|
|
17311
17293
|
border-bottom-width: 0;
|
|
17312
17294
|
}
|
|
17313
17295
|
.panel-group .panel-header + .panel-collapse > .panel-body {
|
|
17314
|
-
border-top:
|
|
17296
|
+
border-top: 0px solid transparent;
|
|
17315
17297
|
}
|
|
17316
17298
|
.panel-group .panel-unstyled {
|
|
17317
17299
|
margin-bottom: 1.5rem;
|
|
@@ -17446,13 +17428,13 @@ label.custom-control-label {
|
|
|
17446
17428
|
}
|
|
17447
17429
|
.panel-unstyled {
|
|
17448
17430
|
background-color: transparent;
|
|
17449
|
-
border-radius:
|
|
17450
|
-
border-width:
|
|
17431
|
+
border-radius: 0px;
|
|
17432
|
+
border-width: 0px;
|
|
17451
17433
|
margin-bottom: 1.5rem;
|
|
17452
17434
|
}
|
|
17453
17435
|
.panel-unstyled .panel-header {
|
|
17454
17436
|
border-color: #a7a9bc;
|
|
17455
|
-
border-radius:
|
|
17437
|
+
border-radius: 0px;
|
|
17456
17438
|
border-style: solid;
|
|
17457
17439
|
border-width: 0 0 1px 0;
|
|
17458
17440
|
padding-left: 0;
|
|
@@ -18212,7 +18194,7 @@ a.sheet-subtitle:hover {
|
|
|
18212
18194
|
text-decoration: none;
|
|
18213
18195
|
}
|
|
18214
18196
|
a.sheet-subtitle:focus {
|
|
18215
|
-
box-shadow: 0 0 0 0.25rem #fff
|
|
18197
|
+
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
|
|
18216
18198
|
outline: 0;
|
|
18217
18199
|
}
|
|
18218
18200
|
.sheet-tertiary-title {
|
|
@@ -18265,7 +18247,7 @@ a.sheet-subtitle:focus {
|
|
|
18265
18247
|
}
|
|
18266
18248
|
|
|
18267
18249
|
.sheet-dataset-content .sheet-header {
|
|
18268
|
-
border-width:
|
|
18250
|
+
border-width: 0px;
|
|
18269
18251
|
margin: -1.5rem -1.5rem 1.5rem;
|
|
18270
18252
|
padding: 1rem 1.5rem;
|
|
18271
18253
|
}
|
|
@@ -18517,7 +18499,7 @@ a.sheet-subtitle:focus {
|
|
|
18517
18499
|
background-color: #fff;
|
|
18518
18500
|
border-color: #e7e7ed;
|
|
18519
18501
|
border-bottom-width: 0;
|
|
18520
|
-
border-left-width:
|
|
18502
|
+
border-left-width: 0px;
|
|
18521
18503
|
border-right-width: 0;
|
|
18522
18504
|
border-top-width: 0;
|
|
18523
18505
|
box-shadow: -0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
@@ -18541,7 +18523,7 @@ a.sheet-subtitle:focus {
|
|
|
18541
18523
|
color: #272833;
|
|
18542
18524
|
}
|
|
18543
18525
|
.sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
18544
|
-
box-shadow: 0 0 0 0.25rem #fff
|
|
18526
|
+
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
|
|
18545
18527
|
}
|
|
18546
18528
|
.sidebar-light .component-navigation-bar {
|
|
18547
18529
|
background-color: #fff;
|
|
@@ -18633,7 +18615,7 @@ a.sheet-subtitle:focus {
|
|
|
18633
18615
|
color: #fff;
|
|
18634
18616
|
}
|
|
18635
18617
|
.sidebar-dark .nav-nested .nav-link:focus {
|
|
18636
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
18618
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
18637
18619
|
outline: 0;
|
|
18638
18620
|
}
|
|
18639
18621
|
.sidebar-dark .nav-nested .nav-link:active {
|
|
@@ -18827,7 +18809,7 @@ caption {
|
|
|
18827
18809
|
.table thead th {
|
|
18828
18810
|
background-color: #fff;
|
|
18829
18811
|
border-bottom: 1px solid #e7e7ed;
|
|
18830
|
-
border-top-width:
|
|
18812
|
+
border-top-width: 0px;
|
|
18831
18813
|
vertical-align: bottom;
|
|
18832
18814
|
}
|
|
18833
18815
|
.table thead th a {
|
|
@@ -18844,7 +18826,7 @@ caption {
|
|
|
18844
18826
|
color: #272833;
|
|
18845
18827
|
}
|
|
18846
18828
|
.table thead th a:focus {
|
|
18847
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
18829
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
18848
18830
|
outline: 0;
|
|
18849
18831
|
}
|
|
18850
18832
|
.table th {
|
|
@@ -18860,8 +18842,8 @@ caption {
|
|
|
18860
18842
|
.table td {
|
|
18861
18843
|
background-clip: padding-box;
|
|
18862
18844
|
border-bottom-width: 0.0625rem;
|
|
18863
|
-
border-left-width:
|
|
18864
|
-
border-right-width:
|
|
18845
|
+
border-left-width: 0px;
|
|
18846
|
+
border-right-width: 0px;
|
|
18865
18847
|
border-top-width: 0.0625rem;
|
|
18866
18848
|
border-color: #e7e7ed;
|
|
18867
18849
|
border-style: solid;
|
|
@@ -18887,7 +18869,7 @@ caption {
|
|
|
18887
18869
|
background-color: #fff;
|
|
18888
18870
|
}
|
|
18889
18871
|
.table tbody + tbody {
|
|
18890
|
-
border-top: 0.
|
|
18872
|
+
border-top: calc(2 * 0.0625rem) solid #e7e7ed;
|
|
18891
18873
|
}
|
|
18892
18874
|
.table tfoot {
|
|
18893
18875
|
background-color: #fff;
|
|
@@ -18931,8 +18913,7 @@ caption {
|
|
|
18931
18913
|
}
|
|
18932
18914
|
.table-bordered thead td,
|
|
18933
18915
|
.table-bordered thead th {
|
|
18934
|
-
border-bottom-width: 0.
|
|
18935
|
-
border-top-width: 0.0625rem;
|
|
18916
|
+
border-bottom-width: calc(2 * 0.0625rem);
|
|
18936
18917
|
}
|
|
18937
18918
|
.table-bordered td,
|
|
18938
18919
|
.table-bordered th {
|
|
@@ -19228,7 +19209,7 @@ caption {
|
|
|
19228
19209
|
}
|
|
19229
19210
|
.table-title[href]:focus,
|
|
19230
19211
|
.table-title [href]:focus {
|
|
19231
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19212
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19232
19213
|
outline: 0;
|
|
19233
19214
|
}
|
|
19234
19215
|
.table-link {
|
|
@@ -19247,7 +19228,7 @@ caption {
|
|
|
19247
19228
|
color: #272833;
|
|
19248
19229
|
}
|
|
19249
19230
|
.table-link:focus {
|
|
19250
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19231
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19251
19232
|
outline: 0;
|
|
19252
19233
|
}
|
|
19253
19234
|
.table-action-link {
|
|
@@ -19275,7 +19256,7 @@ caption {
|
|
|
19275
19256
|
.table-action-link:focus {
|
|
19276
19257
|
background-color: rgba(0, 0, 0, 0.02);
|
|
19277
19258
|
color: #272833;
|
|
19278
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19259
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19279
19260
|
outline: 0;
|
|
19280
19261
|
}
|
|
19281
19262
|
.table-action-link:active {
|
|
@@ -19556,7 +19537,7 @@ caption {
|
|
|
19556
19537
|
}
|
|
19557
19538
|
.table-list-title[href]:focus,
|
|
19558
19539
|
.table-list-title [href]:focus {
|
|
19559
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19540
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19560
19541
|
outline: 0;
|
|
19561
19542
|
}
|
|
19562
19543
|
.table-list-link {
|
|
@@ -19575,7 +19556,7 @@ caption {
|
|
|
19575
19556
|
color: #272833;
|
|
19576
19557
|
}
|
|
19577
19558
|
.table-list-link:focus {
|
|
19578
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19559
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19579
19560
|
outline: 0;
|
|
19580
19561
|
}
|
|
19581
19562
|
.table-list-action-link {
|
|
@@ -19602,7 +19583,7 @@ caption {
|
|
|
19602
19583
|
.table-list-action-link:focus {
|
|
19603
19584
|
background-color: rgba(0, 0, 0, 0.02);
|
|
19604
19585
|
color: #272833;
|
|
19605
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
19586
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19606
19587
|
outline: 0;
|
|
19607
19588
|
}
|
|
19608
19589
|
.table-list-action-link:active {
|
|
@@ -20201,8 +20182,8 @@ caption {
|
|
|
20201
20182
|
padding-right: 0.25rem;
|
|
20202
20183
|
}
|
|
20203
20184
|
.subnav-tbar-primary .tbar-link-monospaced {
|
|
20204
|
-
border-radius:
|
|
20205
|
-
border-width:
|
|
20185
|
+
border-radius: 0px;
|
|
20186
|
+
border-width: 0px;
|
|
20206
20187
|
height: 3rem;
|
|
20207
20188
|
margin-bottom: -0.625rem;
|
|
20208
20189
|
margin-top: -0.625rem;
|
|
@@ -20290,8 +20271,8 @@ caption {
|
|
|
20290
20271
|
}
|
|
20291
20272
|
.tbar-stacked .tbar-btn-monospaced {
|
|
20292
20273
|
border-color: transparent;
|
|
20293
|
-
border-radius:
|
|
20294
|
-
border-width:
|
|
20274
|
+
border-radius: 0px;
|
|
20275
|
+
border-width: 0px;
|
|
20295
20276
|
color: inherit;
|
|
20296
20277
|
height: 2.5rem;
|
|
20297
20278
|
margin-bottom: 0;
|
|
@@ -20305,10 +20286,10 @@ caption {
|
|
|
20305
20286
|
width: 2.5rem;
|
|
20306
20287
|
}
|
|
20307
20288
|
.tbar-stacked .tbar-btn-monospaced:focus, .tbar-stacked .tbar-btn-monospaced.focus {
|
|
20308
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
20289
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
20309
20290
|
}
|
|
20310
20291
|
.tbar-stacked .tbar-btn-monospaced:active:focus {
|
|
20311
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
20292
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
20312
20293
|
}
|
|
20313
20294
|
.tbar-stacked .tbar-btn-monospaced .c-inner {
|
|
20314
20295
|
margin-bottom: 0;
|
|
@@ -20321,7 +20302,7 @@ caption {
|
|
|
20321
20302
|
}
|
|
20322
20303
|
.tbar-light {
|
|
20323
20304
|
background-color: #fff;
|
|
20324
|
-
box-shadow: inset 1px 0 0 0 #f1f2f5
|
|
20305
|
+
box-shadow: inset 1px 0 0 0 #f1f2f5, inset -1px 0 0 0 #f1f2f5;
|
|
20325
20306
|
color: #6b6c7e;
|
|
20326
20307
|
}
|
|
20327
20308
|
.tbar-light .tbar-divider-before::before {
|
|
@@ -20356,7 +20337,7 @@ caption {
|
|
|
20356
20337
|
}
|
|
20357
20338
|
.tbar-dark-l2 {
|
|
20358
20339
|
background-color: #393a4a;
|
|
20359
|
-
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06)
|
|
20340
|
+
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
20341
|
border-color: rgba(255, 255, 255, 0.06);
|
|
20361
20342
|
color: #a7a9bc;
|
|
20362
20343
|
}
|
|
@@ -20392,7 +20373,7 @@ caption {
|
|
|
20392
20373
|
}
|
|
20393
20374
|
.tbar-dark-d1 {
|
|
20394
20375
|
background-color: #1c1c24;
|
|
20395
|
-
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06)
|
|
20376
|
+
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
20377
|
color: #a7a9bc;
|
|
20397
20378
|
}
|
|
20398
20379
|
.tbar-dark-d1 .tbar-divider-before::before {
|
|
@@ -20845,7 +20826,7 @@ caption {
|
|
|
20845
20826
|
opacity: 0;
|
|
20846
20827
|
}
|
|
20847
20828
|
.toggle-switch-check:focus ~ .toggle-switch-bar::before {
|
|
20848
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
20829
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
20849
20830
|
}
|
|
20850
20831
|
.toggle-switch-check[disabled] ~ .toggle-switch-bar, .toggle-switch-check:disabled ~ .toggle-switch-bar {
|
|
20851
20832
|
cursor: not-allowed;
|
|
@@ -21283,10 +21264,10 @@ caption {
|
|
|
21283
21264
|
width: 24px;
|
|
21284
21265
|
}
|
|
21285
21266
|
.treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
|
|
21286
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
21267
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21287
21268
|
}
|
|
21288
21269
|
.treeview .btn-monospaced:active:focus {
|
|
21289
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
21270
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21290
21271
|
}
|
|
21291
21272
|
.treeview .custom-control {
|
|
21292
21273
|
margin-left: 4px;
|
|
@@ -21390,7 +21371,7 @@ caption {
|
|
|
21390
21371
|
text-decoration: none;
|
|
21391
21372
|
}
|
|
21392
21373
|
.treeview-link:focus {
|
|
21393
|
-
box-shadow: inset 0 0 0 0.125rem #80acff
|
|
21374
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21394
21375
|
outline: 0;
|
|
21395
21376
|
}
|
|
21396
21377
|
.treeview-link:disabled, .treeview-link.disabled {
|
|
@@ -21520,7 +21501,7 @@ caption {
|
|
|
21520
21501
|
appearance: none;
|
|
21521
21502
|
background-color: transparent;
|
|
21522
21503
|
border-radius: 0.1875rem;
|
|
21523
|
-
border-width:
|
|
21504
|
+
border-width: 0px;
|
|
21524
21505
|
color: #272833;
|
|
21525
21506
|
cursor: pointer;
|
|
21526
21507
|
display: inline-flex;
|
|
@@ -21550,7 +21531,7 @@ caption {
|
|
|
21550
21531
|
outline: 0;
|
|
21551
21532
|
}
|
|
21552
21533
|
.close:focus {
|
|
21553
|
-
box-shadow: 0 0 0 0.125rem #fff
|
|
21534
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
21554
21535
|
outline: 0;
|
|
21555
21536
|
opacity: 0.75;
|
|
21556
21537
|
}
|
|
@@ -21566,7 +21547,7 @@ caption {
|
|
|
21566
21547
|
}
|
|
21567
21548
|
|
|
21568
21549
|
.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
|
|
21550
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21570
21551
|
border-color: #80acff;
|
|
21571
21552
|
outline: 0;
|
|
21572
21553
|
}
|
|
@@ -24825,7 +24806,7 @@ button.bg-dark:focus {
|
|
|
24825
24806
|
}
|
|
24826
24807
|
|
|
24827
24808
|
.rounded-0 {
|
|
24828
|
-
border-radius:
|
|
24809
|
+
border-radius: 0px !important;
|
|
24829
24810
|
}
|
|
24830
24811
|
|
|
24831
24812
|
.clearfix::after {
|