@clayui/css 3.83.1 → 3.85.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.
Files changed (32) hide show
  1. package/lib/css/atlas.css +322 -233
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +247 -160
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +264 -187
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/icons.svg +1 -1
  8. package/package.json +2 -2
  9. package/src/scss/_license-text.scss +1 -1
  10. package/src/scss/atlas/variables/_alerts.scss +2 -2
  11. package/src/scss/atlas/variables/_custom-forms.scss +1 -1
  12. package/src/scss/atlas/variables/_forms.scss +6 -7
  13. package/src/scss/atlas/variables/_links.scss +5 -0
  14. package/src/scss/atlas/variables/_pagination.scss +3 -3
  15. package/src/scss/atlas/variables/_sidebar.scss +4 -0
  16. package/src/scss/cadmin/components/_links.scss +4 -0
  17. package/src/scss/cadmin/components/_utilities-functional-important.scss +12 -2
  18. package/src/scss/cadmin/variables/_globals.scss +11 -0
  19. package/src/scss/cadmin/variables/_links.scss +35 -1
  20. package/src/scss/cadmin/variables/_navigation-bar.scss +2 -0
  21. package/src/scss/cadmin/variables/_utilities.scss +13 -0
  22. package/src/scss/components/_links.scss +4 -0
  23. package/src/scss/components/_utilities-functional-important.scss +12 -2
  24. package/src/scss/mixins/_forms.scss +82 -58
  25. package/src/scss/mixins/_links.scss +19 -1
  26. package/src/scss/mixins/_sidebar.scss +16 -2
  27. package/src/scss/variables/_globals.scss +11 -0
  28. package/src/scss/variables/_links.scss +36 -1
  29. package/src/scss/variables/_navigation-bar.scss +6 -0
  30. package/src/scss/variables/_pagination.scss +1 -1
  31. package/src/scss/variables/_sidebar.scss +1 -0
  32. package/src/scss/variables/_utilities.scss +13 -0
