@clayui/css 3.83.0 → 3.84.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 +113 -79
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +49 -34
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +100 -77
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_sidebar.scss +4 -0
- package/src/scss/mixins/_forms.scss +2 -2
- package/src/scss/mixins/_links.scss +1 -0
- package/src/scss/mixins/_sidebar.scss +16 -2
- package/src/scss/variables/_forms.scss +1 -0
- package/src/scss/variables/_sidebar.scss +1 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.84.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>
|
|
@@ -3408,7 +3408,8 @@ input[type=button].btn-block {
|
|
|
3408
3408
|
.alert-link.btn-unstyled:hover {
|
|
3409
3409
|
text-decoration: none;
|
|
3410
3410
|
}
|
|
3411
|
-
.alert-link:focus,
|
|
3411
|
+
.alert-link.focus, .alert-link:focus,
|
|
3412
|
+
.alert-link.btn-unstyled.focus,
|
|
3412
3413
|
.alert-link.btn-unstyled:focus {
|
|
3413
3414
|
text-decoration: none;
|
|
3414
3415
|
}
|
|
@@ -4058,7 +4059,7 @@ input[type=button].btn-block {
|
|
|
4058
4059
|
.badge[href]:hover, .badge[type]:hover {
|
|
4059
4060
|
text-decoration: none;
|
|
4060
4061
|
}
|
|
4061
|
-
.badge[href]:focus, .badge[type]:focus {
|
|
4062
|
+
.badge[href].focus, .badge[href]:focus, .badge[type].focus, .badge[type]:focus {
|
|
4062
4063
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
4063
4064
|
outline: 0;
|
|
4064
4065
|
}
|
|
@@ -4069,7 +4070,7 @@ input[type=button].btn-block {
|
|
|
4069
4070
|
.badge a:hover {
|
|
4070
4071
|
text-decoration: none;
|
|
4071
4072
|
}
|
|
4072
|
-
.badge a:focus {
|
|
4073
|
+
.badge a.focus, .badge a:focus {
|
|
4073
4074
|
text-decoration: none;
|
|
4074
4075
|
}
|
|
4075
4076
|
.badge > .c-inner {
|
|
@@ -4184,7 +4185,7 @@ input[type=button].btn-block {
|
|
|
4184
4185
|
background-color: #0b5fff;
|
|
4185
4186
|
color: #fff;
|
|
4186
4187
|
}
|
|
4187
|
-
[href].badge-primary:focus, [type].badge-primary:focus {
|
|
4188
|
+
[href].focus.badge-primary, [href].badge-primary:focus, [type].focus.badge-primary, [type].badge-primary:focus {
|
|
4188
4189
|
background-color: #0b5fff;
|
|
4189
4190
|
box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.5);
|
|
4190
4191
|
color: #fff;
|
|
@@ -4197,7 +4198,7 @@ input[type=button].btn-block {
|
|
|
4197
4198
|
background-color: #e7e7ed;
|
|
4198
4199
|
color: #272833;
|
|
4199
4200
|
}
|
|
4200
|
-
[href].badge-secondary:focus, [type].badge-secondary:focus {
|
|
4201
|
+
[href].focus.badge-secondary, [href].badge-secondary:focus, [type].focus.badge-secondary, [type].badge-secondary:focus {
|
|
4201
4202
|
background-color: #e7e7ed;
|
|
4202
4203
|
color: #272833;
|
|
4203
4204
|
box-shadow: 0 0 0 0.2rem rgba(231, 231, 237, 0.5);
|
|
@@ -4213,7 +4214,7 @@ input[type=button].btn-block {
|
|
|
4213
4214
|
background-color: #287d3c;
|
|
4214
4215
|
color: #fff;
|
|
4215
4216
|
}
|
|
4216
|
-
[href].badge-success:focus, [type].badge-success:focus {
|
|
4217
|
+
[href].focus.badge-success, [href].badge-success:focus, [type].focus.badge-success, [type].badge-success:focus {
|
|
4217
4218
|
background-color: #287d3c;
|
|
4218
4219
|
color: #fff;
|
|
4219
4220
|
box-shadow: 0 0 0 0.2rem rgba(40, 125, 60, 0.5);
|
|
@@ -4226,7 +4227,7 @@ input[type=button].btn-block {
|
|
|
4226
4227
|
background-color: #2e5aac;
|
|
4227
4228
|
color: #fff;
|
|
4228
4229
|
}
|
|
4229
|
-
[href].badge-info:focus, [type].badge-info:focus {
|
|
4230
|
+
[href].focus.badge-info, [href].badge-info:focus, [type].focus.badge-info, [type].badge-info:focus {
|
|
4230
4231
|
background-color: #2e5aac;
|
|
4231
4232
|
color: #fff;
|
|
4232
4233
|
box-shadow: 0 0 0 0.2rem rgba(46, 90, 172, 0.5);
|
|
@@ -4239,7 +4240,7 @@ input[type=button].btn-block {
|
|
|
4239
4240
|
background-color: #b95000;
|
|
4240
4241
|
color: #fff;
|
|
4241
4242
|
}
|
|
4242
|
-
[href].badge-warning:focus, [type].badge-warning:focus {
|
|
4243
|
+
[href].focus.badge-warning, [href].badge-warning:focus, [type].focus.badge-warning, [type].badge-warning:focus {
|
|
4243
4244
|
background-color: #b95000;
|
|
4244
4245
|
color: #fff;
|
|
4245
4246
|
box-shadow: 0 0 0 0.2rem rgba(185, 80, 0, 0.5);
|
|
@@ -4252,7 +4253,7 @@ input[type=button].btn-block {
|
|
|
4252
4253
|
background-color: #da1414;
|
|
4253
4254
|
color: #fff;
|
|
4254
4255
|
}
|
|
4255
|
-
[href].badge-danger:focus, [type].badge-danger:focus {
|
|
4256
|
+
[href].focus.badge-danger, [href].badge-danger:focus, [type].focus.badge-danger, [type].badge-danger:focus {
|
|
4256
4257
|
background-color: #da1414;
|
|
4257
4258
|
color: #fff;
|
|
4258
4259
|
box-shadow: 0 0 0 0.2rem rgba(218, 20, 20, 0.5);
|
|
@@ -4265,7 +4266,7 @@ input[type=button].btn-block {
|
|
|
4265
4266
|
background-color: #f1f2f5;
|
|
4266
4267
|
color: #272833;
|
|
4267
4268
|
}
|
|
4268
|
-
[href].badge-light:focus, [type].badge-light:focus {
|
|
4269
|
+
[href].focus.badge-light, [href].badge-light:focus, [type].focus.badge-light, [type].badge-light:focus {
|
|
4269
4270
|
background-color: #f1f2f5;
|
|
4270
4271
|
color: #272833;
|
|
4271
4272
|
box-shadow: 0 0 0 0.2rem rgba(241, 242, 245, 0.5);
|
|
@@ -4281,7 +4282,7 @@ input[type=button].btn-block {
|
|
|
4281
4282
|
background-color: #272833;
|
|
4282
4283
|
color: #fff;
|
|
4283
4284
|
}
|
|
4284
|
-
[href].badge-dark:focus, [type].badge-dark:focus {
|
|
4285
|
+
[href].focus.badge-dark, [href].badge-dark:focus, [type].focus.badge-dark, [type].badge-dark:focus {
|
|
4285
4286
|
background-color: #272833;
|
|
4286
4287
|
color: #fff;
|
|
4287
4288
|
box-shadow: 0 0 0 0.2rem rgba(39, 40, 51, 0.5);
|
|
@@ -4313,7 +4314,7 @@ input[type=button].btn-block {
|
|
|
4313
4314
|
color: #6b6c7e;
|
|
4314
4315
|
text-decoration: underline;
|
|
4315
4316
|
}
|
|
4316
|
-
.breadcrumb-link:focus {
|
|
4317
|
+
.breadcrumb-link.focus, .breadcrumb-link:focus {
|
|
4317
4318
|
color: #6b6c7e;
|
|
4318
4319
|
text-decoration: underline;
|
|
4319
4320
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
@@ -4618,7 +4619,7 @@ input[type=button].btn-block {
|
|
|
4618
4619
|
.label[href]:hover, .label[type]:hover, .label[tabindex]:hover {
|
|
4619
4620
|
text-decoration: underline;
|
|
4620
4621
|
}
|
|
4621
|
-
.label[href]:focus, .label[type]:focus, .label[tabindex]:focus {
|
|
4622
|
+
.label[href].focus, .label[href]:focus, .label[type].focus, .label[type]:focus, .label[tabindex].focus, .label[tabindex]:focus {
|
|
4622
4623
|
text-decoration: underline;
|
|
4623
4624
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
4624
4625
|
}
|
|
@@ -4633,7 +4634,8 @@ input[type=button].btn-block {
|
|
|
4633
4634
|
color: inherit;
|
|
4634
4635
|
text-decoration: underline;
|
|
4635
4636
|
}
|
|
4636
|
-
.label a:focus,
|
|
4637
|
+
.label a.focus, .label a:focus,
|
|
4638
|
+
.label .btn-unstyled.focus,
|
|
4637
4639
|
.label .btn-unstyled:focus {
|
|
4638
4640
|
color: inherit;
|
|
4639
4641
|
text-decoration: underline;
|
|
@@ -4787,7 +4789,7 @@ input[type=button].btn-block {
|
|
|
4787
4789
|
border-color: #80acff;
|
|
4788
4790
|
color: #004ad7;
|
|
4789
4791
|
}
|
|
4790
|
-
[href].label-primary:focus, [type].label-primary:focus, [tabindex].label-primary:focus {
|
|
4792
|
+
[href].focus.label-primary, [href].label-primary:focus, [type].focus.label-primary, [type].label-primary:focus, [tabindex].focus.label-primary, [tabindex].label-primary:focus {
|
|
4791
4793
|
color: #004ad7;
|
|
4792
4794
|
}
|
|
4793
4795
|
.label-primary a:hover,
|
|
@@ -4809,7 +4811,7 @@ input[type=button].btn-block {
|
|
|
4809
4811
|
border-color: #cdced9;
|
|
4810
4812
|
color: #272833;
|
|
4811
4813
|
}
|
|
4812
|
-
[href].label-secondary:focus, [type].label-secondary:focus, [tabindex].label-secondary:focus {
|
|
4814
|
+
[href].focus.label-secondary, [href].label-secondary:focus, [type].focus.label-secondary, [type].label-secondary:focus, [tabindex].focus.label-secondary, [tabindex].label-secondary:focus {
|
|
4813
4815
|
color: #272833;
|
|
4814
4816
|
}
|
|
4815
4817
|
.label-secondary a:hover,
|
|
@@ -4831,7 +4833,7 @@ input[type=button].btn-block {
|
|
|
4831
4833
|
border-color: #5aca75;
|
|
4832
4834
|
color: #1c5629;
|
|
4833
4835
|
}
|
|
4834
|
-
[href].label-success:focus, [type].label-success:focus, [tabindex].label-success:focus {
|
|
4836
|
+
[href].focus.label-success, [href].label-success:focus, [type].focus.label-success, [type].label-success:focus, [tabindex].focus.label-success, [tabindex].label-success:focus {
|
|
4835
4837
|
color: #1c5629;
|
|
4836
4838
|
}
|
|
4837
4839
|
.label-success a:hover,
|
|
@@ -4853,7 +4855,7 @@ input[type=button].btn-block {
|
|
|
4853
4855
|
border-color: #89a7e0;
|
|
4854
4856
|
color: #234584;
|
|
4855
4857
|
}
|
|
4856
|
-
[href].label-info:focus, [type].label-info:focus, [tabindex].label-info:focus {
|
|
4858
|
+
[href].focus.label-info, [href].label-info:focus, [type].focus.label-info, [type].label-info:focus, [tabindex].focus.label-info, [tabindex].label-info:focus {
|
|
4857
4859
|
color: #234584;
|
|
4858
4860
|
}
|
|
4859
4861
|
.label-info a:hover,
|
|
@@ -4875,7 +4877,7 @@ input[type=button].btn-block {
|
|
|
4875
4877
|
border-color: #ff8f39;
|
|
4876
4878
|
color: #863a00;
|
|
4877
4879
|
}
|
|
4878
|
-
[href].label-warning:focus, [type].label-warning:focus, [tabindex].label-warning:focus {
|
|
4880
|
+
[href].focus.label-warning, [href].label-warning:focus, [type].focus.label-warning, [type].label-warning:focus, [tabindex].focus.label-warning, [tabindex].label-warning:focus {
|
|
4879
4881
|
color: #863a00;
|
|
4880
4882
|
}
|
|
4881
4883
|
.label-warning a:hover,
|
|
@@ -4897,7 +4899,7 @@ input[type=button].btn-block {
|
|
|
4897
4899
|
border-color: #f48989;
|
|
4898
4900
|
color: #ab1010;
|
|
4899
4901
|
}
|
|
4900
|
-
[href].label-danger:focus, [type].label-danger:focus, [tabindex].label-danger:focus {
|
|
4902
|
+
[href].focus.label-danger, [href].label-danger:focus, [type].focus.label-danger, [type].label-danger:focus, [tabindex].focus.label-danger, [tabindex].label-danger:focus {
|
|
4901
4903
|
color: #ab1010;
|
|
4902
4904
|
}
|
|
4903
4905
|
.label-danger a:hover,
|
|
@@ -4919,7 +4921,7 @@ input[type=button].btn-block {
|
|
|
4919
4921
|
border-color: #272833;
|
|
4920
4922
|
color: #393a4a;
|
|
4921
4923
|
}
|
|
4922
|
-
[href].label-dark:focus, [type].label-dark:focus, [tabindex].label-dark:focus {
|
|
4924
|
+
[href].focus.label-dark, [href].label-dark:focus, [type].focus.label-dark, [type].label-dark:focus, [tabindex].focus.label-dark, [tabindex].label-dark:focus {
|
|
4923
4925
|
color: #393a4a;
|
|
4924
4926
|
}
|
|
4925
4927
|
.label-dark a:hover,
|
|
@@ -4941,7 +4943,7 @@ input[type=button].btn-block {
|
|
|
4941
4943
|
border-color: #f1f2f5;
|
|
4942
4944
|
color: #d3d6e0;
|
|
4943
4945
|
}
|
|
4944
|
-
[href].label-light:focus, [type].label-light:focus, [tabindex].label-light:focus {
|
|
4946
|
+
[href].focus.label-light, [href].label-light:focus, [type].focus.label-light, [type].label-light:focus, [tabindex].focus.label-light, [tabindex].label-light:focus {
|
|
4945
4947
|
color: #d3d6e0;
|
|
4946
4948
|
}
|
|
4947
4949
|
.label-light a:hover,
|
|
@@ -6836,7 +6838,7 @@ input[type=button].btn-block {
|
|
|
6836
6838
|
color: inherit;
|
|
6837
6839
|
text-decoration: inherit;
|
|
6838
6840
|
}
|
|
6839
|
-
.dropdown-item-indicator-text-start:focus {
|
|
6841
|
+
.dropdown-item-indicator-text-start.focus, .dropdown-item-indicator-text-start:focus {
|
|
6840
6842
|
color: inherit;
|
|
6841
6843
|
text-decoration: inherit;
|
|
6842
6844
|
}
|
|
@@ -6891,7 +6893,7 @@ input[type=button].btn-block {
|
|
|
6891
6893
|
color: inherit;
|
|
6892
6894
|
text-decoration: inherit;
|
|
6893
6895
|
}
|
|
6894
|
-
.dropdown-item-indicator-text-end:focus {
|
|
6896
|
+
.dropdown-item-indicator-text-end.focus, .dropdown-item-indicator-text-end:focus {
|
|
6895
6897
|
color: inherit;
|
|
6896
6898
|
text-decoration: inherit;
|
|
6897
6899
|
}
|
|
@@ -7589,6 +7591,9 @@ select.form-control:disabled, select.form-control.disabled {
|
|
|
7589
7591
|
select.form-control:disabled > option, select.form-control.disabled > option {
|
|
7590
7592
|
cursor: not-allowed;
|
|
7591
7593
|
}
|
|
7594
|
+
select.form-control option {
|
|
7595
|
+
cursor: pointer;
|
|
7596
|
+
}
|
|
7592
7597
|
select.form-control::-ms-expand {
|
|
7593
7598
|
display: none;
|
|
7594
7599
|
}
|
|
@@ -7623,6 +7628,7 @@ select.form-control:focus::-ms-value {
|
|
|
7623
7628
|
select.form-control[size] {
|
|
7624
7629
|
background-image: none;
|
|
7625
7630
|
height: auto;
|
|
7631
|
+
margin-left: 0;
|
|
7626
7632
|
padding-left: 0.5rem;
|
|
7627
7633
|
padding-right: 0.5rem;
|
|
7628
7634
|
scrollbar-width: thin;
|
|
@@ -7636,6 +7642,12 @@ select.form-control[size]:focus > option:checked, select.form-control[size].focu
|
|
|
7636
7642
|
color: #fff;
|
|
7637
7643
|
filter: invert(100%);
|
|
7638
7644
|
}
|
|
7645
|
+
select.form-control[size] option {
|
|
7646
|
+
padding: 0.4375rem 0.5rem;
|
|
7647
|
+
}
|
|
7648
|
+
select.form-control[size] option:checked {
|
|
7649
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
7650
|
+
}
|
|
7639
7651
|
@-moz-document url-prefix() {
|
|
7640
7652
|
select.form-control[size]:focus > option:checked, select.form-control[size].focus > option:checked {
|
|
7641
7653
|
background-image: linear-gradient(#004ad7, #004ad7);
|
|
@@ -7649,6 +7661,7 @@ select.form-control[size]:focus > option:checked, select.form-control[size].focu
|
|
|
7649
7661
|
select.form-control[multiple] {
|
|
7650
7662
|
background-image: none;
|
|
7651
7663
|
height: auto;
|
|
7664
|
+
margin-left: 0;
|
|
7652
7665
|
padding-left: 0.5rem;
|
|
7653
7666
|
padding-right: 0.5rem;
|
|
7654
7667
|
scrollbar-width: thin;
|
|
@@ -7662,6 +7675,12 @@ select.form-control[multiple]:focus > option:checked, select.form-control[multip
|
|
|
7662
7675
|
color: #fff;
|
|
7663
7676
|
filter: invert(100%);
|
|
7664
7677
|
}
|
|
7678
|
+
select.form-control[multiple] option {
|
|
7679
|
+
padding: 0.4375rem 0.5rem;
|
|
7680
|
+
}
|
|
7681
|
+
select.form-control[multiple] option:checked {
|
|
7682
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
7683
|
+
}
|
|
7665
7684
|
@-moz-document url-prefix() {
|
|
7666
7685
|
select.form-control[multiple]:focus > option:checked, select.form-control[multiple].focus > option:checked {
|
|
7667
7686
|
background-image: linear-gradient(#004ad7, #004ad7);
|
|
@@ -8090,7 +8109,7 @@ textarea.form-control-lg,
|
|
|
8090
8109
|
.component-link:hover {
|
|
8091
8110
|
color: #484955;
|
|
8092
8111
|
}
|
|
8093
|
-
.component-link:focus {
|
|
8112
|
+
.component-link.focus, .component-link:focus {
|
|
8094
8113
|
color: #484955;
|
|
8095
8114
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8096
8115
|
outline: 0;
|
|
@@ -8112,7 +8131,7 @@ textarea.form-control-lg,
|
|
|
8112
8131
|
.link-primary:hover {
|
|
8113
8132
|
color: #0041be;
|
|
8114
8133
|
}
|
|
8115
|
-
.link-primary:focus {
|
|
8134
|
+
.link-primary.focus, .link-primary:focus {
|
|
8116
8135
|
color: #0041be;
|
|
8117
8136
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8118
8137
|
outline: 0;
|
|
@@ -8130,7 +8149,7 @@ textarea.form-control-lg,
|
|
|
8130
8149
|
.link-secondary:hover {
|
|
8131
8150
|
color: #272833;
|
|
8132
8151
|
}
|
|
8133
|
-
.link-secondary:focus {
|
|
8152
|
+
.link-secondary.focus, .link-secondary:focus {
|
|
8134
8153
|
color: #272833;
|
|
8135
8154
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8136
8155
|
outline: 0;
|
|
@@ -8166,7 +8185,7 @@ button.link-outline {
|
|
|
8166
8185
|
.link-outline:hover {
|
|
8167
8186
|
text-decoration: none;
|
|
8168
8187
|
}
|
|
8169
|
-
.link-outline:focus {
|
|
8188
|
+
.link-outline.focus, .link-outline:focus {
|
|
8170
8189
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8171
8190
|
outline: 0;
|
|
8172
8191
|
}
|
|
@@ -8194,7 +8213,7 @@ button.link-outline {
|
|
|
8194
8213
|
background-color: #f0f5ff;
|
|
8195
8214
|
color: #0b5fff;
|
|
8196
8215
|
}
|
|
8197
|
-
.link-outline-primary:focus {
|
|
8216
|
+
.link-outline-primary.focus, .link-outline-primary:focus {
|
|
8198
8217
|
background-color: #f0f5ff;
|
|
8199
8218
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8200
8219
|
color: #0b5fff;
|
|
@@ -8226,7 +8245,7 @@ button.link-outline {
|
|
|
8226
8245
|
background-color: rgba(39, 40, 51, 0.03);
|
|
8227
8246
|
color: #272833;
|
|
8228
8247
|
}
|
|
8229
|
-
.link-outline-secondary:focus {
|
|
8248
|
+
.link-outline-secondary.focus, .link-outline-secondary:focus {
|
|
8230
8249
|
background-color: rgba(39, 40, 51, 0.03);
|
|
8231
8250
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8232
8251
|
color: #272833;
|
|
@@ -8300,7 +8319,8 @@ button.link-outline {
|
|
|
8300
8319
|
.component-title [href]:hover {
|
|
8301
8320
|
color: #060608;
|
|
8302
8321
|
}
|
|
8303
|
-
.component-title[href]:focus,
|
|
8322
|
+
.component-title[href].focus, .component-title[href]:focus,
|
|
8323
|
+
.component-title [href].focus,
|
|
8304
8324
|
.component-title [href]:focus {
|
|
8305
8325
|
color: #060608;
|
|
8306
8326
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
@@ -8328,7 +8348,8 @@ button.link-outline {
|
|
|
8328
8348
|
.component-subtitle [href]:hover {
|
|
8329
8349
|
color: #272833;
|
|
8330
8350
|
}
|
|
8331
|
-
.component-subtitle[href]:focus,
|
|
8351
|
+
.component-subtitle[href].focus, .component-subtitle[href]:focus,
|
|
8352
|
+
.component-subtitle [href].focus,
|
|
8332
8353
|
.component-subtitle [href]:focus {
|
|
8333
8354
|
color: #272833;
|
|
8334
8355
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
@@ -8360,7 +8381,7 @@ button.link-outline {
|
|
|
8360
8381
|
background-color: rgba(39, 40, 51, 0.03);
|
|
8361
8382
|
color: #272833;
|
|
8362
8383
|
}
|
|
8363
|
-
.component-action:focus {
|
|
8384
|
+
.component-action.focus, .component-action:focus {
|
|
8364
8385
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
8365
8386
|
outline: 0;
|
|
8366
8387
|
background-color: rgba(39, 40, 51, 0.03);
|
|
@@ -11184,7 +11205,8 @@ label.custom-control-label {
|
|
|
11184
11205
|
.list-group-title [href]:hover {
|
|
11185
11206
|
color: #272833;
|
|
11186
11207
|
}
|
|
11187
|
-
.list-group-title[href]:focus,
|
|
11208
|
+
.list-group-title[href].focus, .list-group-title[href]:focus,
|
|
11209
|
+
.list-group-title [href].focus,
|
|
11188
11210
|
.list-group-title [href]:focus {
|
|
11189
11211
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11190
11212
|
outline: 0;
|
|
@@ -11211,7 +11233,8 @@ label.custom-control-label {
|
|
|
11211
11233
|
.list-group-subtitle [href]:hover {
|
|
11212
11234
|
color: #272833;
|
|
11213
11235
|
}
|
|
11214
|
-
.list-group-subtitle[href]:focus,
|
|
11236
|
+
.list-group-subtitle[href].focus, .list-group-subtitle[href]:focus,
|
|
11237
|
+
.list-group-subtitle [href].focus,
|
|
11215
11238
|
.list-group-subtitle [href]:focus {
|
|
11216
11239
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11217
11240
|
outline: 0;
|
|
@@ -11239,7 +11262,8 @@ label.custom-control-label {
|
|
|
11239
11262
|
.list-group-text [href]:hover {
|
|
11240
11263
|
color: #272833;
|
|
11241
11264
|
}
|
|
11242
|
-
.list-group-text[href]:focus,
|
|
11265
|
+
.list-group-text[href].focus, .list-group-text[href]:focus,
|
|
11266
|
+
.list-group-text [href].focus,
|
|
11243
11267
|
.list-group-text [href]:focus {
|
|
11244
11268
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11245
11269
|
outline: 0;
|
|
@@ -11267,7 +11291,8 @@ label.custom-control-label {
|
|
|
11267
11291
|
.list-group-subtext [href]:hover {
|
|
11268
11292
|
color: #272833;
|
|
11269
11293
|
}
|
|
11270
|
-
.list-group-subtext[href]:focus,
|
|
11294
|
+
.list-group-subtext[href].focus, .list-group-subtext[href]:focus,
|
|
11295
|
+
.list-group-subtext [href].focus,
|
|
11271
11296
|
.list-group-subtext [href]:focus {
|
|
11272
11297
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
11273
11298
|
outline: 0;
|
|
@@ -12354,7 +12379,7 @@ label.custom-control-label {
|
|
|
12354
12379
|
.nav-link:hover {
|
|
12355
12380
|
text-decoration: none;
|
|
12356
12381
|
}
|
|
12357
|
-
.nav-link:focus {
|
|
12382
|
+
.nav-link.focus, .nav-link:focus {
|
|
12358
12383
|
text-decoration: none;
|
|
12359
12384
|
z-index: 1;
|
|
12360
12385
|
}
|
|
@@ -12687,7 +12712,7 @@ label.custom-control-label {
|
|
|
12687
12712
|
.nav-tabs .nav-link:hover {
|
|
12688
12713
|
border-color: transparent;
|
|
12689
12714
|
}
|
|
12690
|
-
.nav-tabs .nav-link:focus {
|
|
12715
|
+
.nav-tabs .nav-link.focus, .nav-tabs .nav-link:focus {
|
|
12691
12716
|
border-color: transparent;
|
|
12692
12717
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12693
12718
|
outline: 0;
|
|
@@ -12786,7 +12811,7 @@ label.custom-control-label {
|
|
|
12786
12811
|
right: 0;
|
|
12787
12812
|
width: auto;
|
|
12788
12813
|
}
|
|
12789
|
-
.nav-underline .nav-link:focus {
|
|
12814
|
+
.nav-underline .nav-link.focus, .nav-underline .nav-link:focus {
|
|
12790
12815
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12791
12816
|
outline: 0;
|
|
12792
12817
|
}
|
|
@@ -12942,7 +12967,7 @@ label.custom-control-label {
|
|
|
12942
12967
|
color: #272833;
|
|
12943
12968
|
background-color: rgba(11, 95, 255, 0.04);
|
|
12944
12969
|
}
|
|
12945
|
-
.menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
12970
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
12946
12971
|
background-color: rgba(11, 95, 255, 0.04);
|
|
12947
12972
|
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
12948
12973
|
color: #272833;
|
|
@@ -12973,7 +12998,7 @@ label.custom-control-label {
|
|
|
12973
12998
|
background-color: rgba(11, 95, 255, 0.04);
|
|
12974
12999
|
color: #1c1d25;
|
|
12975
13000
|
}
|
|
12976
|
-
.menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
13001
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
12977
13002
|
background-color: rgba(11, 95, 255, 0.04);
|
|
12978
13003
|
}
|
|
12979
13004
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
@@ -13140,7 +13165,7 @@ label.custom-control-label {
|
|
|
13140
13165
|
color: #272833;
|
|
13141
13166
|
background-color: rgba(11, 95, 255, 0.04);
|
|
13142
13167
|
}
|
|
13143
|
-
.menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13168
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13144
13169
|
background-color: rgba(11, 95, 255, 0.04);
|
|
13145
13170
|
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
13146
13171
|
color: #272833;
|
|
@@ -13171,7 +13196,7 @@ label.custom-control-label {
|
|
|
13171
13196
|
background-color: rgba(11, 95, 255, 0.04);
|
|
13172
13197
|
color: #1c1d25;
|
|
13173
13198
|
}
|
|
13174
|
-
.menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13199
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13175
13200
|
background-color: rgba(11, 95, 255, 0.04);
|
|
13176
13201
|
}
|
|
13177
13202
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
@@ -15182,7 +15207,7 @@ label.custom-control-label {
|
|
|
15182
15207
|
transition: none;
|
|
15183
15208
|
}
|
|
15184
15209
|
}
|
|
15185
|
-
.application-bar .navbar-nav .nav-link:focus {
|
|
15210
|
+
.application-bar .navbar-nav .nav-link.focus, .application-bar .navbar-nav .nav-link:focus {
|
|
15186
15211
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
15187
15212
|
}
|
|
15188
15213
|
.application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled {
|
|
@@ -15198,7 +15223,7 @@ label.custom-control-label {
|
|
|
15198
15223
|
transition: none;
|
|
15199
15224
|
}
|
|
15200
15225
|
}
|
|
15201
|
-
.application-bar .navbar-brand:focus {
|
|
15226
|
+
.application-bar .navbar-brand.focus, .application-bar .navbar-brand:focus {
|
|
15202
15227
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
15203
15228
|
}
|
|
15204
15229
|
.application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
|
|
@@ -15224,7 +15249,7 @@ label.custom-control-label {
|
|
|
15224
15249
|
color: #fff;
|
|
15225
15250
|
background-color: rgba(255, 255, 255, 0.03);
|
|
15226
15251
|
}
|
|
15227
|
-
.application-bar-dark .navbar-nav .nav-link:focus {
|
|
15252
|
+
.application-bar-dark .navbar-nav .nav-link.focus, .application-bar-dark .navbar-nav .nav-link:focus {
|
|
15228
15253
|
background-color: rgba(255, 255, 255, 0.03);
|
|
15229
15254
|
}
|
|
15230
15255
|
.application-bar-dark .navbar-nav .nav-link:active {
|
|
@@ -15250,7 +15275,7 @@ label.custom-control-label {
|
|
|
15250
15275
|
.application-bar-dark .navbar-brand {
|
|
15251
15276
|
font-weight: 600;
|
|
15252
15277
|
}
|
|
15253
|
-
.application-bar-dark .navbar-brand:focus {
|
|
15278
|
+
.application-bar-dark .navbar-brand.focus, .application-bar-dark .navbar-brand:focus {
|
|
15254
15279
|
background-color: rgba(255, 255, 255, 0.03);
|
|
15255
15280
|
}
|
|
15256
15281
|
.application-bar-dark .navbar-brand:active {
|
|
@@ -16361,7 +16386,7 @@ label.custom-control-label {
|
|
|
16361
16386
|
transition: none;
|
|
16362
16387
|
}
|
|
16363
16388
|
}
|
|
16364
|
-
.management-bar .navbar-nav .nav-link:focus {
|
|
16389
|
+
.management-bar .navbar-nav .nav-link.focus, .management-bar .navbar-nav .nav-link:focus {
|
|
16365
16390
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16366
16391
|
}
|
|
16367
16392
|
.management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled {
|
|
@@ -16377,7 +16402,7 @@ label.custom-control-label {
|
|
|
16377
16402
|
transition: none;
|
|
16378
16403
|
}
|
|
16379
16404
|
}
|
|
16380
|
-
.management-bar .navbar-brand:focus {
|
|
16405
|
+
.management-bar .navbar-brand.focus, .management-bar .navbar-brand:focus {
|
|
16381
16406
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16382
16407
|
}
|
|
16383
16408
|
.management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
|
|
@@ -16399,7 +16424,7 @@ label.custom-control-label {
|
|
|
16399
16424
|
color: #272833;
|
|
16400
16425
|
background-color: rgba(39, 40, 51, 0.03);
|
|
16401
16426
|
}
|
|
16402
|
-
.management-bar-light .navbar-nav .nav-link:focus {
|
|
16427
|
+
.management-bar-light .navbar-nav .nav-link.focus, .management-bar-light .navbar-nav .nav-link:focus {
|
|
16403
16428
|
background-color: rgba(39, 40, 51, 0.03);
|
|
16404
16429
|
color: #272833;
|
|
16405
16430
|
}
|
|
@@ -16426,7 +16451,7 @@ label.custom-control-label {
|
|
|
16426
16451
|
.management-bar-light .navbar-brand {
|
|
16427
16452
|
font-weight: 600;
|
|
16428
16453
|
}
|
|
16429
|
-
.management-bar-light .navbar-brand:focus {
|
|
16454
|
+
.management-bar-light .navbar-brand.focus, .management-bar-light .navbar-brand:focus {
|
|
16430
16455
|
background-color: rgba(39, 40, 51, 0.03);
|
|
16431
16456
|
color: #272833;
|
|
16432
16457
|
}
|
|
@@ -16468,7 +16493,7 @@ label.custom-control-label {
|
|
|
16468
16493
|
color: #272833;
|
|
16469
16494
|
background-color: rgba(39, 40, 51, 0.03);
|
|
16470
16495
|
}
|
|
16471
|
-
.management-bar-primary .navbar-nav .nav-link:focus {
|
|
16496
|
+
.management-bar-primary .navbar-nav .nav-link.focus, .management-bar-primary .navbar-nav .nav-link:focus {
|
|
16472
16497
|
background-color: rgba(39, 40, 51, 0.03);
|
|
16473
16498
|
color: #272833;
|
|
16474
16499
|
}
|
|
@@ -16496,7 +16521,7 @@ label.custom-control-label {
|
|
|
16496
16521
|
border-radius: 0.25rem;
|
|
16497
16522
|
font-weight: 600;
|
|
16498
16523
|
}
|
|
16499
|
-
.management-bar-primary .navbar-brand:focus {
|
|
16524
|
+
.management-bar-primary .navbar-brand.focus, .management-bar-primary .navbar-brand:focus {
|
|
16500
16525
|
background-color: rgba(39, 40, 51, 0.03);
|
|
16501
16526
|
color: #272833;
|
|
16502
16527
|
}
|
|
@@ -16958,7 +16983,7 @@ label.custom-control-label {
|
|
|
16958
16983
|
border-radius: 0px;
|
|
16959
16984
|
outline: 0;
|
|
16960
16985
|
}
|
|
16961
|
-
.navigation-bar .navbar-nav .nav-link:focus {
|
|
16986
|
+
.navigation-bar .navbar-nav .nav-link.focus, .navigation-bar .navbar-nav .nav-link:focus {
|
|
16962
16987
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16963
16988
|
}
|
|
16964
16989
|
.navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled {
|
|
@@ -16968,7 +16993,7 @@ label.custom-control-label {
|
|
|
16968
16993
|
border-radius: 0px;
|
|
16969
16994
|
outline: 0;
|
|
16970
16995
|
}
|
|
16971
|
-
.navigation-bar .navbar-brand:focus {
|
|
16996
|
+
.navigation-bar .navbar-brand.focus, .navigation-bar .navbar-brand:focus {
|
|
16972
16997
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
16973
16998
|
}
|
|
16974
16999
|
.navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
|
|
@@ -16985,7 +17010,7 @@ label.custom-control-label {
|
|
|
16985
17010
|
.navigation-bar-light .navbar-nav .nav-link:hover {
|
|
16986
17011
|
color: #272833;
|
|
16987
17012
|
}
|
|
16988
|
-
.navigation-bar-light .navbar-nav .nav-link:focus {
|
|
17013
|
+
.navigation-bar-light .navbar-nav .nav-link.focus, .navigation-bar-light .navbar-nav .nav-link:focus {
|
|
16989
17014
|
color: #272833;
|
|
16990
17015
|
}
|
|
16991
17016
|
.navigation-bar-light .navbar-nav .nav-link:active {
|
|
@@ -17007,7 +17032,7 @@ label.custom-control-label {
|
|
|
17007
17032
|
.navigation-bar-light .navbar-brand {
|
|
17008
17033
|
font-weight: 600;
|
|
17009
17034
|
}
|
|
17010
|
-
.navigation-bar-light .navbar-brand:focus {
|
|
17035
|
+
.navigation-bar-light .navbar-brand.focus, .navigation-bar-light .navbar-brand:focus {
|
|
17011
17036
|
color: #272833;
|
|
17012
17037
|
}
|
|
17013
17038
|
.navigation-bar-light .navbar-brand:active {
|
|
@@ -17038,7 +17063,7 @@ label.custom-control-label {
|
|
|
17038
17063
|
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:hover {
|
|
17039
17064
|
color: #272833;
|
|
17040
17065
|
}
|
|
17041
|
-
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus {
|
|
17066
|
+
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item.focus, .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus {
|
|
17042
17067
|
color: #272833;
|
|
17043
17068
|
}
|
|
17044
17069
|
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
@@ -17067,7 +17092,7 @@ label.custom-control-label {
|
|
|
17067
17092
|
.navigation-bar-secondary .navbar-nav .nav-link:hover {
|
|
17068
17093
|
color: #fff;
|
|
17069
17094
|
}
|
|
17070
|
-
.navigation-bar-secondary .navbar-nav .nav-link:focus {
|
|
17095
|
+
.navigation-bar-secondary .navbar-nav .nav-link.focus, .navigation-bar-secondary .navbar-nav .nav-link:focus {
|
|
17071
17096
|
color: #fff;
|
|
17072
17097
|
}
|
|
17073
17098
|
.navigation-bar-secondary .navbar-nav .nav-link:active {
|
|
@@ -17093,7 +17118,7 @@ label.custom-control-label {
|
|
|
17093
17118
|
.navigation-bar-secondary .navbar-brand:hover {
|
|
17094
17119
|
color: rgba(255, 255, 255, 0.9);
|
|
17095
17120
|
}
|
|
17096
|
-
.navigation-bar-secondary .navbar-brand:focus {
|
|
17121
|
+
.navigation-bar-secondary .navbar-brand.focus, .navigation-bar-secondary .navbar-brand:focus {
|
|
17097
17122
|
color: #fff;
|
|
17098
17123
|
}
|
|
17099
17124
|
.navigation-bar-secondary .navbar-brand:active {
|
|
@@ -17124,7 +17149,7 @@ label.custom-control-label {
|
|
|
17124
17149
|
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:hover {
|
|
17125
17150
|
color: #fff;
|
|
17126
17151
|
}
|
|
17127
|
-
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus {
|
|
17152
|
+
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item.focus, .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus {
|
|
17128
17153
|
color: #fff;
|
|
17129
17154
|
}
|
|
17130
17155
|
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
@@ -17198,7 +17223,7 @@ label.custom-control-label {
|
|
|
17198
17223
|
text-decoration: none;
|
|
17199
17224
|
z-index: 2;
|
|
17200
17225
|
}
|
|
17201
|
-
.page-link:focus {
|
|
17226
|
+
.page-link.focus, .page-link:focus {
|
|
17202
17227
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
17203
17228
|
outline: 0;
|
|
17204
17229
|
z-index: 4;
|
|
@@ -17317,7 +17342,8 @@ label.custom-control-label {
|
|
|
17317
17342
|
border-color: transparent;
|
|
17318
17343
|
color: #272833;
|
|
17319
17344
|
}
|
|
17320
|
-
.pagination-items-per-page > a:focus,
|
|
17345
|
+
.pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus,
|
|
17346
|
+
.pagination-items-per-page > button.focus,
|
|
17321
17347
|
.pagination-items-per-page > button:focus {
|
|
17322
17348
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
17323
17349
|
outline: 0;
|
|
@@ -17553,7 +17579,7 @@ label.custom-control-label {
|
|
|
17553
17579
|
color: inherit;
|
|
17554
17580
|
text-decoration: none;
|
|
17555
17581
|
}
|
|
17556
|
-
.panel-header-link:focus {
|
|
17582
|
+
.panel-header-link.focus, .panel-header-link:focus {
|
|
17557
17583
|
z-index: 1;
|
|
17558
17584
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
17559
17585
|
outline: 0;
|
|
@@ -17776,7 +17802,7 @@ label.custom-control-label {
|
|
|
17776
17802
|
.panel-unstyled .panel-header.panel-header-link {
|
|
17777
17803
|
border-radius: 1px;
|
|
17778
17804
|
}
|
|
17779
|
-
.panel-unstyled .panel-header.panel-header-link:focus {
|
|
17805
|
+
.panel-unstyled .panel-header.panel-header-link.focus, .panel-unstyled .panel-header.panel-header-link:focus {
|
|
17780
17806
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
|
|
17781
17807
|
}
|
|
17782
17808
|
.panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-closed,
|
|
@@ -18521,7 +18547,7 @@ a.sheet-subtitle {
|
|
|
18521
18547
|
a.sheet-subtitle:hover {
|
|
18522
18548
|
text-decoration: none;
|
|
18523
18549
|
}
|
|
18524
|
-
a.sheet-subtitle:focus {
|
|
18550
|
+
a.sheet-subtitle.focus, a.sheet-subtitle:focus {
|
|
18525
18551
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
|
|
18526
18552
|
outline: 0;
|
|
18527
18553
|
}
|
|
@@ -18724,6 +18750,7 @@ a.sheet-subtitle:focus {
|
|
|
18724
18750
|
}
|
|
18725
18751
|
.sidebar:focus, .sidebar.focus {
|
|
18726
18752
|
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
18753
|
+
outline: 0;
|
|
18727
18754
|
}
|
|
18728
18755
|
.sidebar .container-fluid {
|
|
18729
18756
|
padding-left: 1rem;
|
|
@@ -18849,6 +18876,11 @@ a.sheet-subtitle:focus {
|
|
|
18849
18876
|
.sidenav-left .sidebar-light {
|
|
18850
18877
|
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
18851
18878
|
}
|
|
18879
|
+
.sidenav-start .sidebar-light:focus, .sidenav-start .sidebar-light.focus,
|
|
18880
|
+
.sidenav-left .sidebar-light:focus,
|
|
18881
|
+
.sidenav-left .sidebar-light.focus {
|
|
18882
|
+
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
18883
|
+
}
|
|
18852
18884
|
|
|
18853
18885
|
.sidebar-light .sidebar-list-group .list-group-title {
|
|
18854
18886
|
font-size: 1rem;
|
|
@@ -18867,7 +18899,7 @@ a.sheet-subtitle:focus {
|
|
|
18867
18899
|
.sidebar-light .sidebar-dd [href] {
|
|
18868
18900
|
color: #272833;
|
|
18869
18901
|
}
|
|
18870
|
-
.sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
18902
|
+
.sidebar-light .panel-unstyled .panel-header.panel-header-link.focus, .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
18871
18903
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
|
|
18872
18904
|
}
|
|
18873
18905
|
.sidebar-light .component-navigation-bar {
|
|
@@ -18947,7 +18979,7 @@ a.sheet-subtitle:focus {
|
|
|
18947
18979
|
.sidebar-dark .nav-nested .nav-link:hover {
|
|
18948
18980
|
color: #fff;
|
|
18949
18981
|
}
|
|
18950
|
-
.sidebar-dark .nav-nested .nav-link:focus {
|
|
18982
|
+
.sidebar-dark .nav-nested .nav-link.focus, .sidebar-dark .nav-nested .nav-link:focus {
|
|
18951
18983
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
18952
18984
|
outline: 0;
|
|
18953
18985
|
}
|
|
@@ -19005,7 +19037,7 @@ a.sheet-subtitle:focus {
|
|
|
19005
19037
|
.sidebar-dark-l2 .nav-nested .nav-link:hover {
|
|
19006
19038
|
color: #fff;
|
|
19007
19039
|
}
|
|
19008
|
-
.sidebar-dark-l2 .nav-nested .nav-link:focus {
|
|
19040
|
+
.sidebar-dark-l2 .nav-nested .nav-link.focus, .sidebar-dark-l2 .nav-nested .nav-link:focus {
|
|
19009
19041
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19010
19042
|
outline: 0;
|
|
19011
19043
|
}
|
|
@@ -19216,7 +19248,7 @@ caption {
|
|
|
19216
19248
|
.table thead th [href]:hover {
|
|
19217
19249
|
color: #272833;
|
|
19218
19250
|
}
|
|
19219
|
-
.table thead th [href]:focus {
|
|
19251
|
+
.table thead th [href].focus, .table thead th [href]:focus {
|
|
19220
19252
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19221
19253
|
outline: 0;
|
|
19222
19254
|
}
|
|
@@ -19629,7 +19661,8 @@ caption {
|
|
|
19629
19661
|
.table-title [href]:hover {
|
|
19630
19662
|
color: #272833;
|
|
19631
19663
|
}
|
|
19632
|
-
.table-title[href]:focus,
|
|
19664
|
+
.table-title[href].focus, .table-title[href]:focus,
|
|
19665
|
+
.table-title [href].focus,
|
|
19633
19666
|
.table-title [href]:focus {
|
|
19634
19667
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19635
19668
|
outline: 0;
|
|
@@ -19649,7 +19682,7 @@ caption {
|
|
|
19649
19682
|
.table-link:hover {
|
|
19650
19683
|
color: #272833;
|
|
19651
19684
|
}
|
|
19652
|
-
.table-link:focus {
|
|
19685
|
+
.table-link.focus, .table-link:focus {
|
|
19653
19686
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19654
19687
|
outline: 0;
|
|
19655
19688
|
}
|
|
@@ -19675,7 +19708,7 @@ caption {
|
|
|
19675
19708
|
background-color: rgba(0, 0, 0, 0.02);
|
|
19676
19709
|
color: #272833;
|
|
19677
19710
|
}
|
|
19678
|
-
.table-action-link:focus {
|
|
19711
|
+
.table-action-link.focus, .table-action-link:focus {
|
|
19679
19712
|
background-color: rgba(0, 0, 0, 0.02);
|
|
19680
19713
|
color: #272833;
|
|
19681
19714
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
@@ -19970,7 +20003,8 @@ caption {
|
|
|
19970
20003
|
.table-list-title [href]:hover {
|
|
19971
20004
|
color: #272833;
|
|
19972
20005
|
}
|
|
19973
|
-
.table-list-title[href]:focus,
|
|
20006
|
+
.table-list-title[href].focus, .table-list-title[href]:focus,
|
|
20007
|
+
.table-list-title [href].focus,
|
|
19974
20008
|
.table-list-title [href]:focus {
|
|
19975
20009
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19976
20010
|
outline: 0;
|
|
@@ -19990,7 +20024,7 @@ caption {
|
|
|
19990
20024
|
.table-list-link:hover {
|
|
19991
20025
|
color: #272833;
|
|
19992
20026
|
}
|
|
19993
|
-
.table-list-link:focus {
|
|
20027
|
+
.table-list-link.focus, .table-list-link:focus {
|
|
19994
20028
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
19995
20029
|
outline: 0;
|
|
19996
20030
|
}
|
|
@@ -20015,7 +20049,7 @@ caption {
|
|
|
20015
20049
|
background-color: rgba(0, 0, 0, 0.02);
|
|
20016
20050
|
color: #272833;
|
|
20017
20051
|
}
|
|
20018
|
-
.table-list-action-link:focus {
|
|
20052
|
+
.table-list-action-link.focus, .table-list-action-link:focus {
|
|
20019
20053
|
background-color: rgba(0, 0, 0, 0.02);
|
|
20020
20054
|
color: #272833;
|
|
20021
20055
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
@@ -21776,7 +21810,7 @@ caption {
|
|
|
21776
21810
|
.treeview-link:hover {
|
|
21777
21811
|
text-decoration: none;
|
|
21778
21812
|
}
|
|
21779
|
-
.treeview-link:focus {
|
|
21813
|
+
.treeview-link.focus, .treeview-link:focus {
|
|
21780
21814
|
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
21781
21815
|
outline: 0;
|
|
21782
21816
|
}
|