@clayui/css 3.121.0 → 3.124.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 +198 -45
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +156 -4
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +152 -3
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/flags-de-AT.svg +12 -0
- package/lib/images/icons/flags-de-CH.svg +11 -0
- package/lib/images/icons/flags-fr-BE.svg +12 -0
- package/lib/images/icons/flags-fr-CH.svg +11 -0
- package/lib/images/icons/flags-it-CH.svg +11 -0
- package/lib/images/icons/flags-mk-MK.svg +19 -0
- package/lib/images/icons/flags-no-NO.svg +14 -0
- package/lib/images/icons/flags-rw-RW.svg +8 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/marketplace.svg +8 -0
- package/package.json +2 -2
- package/src/images/icons/flags-de-AT.svg +12 -0
- package/src/images/icons/flags-de-CH.svg +11 -0
- package/src/images/icons/flags-fr-BE.svg +12 -0
- package/src/images/icons/flags-fr-CH.svg +11 -0
- package/src/images/icons/flags-it-CH.svg +11 -0
- package/src/images/icons/flags-mk-MK.svg +19 -0
- package/src/images/icons/flags-no-NO.svg +14 -0
- package/src/images/icons/flags-rw-RW.svg +8 -0
- package/src/images/icons/marketplace.svg +8 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +10 -10
- package/src/scss/atlas/variables/_menubar.scss +1 -0
- package/src/scss/cadmin/components/_menubar.scss +8 -0
- package/src/scss/cadmin/variables/_menubar.scss +124 -0
- package/src/scss/cadmin/variables/_sidebar.scss +0 -1
- package/src/scss/cadmin/variables/_tables.scss +10 -0
- package/src/scss/components/_icons.scss +2 -1
- package/src/scss/components/_menubar.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +18 -0
- package/src/scss/mixins/_links.scss +34 -0
- package/src/scss/mixins/_menubar.scss +12 -0
- package/src/scss/mixins/_tables.scss +24 -0
- package/src/scss/variables/_menubar.scss +123 -0
- package/src/scss/variables/_navs.scss +2 -0
- package/src/scss/variables/_sidebar.scss +0 -1
- package/src/scss/variables/_tables.scss +10 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.124.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>
|
|
@@ -553,7 +553,7 @@ strong {
|
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
code {
|
|
556
|
-
color: #
|
|
556
|
+
color: #e50082;
|
|
557
557
|
font-size: 87.5%;
|
|
558
558
|
word-wrap: break-word;
|
|
559
559
|
}
|
|
@@ -966,11 +966,13 @@ pre code {
|
|
|
966
966
|
}
|
|
967
967
|
|
|
968
968
|
a.collapse-icon,
|
|
969
|
-
button.collapse-icon
|
|
969
|
+
button.collapse-icon,
|
|
970
|
+
.collapse-icon[tabindex] {
|
|
970
971
|
padding-right: 2.28125rem;
|
|
971
972
|
}
|
|
972
973
|
a.collapse-icon .c-inner,
|
|
973
|
-
button.collapse-icon .c-inner
|
|
974
|
+
button.collapse-icon .c-inner,
|
|
975
|
+
.collapse-icon[tabindex] .c-inner {
|
|
974
976
|
margin-right: -2.28125rem;
|
|
975
977
|
}
|
|
976
978
|
|
|
@@ -13550,12 +13552,17 @@ label.custom-control-label {
|
|
|
13550
13552
|
}
|
|
13551
13553
|
|
|
13552
13554
|
.nav-link {
|
|
13555
|
+
cursor: pointer;
|
|
13553
13556
|
display: block;
|
|
13554
13557
|
padding-bottom: 0.625rem;
|
|
13555
13558
|
padding-left: 1rem;
|
|
13556
13559
|
padding-right: 1rem;
|
|
13557
13560
|
padding-top: 0.625rem;
|
|
13558
13561
|
position: relative;
|
|
13562
|
+
-ms-user-select: none;
|
|
13563
|
+
-moz-user-select: none;
|
|
13564
|
+
-webkit-user-select: none;
|
|
13565
|
+
user-select: none;
|
|
13559
13566
|
}
|
|
13560
13567
|
.nav-link:hover, .nav-link.hover {
|
|
13561
13568
|
text-decoration: none;
|
|
@@ -13978,6 +13985,142 @@ label.custom-control-label {
|
|
|
13978
13985
|
display: none;
|
|
13979
13986
|
}
|
|
13980
13987
|
|
|
13988
|
+
.menubar-primary .nav-item {
|
|
13989
|
+
position: relative;
|
|
13990
|
+
}
|
|
13991
|
+
.menubar-primary .nav-link {
|
|
13992
|
+
border-radius: 0;
|
|
13993
|
+
color: #272833;
|
|
13994
|
+
line-height: 24px;
|
|
13995
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
13996
|
+
}
|
|
13997
|
+
@media (prefers-reduced-motion: reduce) {
|
|
13998
|
+
.menubar-primary .nav-link {
|
|
13999
|
+
transition: none;
|
|
14000
|
+
}
|
|
14001
|
+
}
|
|
14002
|
+
.c-prefers-reduced-motion .menubar-primary .nav-link {
|
|
14003
|
+
transition: none;
|
|
14004
|
+
}
|
|
14005
|
+
|
|
14006
|
+
.menubar-primary .nav-link::before {
|
|
14007
|
+
bottom: 0;
|
|
14008
|
+
content: "";
|
|
14009
|
+
display: block;
|
|
14010
|
+
left: 0;
|
|
14011
|
+
position: absolute;
|
|
14012
|
+
top: 0;
|
|
14013
|
+
transition: all 0.2s ease-in-out;
|
|
14014
|
+
}
|
|
14015
|
+
@media (prefers-reduced-motion: reduce) {
|
|
14016
|
+
.menubar-primary .nav-link::before {
|
|
14017
|
+
transition: none;
|
|
14018
|
+
}
|
|
14019
|
+
}
|
|
14020
|
+
.c-prefers-reduced-motion .menubar-primary .nav-link::before {
|
|
14021
|
+
transition: none;
|
|
14022
|
+
}
|
|
14023
|
+
|
|
14024
|
+
.menubar-primary .nav-link:hover, .menubar-primary .nav-link.hover {
|
|
14025
|
+
background-color: #f0f5ff;
|
|
14026
|
+
color: #272833;
|
|
14027
|
+
letter-spacing: 0;
|
|
14028
|
+
}
|
|
14029
|
+
.menubar-primary .nav-link:hover::before, .menubar-primary .nav-link.hover::before {
|
|
14030
|
+
background: #9b92a5;
|
|
14031
|
+
width: 0.125rem;
|
|
14032
|
+
}
|
|
14033
|
+
.menubar-primary .nav-link.focus, .menubar-primary .nav-link:focus-visible, .c-prefers-focus .menubar-primary .nav-link:focus {
|
|
14034
|
+
box-shadow: none;
|
|
14035
|
+
color: #272833;
|
|
14036
|
+
outline: 0;
|
|
14037
|
+
}
|
|
14038
|
+
.menubar-primary .nav-link.focus::after, .menubar-primary .nav-link:focus-visible::after, .c-prefers-focus .menubar-primary .nav-link:focus::after {
|
|
14039
|
+
bottom: 0;
|
|
14040
|
+
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14041
|
+
content: "";
|
|
14042
|
+
display: block;
|
|
14043
|
+
left: 0;
|
|
14044
|
+
pointer-events: none;
|
|
14045
|
+
position: absolute;
|
|
14046
|
+
right: 0;
|
|
14047
|
+
top: 0;
|
|
14048
|
+
}
|
|
14049
|
+
.menubar-primary .nav-link:active {
|
|
14050
|
+
color: #272833;
|
|
14051
|
+
}
|
|
14052
|
+
.menubar-primary .nav-link.active {
|
|
14053
|
+
font-weight: 600;
|
|
14054
|
+
background-color: #f0f5ff;
|
|
14055
|
+
color: #272833;
|
|
14056
|
+
}
|
|
14057
|
+
.menubar-primary .nav-link.active::before {
|
|
14058
|
+
background-color: #0b5fff;
|
|
14059
|
+
width: 0.375rem;
|
|
14060
|
+
}
|
|
14061
|
+
.menubar-primary .nav-link.active:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link.active:focus::before {
|
|
14062
|
+
display: none;
|
|
14063
|
+
}
|
|
14064
|
+
.menubar-primary .nav-link:disabled, .menubar-primary .nav-link.disabled {
|
|
14065
|
+
background-color: transparent;
|
|
14066
|
+
color: #a7a9bc;
|
|
14067
|
+
box-shadow: none;
|
|
14068
|
+
font-weight: 400;
|
|
14069
|
+
letter-spacing: 0.016rem;
|
|
14070
|
+
}
|
|
14071
|
+
.menubar-primary .nav-link:disabled::before, .menubar-primary .nav-link.disabled::before {
|
|
14072
|
+
content: none;
|
|
14073
|
+
}
|
|
14074
|
+
.menubar-primary .nav-link:disabled::after, .menubar-primary .nav-link.disabled::after {
|
|
14075
|
+
content: none;
|
|
14076
|
+
}
|
|
14077
|
+
.menubar-primary .nav-link[aria-expanded=true], .menubar-primary .nav-link.show {
|
|
14078
|
+
font-weight: 600;
|
|
14079
|
+
color: #272833;
|
|
14080
|
+
}
|
|
14081
|
+
.menubar-primary .nav-link[aria-expanded=true]::before, .menubar-primary .nav-link.show::before {
|
|
14082
|
+
background-color: transparent;
|
|
14083
|
+
width: 0;
|
|
14084
|
+
}
|
|
14085
|
+
.menubar-primary .nav-link[aria-expanded=true]:hover::before, .menubar-primary .nav-link.show:hover::before {
|
|
14086
|
+
background-color: #9b92a5;
|
|
14087
|
+
width: 0.125rem;
|
|
14088
|
+
}
|
|
14089
|
+
.menubar-primary .nav-link[aria-expanded=true]:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link[aria-expanded=true]:focus::before, .menubar-primary .nav-link.show:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link.show:focus::before {
|
|
14090
|
+
display: none;
|
|
14091
|
+
}
|
|
14092
|
+
.menubar-primary .nav-link.collapse-icon {
|
|
14093
|
+
font-size: 0.75rem;
|
|
14094
|
+
font-weight: 600;
|
|
14095
|
+
text-transform: uppercase;
|
|
14096
|
+
}
|
|
14097
|
+
.menubar-primary .nav-link.collapse-icon .collapse-icon-closed {
|
|
14098
|
+
top: calc(22px - 0.5em);
|
|
14099
|
+
}
|
|
14100
|
+
.menubar-primary .nav-link.collapse-icon .collapse-icon-open {
|
|
14101
|
+
top: calc(22px - 0.5em);
|
|
14102
|
+
}
|
|
14103
|
+
.menubar-primary .nav-link .autofit-row {
|
|
14104
|
+
align-items: center;
|
|
14105
|
+
margin-left: -0.25rem;
|
|
14106
|
+
margin-right: -0.25rem;
|
|
14107
|
+
}
|
|
14108
|
+
.menubar-primary .nav-link .autofit-row .autofit-col {
|
|
14109
|
+
padding-left: 0.25rem;
|
|
14110
|
+
padding-right: 0.25rem;
|
|
14111
|
+
}
|
|
14112
|
+
.menubar-primary .menubar-actions-1 {
|
|
14113
|
+
padding-right: 4rem;
|
|
14114
|
+
}
|
|
14115
|
+
.menubar-primary .menubar-action {
|
|
14116
|
+
position: absolute;
|
|
14117
|
+
top: 0.625rem;
|
|
14118
|
+
right: 2rem;
|
|
14119
|
+
}
|
|
14120
|
+
.menubar-primary .nav .nav .nav > li > .nav-link {
|
|
14121
|
+
margin-left: 1rem;
|
|
14122
|
+
}
|
|
14123
|
+
|
|
13981
14124
|
.menubar-vertical-expand-md {
|
|
13982
14125
|
max-width: 15.625rem;
|
|
13983
14126
|
}
|
|
@@ -14049,6 +14192,7 @@ label.custom-control-label {
|
|
|
14049
14192
|
border-radius: 0.25rem;
|
|
14050
14193
|
color: #6b6c7e;
|
|
14051
14194
|
letter-spacing: 0.016rem;
|
|
14195
|
+
line-height: 1.25rem;
|
|
14052
14196
|
margin-bottom: 0.25rem;
|
|
14053
14197
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
14054
14198
|
}
|
|
@@ -20298,7 +20442,6 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20298
20442
|
}
|
|
20299
20443
|
.sidebar-header .component-title {
|
|
20300
20444
|
font-size: 1.25rem;
|
|
20301
|
-
font-weight: 600;
|
|
20302
20445
|
overflow-wrap: break-word;
|
|
20303
20446
|
word-wrap: break-word;
|
|
20304
20447
|
}
|
|
@@ -20818,6 +20961,16 @@ caption {
|
|
|
20818
20961
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
20819
20962
|
outline: 0;
|
|
20820
20963
|
}
|
|
20964
|
+
.table thead .autofit-col {
|
|
20965
|
+
padding-left: 0.125rem;
|
|
20966
|
+
padding-right: 0.125rem;
|
|
20967
|
+
}
|
|
20968
|
+
.table thead .autofit-col:first-child {
|
|
20969
|
+
padding-left: 0;
|
|
20970
|
+
}
|
|
20971
|
+
.table thead .autofit-col:last-child {
|
|
20972
|
+
padding-right: 0;
|
|
20973
|
+
}
|
|
20821
20974
|
.table th:first-child,
|
|
20822
20975
|
.table td:first-child,
|
|
20823
20976
|
.table .table-column-start {
|
|
@@ -28417,103 +28570,103 @@ ul.autofit-row {
|
|
|
28417
28570
|
}
|
|
28418
28571
|
|
|
28419
28572
|
.bg-blue {
|
|
28420
|
-
background-color: #
|
|
28573
|
+
background-color: #006eff !important;
|
|
28421
28574
|
}
|
|
28422
28575
|
|
|
28423
28576
|
a.bg-blue:hover, a.bg-blue:focus,
|
|
28424
28577
|
button.bg-blue:hover,
|
|
28425
28578
|
button.bg-blue:focus {
|
|
28426
|
-
background-color: #
|
|
28579
|
+
background-color: #0058cc !important;
|
|
28427
28580
|
}
|
|
28428
28581
|
|
|
28429
28582
|
.bg-indigo {
|
|
28430
|
-
background-color: #
|
|
28583
|
+
background-color: #4d5fff !important;
|
|
28431
28584
|
}
|
|
28432
28585
|
|
|
28433
28586
|
a.bg-indigo:hover, a.bg-indigo:focus,
|
|
28434
28587
|
button.bg-indigo:hover,
|
|
28435
28588
|
button.bg-indigo:focus {
|
|
28436
|
-
background-color: #
|
|
28589
|
+
background-color: #1a31ff !important;
|
|
28437
28590
|
}
|
|
28438
28591
|
|
|
28439
28592
|
.bg-purple {
|
|
28440
|
-
background-color: #
|
|
28593
|
+
background-color: #aa33ff !important;
|
|
28441
28594
|
}
|
|
28442
28595
|
|
|
28443
28596
|
a.bg-purple:hover, a.bg-purple:focus,
|
|
28444
28597
|
button.bg-purple:hover,
|
|
28445
28598
|
button.bg-purple:focus {
|
|
28446
|
-
background-color: #
|
|
28599
|
+
background-color: #9500ff !important;
|
|
28447
28600
|
}
|
|
28448
28601
|
|
|
28449
28602
|
.bg-pink {
|
|
28450
|
-
background-color: #
|
|
28603
|
+
background-color: #e50082 !important;
|
|
28451
28604
|
}
|
|
28452
28605
|
|
|
28453
28606
|
a.bg-pink:hover, a.bg-pink:focus,
|
|
28454
28607
|
button.bg-pink:hover,
|
|
28455
28608
|
button.bg-pink:focus {
|
|
28456
|
-
background-color: #
|
|
28609
|
+
background-color: #b20065 !important;
|
|
28457
28610
|
}
|
|
28458
28611
|
|
|
28459
28612
|
.bg-red {
|
|
28460
|
-
background-color: #
|
|
28613
|
+
background-color: #e60000 !important;
|
|
28461
28614
|
}
|
|
28462
28615
|
|
|
28463
28616
|
a.bg-red:hover, a.bg-red:focus,
|
|
28464
28617
|
button.bg-red:hover,
|
|
28465
28618
|
button.bg-red:focus {
|
|
28466
|
-
background-color: #
|
|
28619
|
+
background-color: #b30000 !important;
|
|
28467
28620
|
}
|
|
28468
28621
|
|
|
28469
28622
|
.bg-orange {
|
|
28470
|
-
background-color: #
|
|
28623
|
+
background-color: #cc4e00 !important;
|
|
28471
28624
|
}
|
|
28472
28625
|
|
|
28473
28626
|
a.bg-orange:hover, a.bg-orange:focus,
|
|
28474
28627
|
button.bg-orange:hover,
|
|
28475
28628
|
button.bg-orange:focus {
|
|
28476
|
-
background-color: #
|
|
28629
|
+
background-color: #993b00 !important;
|
|
28477
28630
|
}
|
|
28478
28631
|
|
|
28479
28632
|
.bg-yellow {
|
|
28480
|
-
background-color: #
|
|
28633
|
+
background-color: #ffbb00 !important;
|
|
28481
28634
|
}
|
|
28482
28635
|
|
|
28483
28636
|
a.bg-yellow:hover, a.bg-yellow:focus,
|
|
28484
28637
|
button.bg-yellow:hover,
|
|
28485
28638
|
button.bg-yellow:focus {
|
|
28486
|
-
background-color: #
|
|
28639
|
+
background-color: #cc9600 !important;
|
|
28487
28640
|
}
|
|
28488
28641
|
|
|
28489
28642
|
.bg-green {
|
|
28490
|
-
background-color: #
|
|
28643
|
+
background-color: #458613 !important;
|
|
28491
28644
|
}
|
|
28492
28645
|
|
|
28493
28646
|
a.bg-green:hover, a.bg-green:focus,
|
|
28494
28647
|
button.bg-green:hover,
|
|
28495
28648
|
button.bg-green:focus {
|
|
28496
|
-
background-color: #
|
|
28649
|
+
background-color: #2e590d !important;
|
|
28497
28650
|
}
|
|
28498
28651
|
|
|
28499
28652
|
.bg-teal {
|
|
28500
|
-
background-color: #
|
|
28653
|
+
background-color: #1b7e6e !important;
|
|
28501
28654
|
}
|
|
28502
28655
|
|
|
28503
28656
|
a.bg-teal:hover, a.bg-teal:focus,
|
|
28504
28657
|
button.bg-teal:hover,
|
|
28505
28658
|
button.bg-teal:focus {
|
|
28506
|
-
background-color: #
|
|
28659
|
+
background-color: #125449 !important;
|
|
28507
28660
|
}
|
|
28508
28661
|
|
|
28509
28662
|
.bg-cyan {
|
|
28510
|
-
background-color: #
|
|
28663
|
+
background-color: #0077b3 !important;
|
|
28511
28664
|
}
|
|
28512
28665
|
|
|
28513
28666
|
a.bg-cyan:hover, a.bg-cyan:focus,
|
|
28514
28667
|
button.bg-cyan:hover,
|
|
28515
28668
|
button.bg-cyan:focus {
|
|
28516
|
-
background-color: #
|
|
28669
|
+
background-color: #005580 !important;
|
|
28517
28670
|
}
|
|
28518
28671
|
|
|
28519
28672
|
.bg-primary {
|
|
@@ -34170,83 +34323,83 @@ button.bg-dark:focus {
|
|
|
34170
34323
|
}
|
|
34171
34324
|
|
|
34172
34325
|
.text-blue {
|
|
34173
|
-
color: #
|
|
34326
|
+
color: #006eff !important;
|
|
34174
34327
|
}
|
|
34175
34328
|
|
|
34176
34329
|
a.text-blue:hover, a.text-blue:focus {
|
|
34177
|
-
color: #
|
|
34330
|
+
color: #004db3 !important;
|
|
34178
34331
|
}
|
|
34179
34332
|
|
|
34180
34333
|
.text-indigo {
|
|
34181
|
-
color: #
|
|
34334
|
+
color: #4d5fff !important;
|
|
34182
34335
|
}
|
|
34183
34336
|
|
|
34184
34337
|
a.text-indigo:hover, a.text-indigo:focus {
|
|
34185
|
-
color: #
|
|
34338
|
+
color: #011aff !important;
|
|
34186
34339
|
}
|
|
34187
34340
|
|
|
34188
34341
|
.text-purple {
|
|
34189
|
-
color: #
|
|
34342
|
+
color: #aa33ff !important;
|
|
34190
34343
|
}
|
|
34191
34344
|
|
|
34192
34345
|
a.text-purple:hover, a.text-purple:focus {
|
|
34193
|
-
color: #
|
|
34346
|
+
color: #8600e6 !important;
|
|
34194
34347
|
}
|
|
34195
34348
|
|
|
34196
34349
|
.text-pink {
|
|
34197
|
-
color: #
|
|
34350
|
+
color: #e50082 !important;
|
|
34198
34351
|
}
|
|
34199
34352
|
|
|
34200
34353
|
a.text-pink:hover, a.text-pink:focus {
|
|
34201
|
-
color: #
|
|
34354
|
+
color: #990057 !important;
|
|
34202
34355
|
}
|
|
34203
34356
|
|
|
34204
34357
|
.text-red {
|
|
34205
|
-
color: #
|
|
34358
|
+
color: #e60000 !important;
|
|
34206
34359
|
}
|
|
34207
34360
|
|
|
34208
34361
|
a.text-red:hover, a.text-red:focus {
|
|
34209
|
-
color: #
|
|
34362
|
+
color: #9a0000 !important;
|
|
34210
34363
|
}
|
|
34211
34364
|
|
|
34212
34365
|
.text-orange {
|
|
34213
|
-
color: #
|
|
34366
|
+
color: #cc4e00 !important;
|
|
34214
34367
|
}
|
|
34215
34368
|
|
|
34216
34369
|
a.text-orange:hover, a.text-orange:focus {
|
|
34217
|
-
color: #
|
|
34370
|
+
color: #803100 !important;
|
|
34218
34371
|
}
|
|
34219
34372
|
|
|
34220
34373
|
.text-yellow {
|
|
34221
|
-
color: #
|
|
34374
|
+
color: #ffbb00 !important;
|
|
34222
34375
|
}
|
|
34223
34376
|
|
|
34224
34377
|
a.text-yellow:hover, a.text-yellow:focus {
|
|
34225
|
-
color: #
|
|
34378
|
+
color: #b38300 !important;
|
|
34226
34379
|
}
|
|
34227
34380
|
|
|
34228
34381
|
.text-green {
|
|
34229
|
-
color: #
|
|
34382
|
+
color: #458613 !important;
|
|
34230
34383
|
}
|
|
34231
34384
|
|
|
34232
34385
|
a.text-green:hover, a.text-green:focus {
|
|
34233
|
-
color: #
|
|
34386
|
+
color: #23430a !important;
|
|
34234
34387
|
}
|
|
34235
34388
|
|
|
34236
34389
|
.text-teal {
|
|
34237
|
-
color: #
|
|
34390
|
+
color: #1b7e6e !important;
|
|
34238
34391
|
}
|
|
34239
34392
|
|
|
34240
34393
|
a.text-teal:hover, a.text-teal:focus {
|
|
34241
|
-
color: #
|
|
34394
|
+
color: #0e3f37 !important;
|
|
34242
34395
|
}
|
|
34243
34396
|
|
|
34244
34397
|
.text-cyan {
|
|
34245
|
-
color: #
|
|
34398
|
+
color: #0077b3 !important;
|
|
34246
34399
|
}
|
|
34247
34400
|
|
|
34248
34401
|
a.text-cyan:hover, a.text-cyan:focus {
|
|
34249
|
-
color: #
|
|
34402
|
+
color: #004467 !important;
|
|
34250
34403
|
}
|
|
34251
34404
|
|
|
34252
34405
|
.text-primary {
|