package/lib/css/base.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.83.1
3
+ * Clay 3.85.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>
@@ -155,11 +155,22 @@ sup {
155
155
  a {
156
156
  color: #007bff;
157
157
  text-decoration: none;
158
+ text-underline-offset: 0.23em;
158
159
  }
159
- a:hover {
160
+ a:hover, a.hover {
160
161
  color: #0056b3;
161
162
  text-decoration: underline;
162
163
  }
164
+ a .inline-item-before {
165
+ margin-right: 0.25rem;
166
+ }
167
+ a .inline-item-middle {
168
+ margin-left: 0.25rem;
169
+ margin-right: 0.25rem;
170
+ }
171
+ a .inline-item-after {
172
+ margin-left: 0.25rem;
173
+ }
163
174
  pre,
164
175
  code,
165
176
  kbd,
@@ -3374,11 +3385,13 @@ input[type=button].btn-block {
3374
3385
  .alert-link.btn-unstyled {
3375
3386
  font-weight: 700;
3376
3387
  }
3377
- .alert-link:hover,
3378
- .alert-link.btn-unstyled:hover {
3388
+ .alert-link:hover, .alert-link.hover,
3389
+ .alert-link.btn-unstyled:hover,
3390
+ .alert-link.btn-unstyled.hover {
3379
3391
  text-decoration: underline;
3380
3392
  }
3381
- .alert-link:focus,
3393
+ .alert-link.focus, .alert-link:focus,
3394
+ .alert-link.btn-unstyled.focus,
3382
3395
  .alert-link.btn-unstyled:focus {
3383
3396
  text-decoration: underline;
3384
3397
  }
@@ -3910,10 +3923,10 @@ input[type=button].btn-block {
3910
3923
  .badge:empty {
3911
3924
  display: none;
3912
3925
  }
3913
- .badge[href]:hover, .badge[type]:hover {
3926
+ .badge[href]:hover, .badge[href].hover, .badge[type]:hover, .badge[type].hover {
3914
3927
  text-decoration: none;
3915
3928
  }
3916
- .badge[href]:focus, .badge[type]:focus {
3929
+ .badge[href].focus, .badge[href]:focus, .badge[type].focus, .badge[type]:focus {
3917
3930
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3918
3931
  outline: 0;
3919
3932
  }
@@ -3921,10 +3934,10 @@ input[type=button].btn-block {
3921
3934
  color: #fff;
3922
3935
  text-decoration: underline;
3923
3936
  }
3924
- .badge a:hover {
3937
+ .badge a:hover, .badge a.hover {
3925
3938
  text-decoration: none;
3926
3939
  }
3927
- .badge a:focus {
3940
+ .badge a.focus, .badge a:focus {
3928
3941
  text-decoration: none;
3929
3942
  }
3930
3943
  .badge > .c-inner {
@@ -4035,11 +4048,11 @@ input[type=button].btn-block {
4035
4048
  background-color: #007bff;
4036
4049
  color: #fff;
4037
4050
  }
4038
- [href].badge-primary:hover, [type].badge-primary:hover {
4051
+ [href].badge-primary:hover, [href].hover.badge-primary, [type].badge-primary:hover, [type].hover.badge-primary {
4039
4052
  background-color: #0062cc;
4040
4053
  color: #fff;
4041
4054
  }
4042
- [href].badge-primary:focus, [type].badge-primary:focus {
4055
+ [href].focus.badge-primary, [href].badge-primary:focus, [type].focus.badge-primary, [type].badge-primary:focus {
4043
4056
  background-color: #0062cc;
4044
4057
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
4045
4058
  color: #fff;
@@ -4048,11 +4061,11 @@ input[type=button].btn-block {
4048
4061
  background-color: #6c757d;
4049
4062
  color: #fff;
4050
4063
  }
4051
- [href].badge-secondary:hover, [type].badge-secondary:hover {
4064
+ [href].badge-secondary:hover, [href].hover.badge-secondary, [type].badge-secondary:hover, [type].hover.badge-secondary {
4052
4065
  background-color: #545b62;
4053
4066
  color: #fff;
4054
4067
  }
4055
- [href].badge-secondary:focus, [type].badge-secondary:focus {
4068
+ [href].focus.badge-secondary, [href].badge-secondary:focus, [type].focus.badge-secondary, [type].badge-secondary:focus {
4056
4069
  background-color: #545b62;
4057
4070
  color: #fff;
4058
4071
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
@@ -4061,11 +4074,11 @@ input[type=button].btn-block {
4061
4074
  background-color: #28a745;
4062
4075
  color: #fff;
4063
4076
  }
4064
- [href].badge-success:hover, [type].badge-success:hover {
4077
+ [href].badge-success:hover, [href].hover.badge-success, [type].badge-success:hover, [type].hover.badge-success {
4065
4078
  background-color: #1e7e34;
4066
4079
  color: #fff;
4067
4080
  }
4068
- [href].badge-success:focus, [type].badge-success:focus {
4081
+ [href].focus.badge-success, [href].badge-success:focus, [type].focus.badge-success, [type].badge-success:focus {
4069
4082
  background-color: #1e7e34;
4070
4083
  color: #fff;
4071
4084
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
@@ -4074,11 +4087,11 @@ input[type=button].btn-block {
4074
4087
  background-color: #17a2b8;
4075
4088
  color: #fff;
4076
4089
  }
4077
- [href].badge-info:hover, [type].badge-info:hover {
4090
+ [href].badge-info:hover, [href].hover.badge-info, [type].badge-info:hover, [type].hover.badge-info {
4078
4091
  background-color: #117a8b;
4079
4092
  color: #fff;
4080
4093
  }
4081
- [href].badge-info:focus, [type].badge-info:focus {
4094
+ [href].focus.badge-info, [href].badge-info:focus, [type].focus.badge-info, [type].badge-info:focus {
4082
4095
  background-color: #117a8b;
4083
4096
  color: #fff;
4084
4097
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
@@ -4087,11 +4100,11 @@ input[type=button].btn-block {
4087
4100
  background-color: #ffc107;
4088
4101
  color: #212529;
4089
4102
  }
4090
- [href].badge-warning:hover, [type].badge-warning:hover {
4103
+ [href].badge-warning:hover, [href].hover.badge-warning, [type].badge-warning:hover, [type].hover.badge-warning {
4091
4104
  background-color: #d39e00;
4092
4105
  color: #212529;
4093
4106
  }
4094
- [href].badge-warning:focus, [type].badge-warning:focus {
4107
+ [href].focus.badge-warning, [href].badge-warning:focus, [type].focus.badge-warning, [type].badge-warning:focus {
4095
4108
  background-color: #d39e00;
4096
4109
  color: #212529;
4097
4110
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
@@ -4100,11 +4113,11 @@ input[type=button].btn-block {
4100
4113
  background-color: #dc3545;
4101
4114
  color: #fff;
4102
4115
  }
4103
- [href].badge-danger:hover, [type].badge-danger:hover {
4116
+ [href].badge-danger:hover, [href].hover.badge-danger, [type].badge-danger:hover, [type].hover.badge-danger {
4104
4117
  background-color: #bd2130;
4105
4118
  color: #fff;
4106
4119
  }
4107
- [href].badge-danger:focus, [type].badge-danger:focus {
4120
+ [href].focus.badge-danger, [href].badge-danger:focus, [type].focus.badge-danger, [type].badge-danger:focus {
4108
4121
  background-color: #bd2130;
4109
4122
  color: #fff;
4110
4123
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
@@ -4113,11 +4126,11 @@ input[type=button].btn-block {
4113
4126
  background-color: #f8f9fa;
4114
4127
  color: #212529;
4115
4128
  }
4116
- [href].badge-light:hover, [type].badge-light:hover {
4129
+ [href].badge-light:hover, [href].hover.badge-light, [type].badge-light:hover, [type].hover.badge-light {
4117
4130
  background-color: #dae0e5;
4118
4131
  color: #212529;
4119
4132
  }
4120
- [href].badge-light:focus, [type].badge-light:focus {
4133
+ [href].focus.badge-light, [href].badge-light:focus, [type].focus.badge-light, [type].badge-light:focus {
4121
4134
  background-color: #dae0e5;
4122
4135
  color: #212529;
4123
4136
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
@@ -4126,11 +4139,11 @@ input[type=button].btn-block {
4126
4139
  background-color: #343a40;
4127
4140
  color: #fff;
4128
4141
  }
4129
- [href].badge-dark:hover, [type].badge-dark:hover {
4142
+ [href].badge-dark:hover, [href].hover.badge-dark, [type].badge-dark:hover, [type].hover.badge-dark {
4130
4143
  background-color: #1d2124;
4131
4144
  color: #fff;
4132
4145
  }
4133
- [href].badge-dark:focus, [type].badge-dark:focus {
4146
+ [href].focus.badge-dark, [href].badge-dark:focus, [type].focus.badge-dark, [type].badge-dark:focus {
4134
4147
  background-color: #1d2124;
4135
4148
  color: #fff;
4136
4149
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
@@ -4150,11 +4163,11 @@ input[type=button].btn-block {
4150
4163
  display: block;
4151
4164
  text-decoration: none;
4152
4165
  }
4153
- .breadcrumb-link:hover {
4166
+ .breadcrumb-link:hover, .breadcrumb-link.hover {
4154
4167
  color: #0056b3;
4155
4168
  text-decoration: underline;
4156
4169
  }
4157
- .breadcrumb-link:focus {
4170
+ .breadcrumb-link.focus, .breadcrumb-link:focus {
4158
4171
  color: #0056b3;
4159
4172
  text-decoration: underline;
4160
4173
  }
@@ -4442,12 +4455,14 @@ input[type=button].btn-block {
4442
4455
  display: inline-block;
4443
4456
  text-decoration: underline;
4444
4457
  }
4445
- .label a:hover,
4446
- .label .btn-unstyled:hover {
4458
+ .label a:hover, .label a.hover,
4459
+ .label .btn-unstyled:hover,
4460
+ .label .btn-unstyled.hover {
4447
4461
  color: inherit;
4448
4462
  text-decoration: none;
4449
4463
  }
4450
- .label a:focus,
4464
+ .label a.focus, .label a:focus,
4465
+ .label .btn-unstyled.focus,
4451
4466
  .label .btn-unstyled:focus {
4452
4467
  color: inherit;
4453
4468
  text-decoration: none;
@@ -4578,15 +4593,16 @@ input[type=button].btn-block {
4578
4593
  border-color: #007bff;
4579
4594
  color: #007bff;
4580
4595
  }
4581
- [href].label-primary:hover, [type].label-primary:hover, [tabindex].label-primary:hover {
4596
+ [href].label-primary:hover, [href].hover.label-primary, [type].label-primary:hover, [type].hover.label-primary, [tabindex].label-primary:hover, [tabindex].hover.label-primary {
4582
4597
  border-color: #0062cc;
4583
4598
  color: #0062cc;
4584
4599
  }
4585
- [href].label-primary:focus, [type].label-primary:focus, [tabindex].label-primary:focus {
4600
+ [href].focus.label-primary, [href].label-primary:focus, [type].focus.label-primary, [type].label-primary:focus, [tabindex].focus.label-primary, [tabindex].label-primary:focus {
4586
4601
  color: #0062cc;
4587
4602
  }
4588
- .label-primary a:hover,
4589
- .label-primary .btn-unstyled:hover {
4603
+ .label-primary a:hover, .label-primary a.hover,
4604
+ .label-primary .btn-unstyled:hover,
4605
+ .label-primary .btn-unstyled.hover {
4590
4606
  color: #0062cc;
4591
4607
  }
4592
4608
  .label-primary .close:hover {
@@ -4600,15 +4616,16 @@ input[type=button].btn-block {
4600
4616
  border-color: #6c757d;
4601
4617
  color: #6c757d;
4602
4618
  }
4603
- [href].label-secondary:hover, [type].label-secondary:hover, [tabindex].label-secondary:hover {
4619
+ [href].label-secondary:hover, [href].hover.label-secondary, [type].label-secondary:hover, [type].hover.label-secondary, [tabindex].label-secondary:hover, [tabindex].hover.label-secondary {
4604
4620
  border-color: #545b62;
4605
4621
  color: #545b62;
4606
4622
  }
4607
- [href].label-secondary:focus, [type].label-secondary:focus, [tabindex].label-secondary:focus {
4623
+ [href].focus.label-secondary, [href].label-secondary:focus, [type].focus.label-secondary, [type].label-secondary:focus, [tabindex].focus.label-secondary, [tabindex].label-secondary:focus {
4608
4624
  color: #545b62;
4609
4625
  }
4610
- .label-secondary a:hover,
4611
- .label-secondary .btn-unstyled:hover {
4626
+ .label-secondary a:hover, .label-secondary a.hover,
4627
+ .label-secondary .btn-unstyled:hover,
4628
+ .label-secondary .btn-unstyled.hover {
4612
4629
  color: #545b62;
4613
4630
  }
4614
4631
  .label-secondary .close:hover {
@@ -4622,15 +4639,16 @@ input[type=button].btn-block {
4622
4639
  border-color: #28a745;
4623
4640
  color: #28a745;
4624
4641
  }
4625
- [href].label-success:hover, [type].label-success:hover, [tabindex].label-success:hover {
4642
+ [href].label-success:hover, [href].hover.label-success, [type].label-success:hover, [type].hover.label-success, [tabindex].label-success:hover, [tabindex].hover.label-success {
4626
4643
  border-color: #1e7e34;
4627
4644
  color: #1e7e34;
4628
4645
  }
4629
- [href].label-success:focus, [type].label-success:focus, [tabindex].label-success:focus {
4646
+ [href].focus.label-success, [href].label-success:focus, [type].focus.label-success, [type].label-success:focus, [tabindex].focus.label-success, [tabindex].label-success:focus {
4630
4647
  color: #1e7e34;
4631
4648
  }
4632
- .label-success a:hover,
4633
- .label-success .btn-unstyled:hover {
4649
+ .label-success a:hover, .label-success a.hover,
4650
+ .label-success .btn-unstyled:hover,
4651
+ .label-success .btn-unstyled.hover {
4634
4652
  color: #1e7e34;
4635
4653
  }
4636
4654
  .label-success .close:hover {
@@ -4644,15 +4662,16 @@ input[type=button].btn-block {
4644
4662
  border-color: #17a2b8;
4645
4663
  color: #17a2b8;
4646
4664
  }
4647
- [href].label-info:hover, [type].label-info:hover, [tabindex].label-info:hover {
4665
+ [href].label-info:hover, [href].hover.label-info, [type].label-info:hover, [type].hover.label-info, [tabindex].label-info:hover, [tabindex].hover.label-info {
4648
4666
  border-color: #117a8b;
4649
4667
  color: #117a8b;
4650
4668
  }
4651
- [href].label-info:focus, [type].label-info:focus, [tabindex].label-info:focus {
4669
+ [href].focus.label-info, [href].label-info:focus, [type].focus.label-info, [type].label-info:focus, [tabindex].focus.label-info, [tabindex].label-info:focus {
4652
4670
  color: #117a8b;
4653
4671
  }
4654
- .label-info a:hover,
4655
- .label-info .btn-unstyled:hover {
4672
+ .label-info a:hover, .label-info a.hover,
4673
+ .label-info .btn-unstyled:hover,
4674
+ .label-info .btn-unstyled.hover {
4656
4675
  color: #117a8b;
4657
4676
  }
4658
4677
  .label-info .close:hover {
@@ -4666,15 +4685,16 @@ input[type=button].btn-block {
4666
4685
  border-color: #ffc107;
4667
4686
  color: #ffc107;
4668
4687
  }
4669
- [href].label-warning:hover, [type].label-warning:hover, [tabindex].label-warning:hover {
4688
+ [href].label-warning:hover, [href].hover.label-warning, [type].label-warning:hover, [type].hover.label-warning, [tabindex].label-warning:hover, [tabindex].hover.label-warning {
4670
4689
  border-color: #d39e00;
4671
4690
  color: #d39e00;
4672
4691
  }
4673
- [href].label-warning:focus, [type].label-warning:focus, [tabindex].label-warning:focus {
4692
+ [href].focus.label-warning, [href].label-warning:focus, [type].focus.label-warning, [type].label-warning:focus, [tabindex].focus.label-warning, [tabindex].label-warning:focus {
4674
4693
  color: #d39e00;
4675
4694
  }
4676
- .label-warning a:hover,
4677
- .label-warning .btn-unstyled:hover {
4695
+ .label-warning a:hover, .label-warning a.hover,
4696
+ .label-warning .btn-unstyled:hover,
4697
+ .label-warning .btn-unstyled.hover {
4678
4698
  color: #d39e00;
4679
4699
  }
4680
4700
  .label-warning .close:hover {
@@ -4688,15 +4708,16 @@ input[type=button].btn-block {
4688
4708
  border-color: #dc3545;
4689
4709
  color: #dc3545;
4690
4710
  }
4691
- [href].label-danger:hover, [type].label-danger:hover, [tabindex].label-danger:hover {
4711
+ [href].label-danger:hover, [href].hover.label-danger, [type].label-danger:hover, [type].hover.label-danger, [tabindex].label-danger:hover, [tabindex].hover.label-danger {
4692
4712
  border-color: #bd2130;
4693
4713
  color: #bd2130;
4694
4714
  }
4695
- [href].label-danger:focus, [type].label-danger:focus, [tabindex].label-danger:focus {
4715
+ [href].focus.label-danger, [href].label-danger:focus, [type].focus.label-danger, [type].label-danger:focus, [tabindex].focus.label-danger, [tabindex].label-danger:focus {
4696
4716
  color: #bd2130;
4697
4717
  }
4698
- .label-danger a:hover,
4699
- .label-danger .btn-unstyled:hover {
4718
+ .label-danger a:hover, .label-danger a.hover,
4719
+ .label-danger .btn-unstyled:hover,
4720
+ .label-danger .btn-unstyled.hover {
4700
4721
  color: #bd2130;
4701
4722
  }
4702
4723
  .label-danger .close:hover {
@@ -4710,15 +4731,16 @@ input[type=button].btn-block {
4710
4731
  border-color: #343a40;
4711
4732
  color: #343a40;
4712
4733
  }
4713
- [href].label-dark:hover, [type].label-dark:hover, [tabindex].label-dark:hover {
4734
+ [href].label-dark:hover, [href].hover.label-dark, [type].label-dark:hover, [type].hover.label-dark, [tabindex].label-dark:hover, [tabindex].hover.label-dark {
4714
4735
  border-color: #1d2124;
4715
4736
  color: #1d2124;
4716
4737
  }
4717
- [href].label-dark:focus, [type].label-dark:focus, [tabindex].label-dark:focus {
4738
+ [href].focus.label-dark, [href].label-dark:focus, [type].focus.label-dark, [type].label-dark:focus, [tabindex].focus.label-dark, [tabindex].label-dark:focus {
4718
4739
  color: #1d2124;
4719
4740
  }
4720
- .label-dark a:hover,
4721
- .label-dark .btn-unstyled:hover {
4741
+ .label-dark a:hover, .label-dark a.hover,
4742
+ .label-dark .btn-unstyled:hover,
4743
+ .label-dark .btn-unstyled.hover {
4722
4744
  color: #1d2124;
4723
4745
  }
4724
4746
  .label-dark .close:hover {
@@ -4732,15 +4754,16 @@ input[type=button].btn-block {
4732
4754
  border-color: #f8f9fa;
4733
4755
  color: #f8f9fa;
4734
4756
  }
4735
- [href].label-light:hover, [type].label-light:hover, [tabindex].label-light:hover {
4757
+ [href].label-light:hover, [href].hover.label-light, [type].label-light:hover, [type].hover.label-light, [tabindex].label-light:hover, [tabindex].hover.label-light {
4736
4758
  border-color: #dae0e5;
4737
4759
  color: #dae0e5;
4738
4760
  }
4739
- [href].label-light:focus, [type].label-light:focus, [tabindex].label-light:focus {
4761
+ [href].focus.label-light, [href].label-light:focus, [type].focus.label-light, [type].label-light:focus, [tabindex].focus.label-light, [tabindex].label-light:focus {
4740
4762
  color: #dae0e5;
4741
4763
  }
4742
- .label-light a:hover,
4743
- .label-light .btn-unstyled:hover {
4764
+ .label-light a:hover, .label-light a.hover,
4765
+ .label-light .btn-unstyled:hover,
4766
+ .label-light .btn-unstyled.hover {
4744
4767
  color: #dae0e5;
4745
4768
  }
4746
4769
  .label-light .close:hover {
@@ -4754,13 +4777,14 @@ input[type=button].btn-block {
4754
4777
  border-color: #007bff;
4755
4778
  color: #fff;
4756
4779
  }
4757
- [href].label-inverse-primary:hover, [type].label-inverse-primary:hover, [tabindex].label-inverse-primary:hover {
4780
+ [href].label-inverse-primary:hover, [href].hover.label-inverse-primary, [type].label-inverse-primary:hover, [type].hover.label-inverse-primary, [tabindex].label-inverse-primary:hover, [tabindex].hover.label-inverse-primary {
4758
4781
  background-color: #0062cc;
4759
4782
  border-color: #0062cc;
4760
4783
  color: #fff;
4761
4784
  }
4762
- .label-inverse-primary a:hover,
4763
- .label-inverse-primary .btn-unstyled:hover {
4785
+ .label-inverse-primary a:hover, .label-inverse-primary a.hover,
4786
+ .label-inverse-primary .btn-unstyled:hover,
4787
+ .label-inverse-primary .btn-unstyled.hover {
4764
4788
  color: #e6e6e6;
4765
4789
  }
4766
4790
  .label-inverse-primary .close:hover {
@@ -4771,13 +4795,14 @@ input[type=button].btn-block {
4771
4795
  border-color: #6c757d;
4772
4796
  color: #fff;
4773
4797
  }
4774
- [href].label-inverse-secondary:hover, [type].label-inverse-secondary:hover, [tabindex].label-inverse-secondary:hover {
4798
+ [href].label-inverse-secondary:hover, [href].hover.label-inverse-secondary, [type].label-inverse-secondary:hover, [type].hover.label-inverse-secondary, [tabindex].label-inverse-secondary:hover, [tabindex].hover.label-inverse-secondary {
4775
4799
  background-color: #545b62;
4776
4800
  border-color: #545b62;
4777
4801
  color: #fff;
4778
4802
  }
4779
- .label-inverse-secondary a:hover,
4780
- .label-inverse-secondary .btn-unstyled:hover {
4803
+ .label-inverse-secondary a:hover, .label-inverse-secondary a.hover,
4804
+ .label-inverse-secondary .btn-unstyled:hover,
4805
+ .label-inverse-secondary .btn-unstyled.hover {
4781
4806
  color: #e6e6e6;
4782
4807
  }
4783
4808
  .label-inverse-secondary .close:hover {
@@ -4788,13 +4813,14 @@ input[type=button].btn-block {
4788
4813
  border-color: #28a745;
4789
4814
  color: #fff;
4790
4815
  }
4791
- [href].label-inverse-success:hover, [type].label-inverse-success:hover, [tabindex].label-inverse-success:hover {
4816
+ [href].label-inverse-success:hover, [href].hover.label-inverse-success, [type].label-inverse-success:hover, [type].hover.label-inverse-success, [tabindex].label-inverse-success:hover, [tabindex].hover.label-inverse-success {
4792
4817
  background-color: #1e7e34;
4793
4818
  border-color: #1e7e34;
4794
4819
  color: #fff;
4795
4820
  }
4796
- .label-inverse-success a:hover,
4797
- .label-inverse-success .btn-unstyled:hover {
4821
+ .label-inverse-success a:hover, .label-inverse-success a.hover,
4822
+ .label-inverse-success .btn-unstyled:hover,
4823
+ .label-inverse-success .btn-unstyled.hover {
4798
4824
  color: #e6e6e6;
4799
4825
  }
4800
4826
  .label-inverse-success .close:hover {
@@ -4805,13 +4831,14 @@ input[type=button].btn-block {
4805
4831
  border-color: #17a2b8;
4806
4832
  color: #fff;
4807
4833
  }
4808
- [href].label-inverse-info:hover, [type].label-inverse-info:hover, [tabindex].label-inverse-info:hover {
4834
+ [href].label-inverse-info:hover, [href].hover.label-inverse-info, [type].label-inverse-info:hover, [type].hover.label-inverse-info, [tabindex].label-inverse-info:hover, [tabindex].hover.label-inverse-info {
4809
4835
  background-color: #117a8b;
4810
4836
  border-color: #117a8b;
4811
4837
  color: #fff;
4812
4838
  }
4813
- .label-inverse-info a:hover,
4814
- .label-inverse-info .btn-unstyled:hover {
4839
+ .label-inverse-info a:hover, .label-inverse-info a.hover,
4840
+ .label-inverse-info .btn-unstyled:hover,
4841
+ .label-inverse-info .btn-unstyled.hover {
4815
4842
  color: #e6e6e6;
4816
4843
  }
4817
4844
  .label-inverse-info .close:hover {
@@ -4822,13 +4849,14 @@ input[type=button].btn-block {
4822
4849
  border-color: #ffc107;
4823
4850
  color: #212529;
4824
4851
  }
4825
- [href].label-inverse-warning:hover, [type].label-inverse-warning:hover, [tabindex].label-inverse-warning:hover {
4852
+ [href].label-inverse-warning:hover, [href].hover.label-inverse-warning, [type].label-inverse-warning:hover, [type].hover.label-inverse-warning, [tabindex].label-inverse-warning:hover, [tabindex].hover.label-inverse-warning {
4826
4853
  background-color: #d39e00;
4827
4854
  border-color: #d39e00;
4828
4855
  color: #212529;
4829
4856
  }
4830
- .label-inverse-warning a:hover,
4831
- .label-inverse-warning .btn-unstyled:hover {
4857
+ .label-inverse-warning a:hover, .label-inverse-warning a.hover,
4858
+ .label-inverse-warning .btn-unstyled:hover,
4859
+ .label-inverse-warning .btn-unstyled.hover {
4832
4860
  color: #4e5862;
4833
4861
  }
4834
4862
  .label-inverse-warning .close:hover {
@@ -4839,13 +4867,14 @@ input[type=button].btn-block {
4839
4867
  border-color: #dc3545;
4840
4868
  color: #fff;
4841
4869
  }
4842
- [href].label-inverse-danger:hover, [type].label-inverse-danger:hover, [tabindex].label-inverse-danger:hover {
4870
+ [href].label-inverse-danger:hover, [href].hover.label-inverse-danger, [type].label-inverse-danger:hover, [type].hover.label-inverse-danger, [tabindex].label-inverse-danger:hover, [tabindex].hover.label-inverse-danger {
4843
4871
  background-color: #bd2130;
4844
4872
  border-color: #bd2130;
4845
4873
  color: #fff;
4846
4874
  }
4847
- .label-inverse-danger a:hover,
4848
- .label-inverse-danger .btn-unstyled:hover {
4875
+ .label-inverse-danger a:hover, .label-inverse-danger a.hover,
4876
+ .label-inverse-danger .btn-unstyled:hover,
4877
+ .label-inverse-danger .btn-unstyled.hover {
4849
4878
  color: #e6e6e6;
4850
4879
  }
4851
4880
  .label-inverse-danger .close:hover {
@@ -4856,13 +4885,14 @@ input[type=button].btn-block {
4856
4885
  border-color: #f8f9fa;
4857
4886
  color: #212529;
4858
4887
  }
4859
- [href].label-inverse-light:hover, [type].label-inverse-light:hover, [tabindex].label-inverse-light:hover {
4888
+ [href].label-inverse-light:hover, [href].hover.label-inverse-light, [type].label-inverse-light:hover, [type].hover.label-inverse-light, [tabindex].label-inverse-light:hover, [tabindex].hover.label-inverse-light {
4860
4889
  background-color: #dae0e5;
4861
4890
  border-color: #dae0e5;
4862
4891
  color: #212529;
4863
4892
  }
4864
- .label-inverse-light a:hover,
4865
- .label-inverse-light .btn-unstyled:hover {
4893
+ .label-inverse-light a:hover, .label-inverse-light a.hover,
4894
+ .label-inverse-light .btn-unstyled:hover,
4895
+ .label-inverse-light .btn-unstyled.hover {
4866
4896
  color: #383f45;
4867
4897
  }
4868
4898
  .label-inverse-light .close:hover {
@@ -4873,13 +4903,14 @@ input[type=button].btn-block {
4873
4903
  border-color: #343a40;
4874
4904
  color: #fff;
4875
4905
  }
4876
- [href].label-inverse-dark:hover, [type].label-inverse-dark:hover, [tabindex].label-inverse-dark:hover {
4906
+ [href].label-inverse-dark:hover, [href].hover.label-inverse-dark, [type].label-inverse-dark:hover, [type].hover.label-inverse-dark, [tabindex].label-inverse-dark:hover, [tabindex].hover.label-inverse-dark {
4877
4907
  background-color: #1d2124;
4878
4908
  border-color: #1d2124;
4879
4909
  color: #fff;
4880
4910
  }
4881
- .label-inverse-dark a:hover,
4882
- .label-inverse-dark .btn-unstyled:hover {
4911
+ .label-inverse-dark a:hover, .label-inverse-dark a.hover,
4912
+ .label-inverse-dark .btn-unstyled:hover,
4913
+ .label-inverse-dark .btn-unstyled.hover {
4883
4914
  color: #e6e6e6;
4884
4915
  }
4885
4916
  .label-inverse-dark .close:hover {
@@ -5218,8 +5249,9 @@ input[type=button].btn-block {
5218
5249
  .card-subtitle [href] {
5219
5250
  color: #6c757d;
5220
5251
  }
5221
- .card-subtitle[href]:hover,
5222
- .card-subtitle [href]:hover {
5252
+ .card-subtitle[href]:hover, .card-subtitle[href].hover,
5253
+ .card-subtitle [href]:hover,
5254
+ .card-subtitle [href].hover {
5223
5255
  color: #494f54;
5224
5256
  }
5225
5257
  .card-text:last-child {
@@ -5228,7 +5260,7 @@ input[type=button].btn-block {
5228
5260
  .card-link {
5229
5261
  color: #007bff;
5230
5262
  }
5231
- .card-link:hover {
5263
+ .card-link:hover, .card-link.hover {
5232
5264
  color: #0056b3;
5233
5265
  text-decoration: none;
5234
5266
  }
@@ -6635,11 +6667,11 @@ input[type=button].btn-block {
6635
6667
  text-decoration: inherit;
6636
6668
  width: 100%;
6637
6669
  }
6638
- .dropdown-item-indicator-text-start:hover {
6670
+ .dropdown-item-indicator-text-start:hover, .dropdown-item-indicator-text-start.hover {
6639
6671
  color: inherit;
6640
6672
  text-decoration: inherit;
6641
6673
  }
6642
- .dropdown-item-indicator-text-start:focus {
6674
+ .dropdown-item-indicator-text-start.focus, .dropdown-item-indicator-text-start:focus {
6643
6675
  color: inherit;
6644
6676
  text-decoration: inherit;
6645
6677
  }
@@ -6690,11 +6722,11 @@ input[type=button].btn-block {
6690
6722
  text-decoration: inherit;
6691
6723
  width: 100%;
6692
6724
  }
6693
- .dropdown-item-indicator-text-end:hover {
6725
+ .dropdown-item-indicator-text-end:hover, .dropdown-item-indicator-text-end.hover {
6694
6726
  color: inherit;
6695
6727
  text-decoration: inherit;
6696
6728
  }
6697
- .dropdown-item-indicator-text-end:focus {
6729
+ .dropdown-item-indicator-text-end.focus, .dropdown-item-indicator-text-end:focus {
6698
6730
  color: inherit;
6699
6731
  text-decoration: inherit;
6700
6732
  }
@@ -7767,10 +7799,43 @@ textarea.form-control-lg,
7767
7799
  }
7768
7800
  }
7769
7801
 
7802
+ .c-link {
7803
+ text-decoration: none;
7804
+ transition: box-shadow 0.15s ease-in-out;
7805
+ }
7806
+ @media (prefers-reduced-motion: reduce) {
7807
+ .c-link {
7808
+ transition: none;
7809
+ }
7810
+ }
7811
+ .c-link:hover, .c-link.hover {
7812
+ text-decoration: none;
7813
+ }
7814
+ .c-link.focus, .c-link:focus {
7815
+ border-radius: 1px;
7816
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7817
+ outline: 0;
7818
+ }
7819
+ .c-link.text-secondary {
7820
+ color: #212529 !important;
7821
+ }
7822
+ .c-link.text-secondary:hover, .c-link.text-secondary.hover {
7823
+ color: #000 !important;
7824
+ }
7825
+ .c-link.text-secondary.focus, .c-link.text-secondary:focus {
7826
+ color: #000 !important;
7827
+ }
7828
+ .c-link.text-tertiary {
7829
+ color: #212529 !important;
7830
+ }
7831
+ .c-link.text-tertiary:hover, .c-link.text-tertiary.hover {
7832
+ color: #000 !important;
7833
+ text-decoration: underline;
7834
+ }
7770
7835
  .component-link {
7771
7836
  color: #6c757d;
7772
7837
  }
7773
- .component-link:hover {
7838
+ .component-link:hover, .component-link.hover {
7774
7839
  color: #494f54;
7775
7840
  }
7776
7841
  .single-link {
@@ -7780,13 +7845,13 @@ textarea.form-control-lg,
7780
7845
  .link-primary {
7781
7846
  color: #007bff;
7782
7847
  }
7783
- .link-primary:hover {
7848
+ .link-primary:hover, .link-primary.hover {
7784
7849
  color: #0056b3;
7785
7850
  }
7786
7851
  .link-secondary {
7787
7852
  color: #6c757d;
7788
7853
  }
7789
- .link-secondary:hover {
7854
+ .link-secondary:hover, .link-secondary.hover {
7790
7855
  color: #494f54;
7791
7856
  }
7792
7857
  button.link-outline {
@@ -7817,10 +7882,10 @@ button.link-outline {
7817
7882
  transition: none;
7818
7883
  }
7819
7884
  }
7820
- .link-outline:hover {
7885
+ .link-outline:hover, .link-outline.hover {
7821
7886
  text-decoration: none;
7822
7887
  }
7823
- .link-outline:focus {
7888
+ .link-outline.focus, .link-outline:focus {
7824
7889
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7825
7890
  outline: 0;
7826
7891
  }
@@ -7844,7 +7909,7 @@ button.link-outline {
7844
7909
  border-color: #007bff;
7845
7910
  color: #007bff;
7846
7911
  }
7847
- .link-outline-primary:hover {
7912
+ .link-outline-primary:hover, .link-outline-primary.hover {
7848
7913
  background-color: #007bff;
7849
7914
  color: #fff;
7850
7915
  }
@@ -7870,7 +7935,7 @@ button.link-outline {
7870
7935
  border-color: #6c757d;
7871
7936
  color: #6c757d;
7872
7937
  }
7873
- .link-outline-secondary:hover {
7938
+ .link-outline-secondary:hover, .link-outline-secondary.hover {
7874
7939
  background-color: #6c757d;
7875
7940
  color: #fff;
7876
7941
  }
@@ -7931,8 +7996,9 @@ button.link-outline {
7931
7996
  .component-title [href] {
7932
7997
  color: #212529;
7933
7998
  }
7934
- .component-title[href]:hover,
7935
- .component-title [href]:hover {
7999
+ .component-title[href]:hover, .component-title[href].hover,
8000
+ .component-title [href]:hover,
8001
+ .component-title [href].hover {
7936
8002
  color: black;
7937
8003
  }
7938
8004
  .component-subtitle {
@@ -7943,8 +8009,9 @@ button.link-outline {
7943
8009
  .component-subtitle [href] {
7944
8010
  color: #6c757d;
7945
8011
  }
7946
- .component-subtitle[href]:hover,
7947
- .component-subtitle [href]:hover {
8012
+ .component-subtitle[href]:hover, .component-subtitle[href].hover,
8013
+ .component-subtitle [href]:hover,
8014
+ .component-subtitle [href].hover {
7948
8015
  color: #494f54;
7949
8016
  }
7950
8017
  .component-action {
@@ -7968,11 +8035,11 @@ button.link-outline {
7968
8035
  transition: none;
7969
8036
  }
7970
8037
  }
7971
- .component-action:hover {
8038
+ .component-action:hover, .component-action.hover {
7972
8039
  background-color: #6c757d;
7973
8040
  color: #fff;
7974
8041
  }
7975
- .component-action:focus {
8042
+ .component-action.focus, .component-action:focus {
7976
8043
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7977
8044
  outline: 0;
7978
8045
  }
@@ -10575,8 +10642,9 @@ label.custom-control-label {
10575
10642
  color: #212529;
10576
10643
  max-width: 100%;
10577
10644
  }
10578
- .list-group-title[href]:hover,
10579
- .list-group-title [href]:hover {
10645
+ .list-group-title[href]:hover, .list-group-title[href].hover,
10646
+ .list-group-title [href]:hover,
10647
+ .list-group-title [href].hover {
10580
10648
  color: black;
10581
10649
  }
10582
10650
  .list-group-subtitle {
@@ -10587,8 +10655,9 @@ label.custom-control-label {
10587
10655
  .list-group-subtitle [href] {
10588
10656
  color: #6c757d;
10589
10657
  }
10590
- .list-group-subtitle[href]:hover,
10591
- .list-group-subtitle [href]:hover {
10658
+ .list-group-subtitle[href]:hover, .list-group-subtitle[href].hover,
10659
+ .list-group-subtitle [href]:hover,
10660
+ .list-group-subtitle [href].hover {
10592
10661
  color: #494f54;
10593
10662
  }
10594
10663
  .list-group-text {
@@ -10599,8 +10668,9 @@ label.custom-control-label {
10599
10668
  .list-group-text [href] {
10600
10669
  color: #212529;
10601
10670
  }
10602
- .list-group-text[href]:hover,
10603
- .list-group-text [href]:hover {
10671
+ .list-group-text[href]:hover, .list-group-text[href].hover,
10672
+ .list-group-text [href]:hover,
10673
+ .list-group-text [href].hover {
10604
10674
  color: black;
10605
10675
  }
10606
10676
  .list-group-subtext {
@@ -10611,8 +10681,9 @@ label.custom-control-label {
10611
10681
  .list-group-subtext [href] {
10612
10682
  color: #6c757d;
10613
10683
  }
10614
- .list-group-subtext[href]:hover,
10615
- .list-group-subtext [href]:hover {
10684
+ .list-group-subtext[href]:hover, .list-group-subtext[href].hover,
10685
+ .list-group-subtext [href]:hover,
10686
+ .list-group-subtext [href].hover {
10616
10687
  color: #494f54;
10617
10688
  }
10618
10689
  .show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
@@ -11663,10 +11734,10 @@ label.custom-control-label {
11663
11734
  padding-top: 0.5rem;
11664
11735
  position: relative;
11665
11736
  }
11666
- .nav-link:hover {
11737
+ .nav-link:hover, .nav-link.hover {
11667
11738
  text-decoration: none;
11668
11739
  }
11669
- .nav-link:focus {
11740
+ .nav-link.focus, .nav-link:focus {
11670
11741
  text-decoration: none;
11671
11742
  z-index: 1;
11672
11743
  }
@@ -11978,10 +12049,10 @@ label.custom-control-label {
11978
12049
  border-radius: 0.25rem 0.25rem 0 0;
11979
12050
  white-space: nowrap;
11980
12051
  }
11981
- .nav-tabs .nav-link:hover {
12052
+ .nav-tabs .nav-link:hover, .nav-tabs .nav-link.hover {
11982
12053
  border-color: #e9ecef #e9ecef #dee2e6;
11983
12054
  }
11984
- .nav-tabs .nav-link:focus {
12055
+ .nav-tabs .nav-link.focus, .nav-tabs .nav-link:focus {
11985
12056
  border-color: #e9ecef #e9ecef #dee2e6;
11986
12057
  }
11987
12058
  .nav-tabs .nav-link:active {
@@ -12153,7 +12224,7 @@ label.custom-control-label {
12153
12224
  .menubar-vertical-expand-md.menubar-transparent .nav-link {
12154
12225
  color: #6c757d;
12155
12226
  }
12156
- .menubar-vertical-expand-md.menubar-transparent .nav-link:hover {
12227
+ .menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
12157
12228
  color: #494f54;
12158
12229
  }
12159
12230
  .menubar-vertical-expand-md.menubar-transparent .nav-link:active {
@@ -12170,7 +12241,7 @@ label.custom-control-label {
12170
12241
  border-radius: 0;
12171
12242
  color: #212529;
12172
12243
  }
12173
- .menubar-vertical-expand-md.menubar-transparent .nav-link:hover {
12244
+ .menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
12174
12245
  background-color: #f8f9fa;
12175
12246
  color: #16181b;
12176
12247
  }
@@ -12307,7 +12378,7 @@ label.custom-control-label {
12307
12378
  .menubar-vertical-expand-lg.menubar-transparent .nav-link {
12308
12379
  color: #6c757d;
12309
12380
  }
12310
- .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover {
12381
+ .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
12311
12382
  color: #494f54;
12312
12383
  }
12313
12384
  .menubar-vertical-expand-lg.menubar-transparent .nav-link:active {
@@ -12324,7 +12395,7 @@ label.custom-control-label {
12324
12395
  border-radius: 0;
12325
12396
  color: #212529;
12326
12397
  }
12327
- .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover {
12398
+ .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
12328
12399
  background-color: #f8f9fa;
12329
12400
  color: #16181b;
12330
12401
  }
@@ -14341,7 +14412,7 @@ label.custom-control-label {
14341
14412
  .application-bar-dark .navbar-nav .nav-link {
14342
14413
  color: rgba(255, 255, 255, 0.5);
14343
14414
  }
14344
- .application-bar-dark .navbar-nav .nav-link:hover {
14415
+ .application-bar-dark .navbar-nav .nav-link:hover, .application-bar-dark .navbar-nav .nav-link.hover {
14345
14416
  color: rgba(255, 255, 255, 0.75);
14346
14417
  }
14347
14418
  .application-bar-dark .navbar-nav .nav-link:active {
@@ -15461,7 +15532,7 @@ label.custom-control-label {
15461
15532
  .management-bar-light .navbar-nav .nav-link {
15462
15533
  color: rgba(0, 0, 0, 0.5);
15463
15534
  }
15464
- .management-bar-light .navbar-nav .nav-link:hover {
15535
+ .management-bar-light .navbar-nav .nav-link:hover, .management-bar-light .navbar-nav .nav-link.hover {
15465
15536
  color: rgba(0, 0, 0, 0.7);
15466
15537
  }
15467
15538
  .management-bar-light .navbar-nav .nav-link:active {
@@ -15504,7 +15575,7 @@ label.custom-control-label {
15504
15575
  .management-bar-primary .navbar-nav .nav-link {
15505
15576
  color: rgba(0, 0, 0, 0.5);
15506
15577
  }
15507
- .management-bar-primary .navbar-nav .nav-link:hover {
15578
+ .management-bar-primary .navbar-nav .nav-link:hover, .management-bar-primary .navbar-nav .nav-link.hover {
15508
15579
  color: rgba(0, 0, 0, 0.7);
15509
15580
  }
15510
15581
  .management-bar-primary .navbar-nav .nav-link:active {
@@ -16016,13 +16087,21 @@ label.custom-control-label {
16016
16087
  ) * 0.5)) * -1);
16017
16088
  height: 0.25rem;
16018
16089
  }
16090
+ .navigation-bar .navbar-nav .nav-link {
16091
+ border-width: 0;
16092
+ font-size: inherit;
16093
+ }
16094
+ .navigation-bar .navbar-brand {
16095
+ border-width: 0;
16096
+ font-size: inherit;
16097
+ }
16019
16098
  .navigation-bar-light {
16020
16099
  background-color: #f8f9fa;
16021
16100
  }
16022
16101
  .navigation-bar-light .navbar-nav .nav-link {
16023
16102
  color: rgba(0, 0, 0, 0.5);
16024
16103
  }
16025
- .navigation-bar-light .navbar-nav .nav-link:hover {
16104
+ .navigation-bar-light .navbar-nav .nav-link:hover, .navigation-bar-light .navbar-nav .nav-link.hover {
16026
16105
  color: rgba(0, 0, 0, 0.7);
16027
16106
  }
16028
16107
  .navigation-bar-light .navbar-nav .nav-link:active {
@@ -16061,7 +16140,7 @@ label.custom-control-label {
16061
16140
  .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item {
16062
16141
  color: rgba(0, 0, 0, 0.5);
16063
16142
  }
16064
- .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:hover {
16143
+ .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:hover, .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item.hover {
16065
16144
  color: rgba(0, 0, 0, 0.7);
16066
16145
  }
16067
16146
  .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
@@ -16086,7 +16165,7 @@ label.custom-control-label {
16086
16165
  .navigation-bar-secondary .navbar-nav .nav-link {
16087
16166
  color: rgba(255, 255, 255, 0.65);
16088
16167
  }
16089
- .navigation-bar-secondary .navbar-nav .nav-link:hover {
16168
+ .navigation-bar-secondary .navbar-nav .nav-link:hover, .navigation-bar-secondary .navbar-nav .nav-link.hover {
16090
16169
  color: rgba(255, 255, 255, 0.9);
16091
16170
  }
16092
16171
  .navigation-bar-secondary .navbar-nav .nav-link:active {
@@ -16105,7 +16184,7 @@ label.custom-control-label {
16105
16184
  .navigation-bar-secondary .navbar-brand {
16106
16185
  color: rgba(255, 255, 255, 0.9);
16107
16186
  }
16108
- .navigation-bar-secondary .navbar-brand:hover {
16187
+ .navigation-bar-secondary .navbar-brand:hover, .navigation-bar-secondary .navbar-brand.hover {
16109
16188
  color: rgba(255, 255, 255, 0.9);
16110
16189
  }
16111
16190
  .navigation-bar-secondary .navbar-brand:active {
@@ -16131,7 +16210,7 @@ label.custom-control-label {
16131
16210
  .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item {
16132
16211
  color: rgba(255, 255, 255, 0.65);
16133
16212
  }
16134
- .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:hover {
16213
+ .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:hover, .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item.hover {
16135
16214
  color: rgba(255, 255, 255, 0.9);
16136
16215
  }
16137
16216
  .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
@@ -16180,6 +16259,7 @@ label.custom-control-label {
16180
16259
  border-style: solid;
16181
16260
  border-width: 0.0625rem;
16182
16261
  color: #007bff;
16262
+ cursor: pointer;
16183
16263
  display: inline-flex;
16184
16264
  height: 2.375rem;
16185
16265
  justify-content: center;
@@ -16191,14 +16271,14 @@ label.custom-control-label {
16191
16271
  padding-top: 0.5rem;
16192
16272
  position: relative;
16193
16273
  }
16194
- .page-link:hover {
16274
+ .page-link:hover, .page-link.hover {
16195
16275
  background-color: #e9ecef;
16196
16276
  border-color: #dee2e6;
16197
16277
  color: #0056b3;
16198
16278
  text-decoration: none;
16199
16279
  z-index: 2;
16200
16280
  }
16201
- .page-link:focus {
16281
+ .page-link.focus, .page-link:focus {
16202
16282
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
16203
16283
  outline: 0;
16204
16284
  z-index: 4;
@@ -16300,13 +16380,15 @@ label.custom-control-label {
16300
16380
  padding-top: 0.5rem;
16301
16381
  text-decoration: none;
16302
16382
  }
16303
- .pagination-items-per-page > a:hover,
16304
- .pagination-items-per-page > button:hover {
16383
+ .pagination-items-per-page > a:hover, .pagination-items-per-page > a.hover,
16384
+ .pagination-items-per-page > button:hover,
16385
+ .pagination-items-per-page > button.hover {
16305
16386
  background-color: #e9ecef;
16306
16387
  border-color: #dee2e6;
16307
16388
  color: #0056b3;
16308
16389
  }
16309
- .pagination-items-per-page > a:focus,
16390
+ .pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus,
16391
+ .pagination-items-per-page > button.focus,
16310
16392
  .pagination-items-per-page > button:focus {
16311
16393
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
16312
16394
  outline: 0;
@@ -16527,10 +16609,10 @@ label.custom-control-label {
16527
16609
  transition: none;
16528
16610
  }
16529
16611
  }
16530
- .panel-header-link:hover {
16612
+ .panel-header-link:hover, .panel-header-link.hover {
16531
16613
  color: inherit;
16532
16614
  }
16533
- .panel-header-link:focus {
16615
+ .panel-header-link.focus, .panel-header-link:focus {
16534
16616
  z-index: 1;
16535
16617
  }
16536
16618
  .panel-header-link.panel-header.collapsed {
@@ -17404,7 +17486,7 @@ fieldset + .sheet-footer {
17404
17486
  text-transform: none;
17405
17487
  }
17406
17488
 
17407
- a.sheet-subtitle:hover {
17489
+ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
17408
17490
  text-decoration: none;
17409
17491
  }
17410
17492
  .sheet-tertiary-title {
@@ -17582,6 +17664,7 @@ a.sheet-subtitle:hover {
17582
17664
  }
17583
17665
  .sidebar:focus, .sidebar.focus {
17584
17666
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
17667
+ outline: 0;
17585
17668
  }
17586
17669
  .sidebar .container-fluid {
17587
17670
  padding-left: 1rem;
@@ -17723,7 +17806,7 @@ a.sheet-subtitle:hover {
17723
17806
  .sidebar-light .component-navigation-bar .navbar-nav .nav-link {
17724
17807
  color: rgba(0, 0, 0, 0.5);
17725
17808
  }
17726
- .sidebar-light .component-navigation-bar .navbar-nav .nav-link:hover {
17809
+ .sidebar-light .component-navigation-bar .navbar-nav .nav-link:hover, .sidebar-light .component-navigation-bar .navbar-nav .nav-link.hover {
17727
17810
  color: rgba(0, 0, 0, 0.7);
17728
17811
  }
17729
17812
  .sidebar-light .component-navigation-bar .navbar-nav .nav-link:active {
@@ -17790,10 +17873,10 @@ a.sheet-subtitle:hover {
17790
17873
  transition: none;
17791
17874
  }
17792
17875
  }
17793
- .sidebar-dark .nav-nested .nav-link:hover {
17876
+ .sidebar-dark .nav-nested .nav-link:hover, .sidebar-dark .nav-nested .nav-link.hover {
17794
17877
  color: #fff;
17795
17878
  }
17796
- .sidebar-dark .nav-nested .nav-link:focus {
17879
+ .sidebar-dark .nav-nested .nav-link.focus, .sidebar-dark .nav-nested .nav-link:focus {
17797
17880
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
17798
17881
  outline: 0;
17799
17882
  }
@@ -17848,10 +17931,10 @@ a.sheet-subtitle:hover {
17848
17931
  transition: none;
17849
17932
  }
17850
17933
  }
17851
- .sidebar-dark-l2 .nav-nested .nav-link:hover {
17934
+ .sidebar-dark-l2 .nav-nested .nav-link:hover, .sidebar-dark-l2 .nav-nested .nav-link.hover {
17852
17935
  color: #fff;
17853
17936
  }
17854
- .sidebar-dark-l2 .nav-nested .nav-link:focus {
17937
+ .sidebar-dark-l2 .nav-nested .nav-link.focus, .sidebar-dark-l2 .nav-nested .nav-link:focus {
17855
17938
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
17856
17939
  outline: 0;
17857
17940
  }
@@ -18422,14 +18505,15 @@ caption {
18422
18505
  .table-title [href] {
18423
18506
  color: #212529;
18424
18507
  }
18425
- .table-title[href]:hover,
18426
- .table-title [href]:hover {
18508
+ .table-title[href]:hover, .table-title[href].hover,
18509
+ .table-title [href]:hover,
18510
+ .table-title [href].hover {
18427
18511
  color: #212529;
18428
18512
  }
18429
18513
  .table-link {
18430
18514
  color: #495057;
18431
18515
  }
18432
- .table-link:hover {
18516
+ .table-link:hover, .table-link.hover {
18433
18517
  color: #262a2d;
18434
18518
  }
18435
18519
  .table-action-link {
@@ -18441,7 +18525,7 @@ caption {
18441
18525
  vertical-align: middle;
18442
18526
  width: 2rem;
18443
18527
  }
18444
- .table-action-link:hover {
18528
+ .table-action-link:hover, .table-action-link.hover {
18445
18529
  text-decoration: none;
18446
18530
  }
18447
18531
  .table-action-link .lexicon-icon {
@@ -18708,14 +18792,15 @@ caption {
18708
18792
  .table-list-title [href] {
18709
18793
  color: #212529;
18710
18794
  }
18711
- .table-list-title[href]:hover,
18712
- .table-list-title [href]:hover {
18795
+ .table-list-title[href]:hover, .table-list-title[href].hover,
18796
+ .table-list-title [href]:hover,
18797
+ .table-list-title [href].hover {
18713
18798
  color: #212529;
18714
18799
  }
18715
18800
  .table-list-link {
18716
18801
  color: #495057;
18717
18802
  }
18718
- .table-list-link:hover {
18803
+ .table-list-link:hover, .table-list-link.hover {
18719
18804
  color: #262a2d;
18720
18805
  }
18721
18806
  .table-list-action-link {
@@ -18726,7 +18811,7 @@ caption {
18726
18811
  vertical-align: middle;
18727
18812
  width: 2rem;
18728
18813
  }
18729
- .table-list-action-link:hover {
18814
+ .table-list-action-link:hover, .table-list-action-link.hover {
18730
18815
  text-decoration: none;
18731
18816
  }
18732
18817
  .table-list-action-link .lexicon-icon {
@@ -19152,7 +19237,7 @@ caption {
19152
19237
  color: #007bff;
19153
19238
  font-weight: 500;
19154
19239
  }
19155
- .subnav-tbar .component-link:hover {
19240
+ .subnav-tbar .component-link:hover, .subnav-tbar .component-link.hover {
19156
19241
  color: #0056b3;
19157
19242
  }
19158
19243
  .subnav-tbar .component-link:disabled, .subnav-tbar .component-link.disabled {
@@ -19249,7 +19334,7 @@ caption {
19249
19334
  .subnav-tbar-primary .component-link {
19250
19335
  color: #212529;
19251
19336
  }
19252
- .subnav-tbar-primary .component-link:hover {
19337
+ .subnav-tbar-primary .component-link:hover, .subnav-tbar-primary .component-link.hover {
19253
19338
  color: #212529;
19254
19339
  }
19255
19340
  .subnav-tbar-primary .component-link:disabled, .subnav-tbar-primary .component-link.disabled {
@@ -20469,10 +20554,10 @@ caption {
20469
20554
  -webkit-user-select: none;
20470
20555
  user-select: none;
20471
20556
  }
20472
- .treeview-link:hover {
20557
+ .treeview-link:hover, .treeview-link.hover {
20473
20558
  text-decoration: none;
20474
20559
  }
20475
- .treeview-link:focus {
20560
+ .treeview-link.focus, .treeview-link:focus {
20476
20561
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
20477
20562
  outline: 0;
20478
20563
  }
@@ -20537,7 +20622,7 @@ caption {
20537
20622
  .treeview-light .treeview-link {
20538
20623
  color: #6c757d;
20539
20624
  }
20540
- .treeview-light .treeview-link:hover {
20625
+ .treeview-light .treeview-link:hover, .treeview-light .treeview-link.hover {
20541
20626
  background-color: #f8f9fa;
20542
20627
  color: #212529;
20543
20628
  }
@@ -20553,7 +20638,7 @@ caption {
20553
20638
  background-color: transparent;
20554
20639
  color: rgba(108, 117, 125, 0.5);
20555
20640
  }
20556
- .treeview-light .treeview-link.treeview-no-hover:hover {
20641
+ .treeview-light .treeview-link.treeview-no-hover:hover, .treeview-light .treeview-link.treeview-no-hover.hover {
20557
20642
  background-color: transparent;
20558
20643
  color: #6c757d;
20559
20644
  }
@@ -20570,7 +20655,7 @@ caption {
20570
20655
  .treeview-dark .treeview-link {
20571
20656
  color: #a9afb5;
20572
20657
  }
20573
- .treeview-dark .treeview-link:hover {
20658
+ .treeview-dark .treeview-link:hover, .treeview-dark .treeview-link.hover {
20574
20659
  background-color: rgba(255, 255, 255, 0.04);
20575
20660
  }
20576
20661
  .treeview-dark .treeview-link.active {
@@ -20581,7 +20666,7 @@ caption {
20581
20666
  background-color: transparent;
20582
20667
  color: rgba(169, 175, 181, 0.5);
20583
20668
  }
20584
- .treeview-dark .treeview-link.treeview-no-hover:hover {
20669
+ .treeview-dark .treeview-link.treeview-no-hover:hover, .treeview-dark .treeview-link.treeview-no-hover.hover {
20585
20670
  background-color: transparent;
20586
20671
  color: #a9afb5;
20587
20672
  }
@@ -29527,7 +29612,9 @@ a.text-dark:hover, a.text-dark:focus {
29527
29612
  .text-decoration-none {
29528
29613
  text-decoration: none !important;
29529
29614
  }
29530
-
29615
+ .text-decoration-underline {
29616
+ text-decoration: underline !important;
29617
+ }
29531
29618
  .text-break {
29532
29619
  overflow-wrap: break-word !important;
29533
29620
  word-wrap: break-word !important;