@clayui/css 3.122.0 → 3.126.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 +285 -49
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +244 -8
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +280 -49
- 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/gallery.svg +7 -0
- package/lib/images/icons/icons.svg +1 -1
- 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/gallery.svg +7 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +21 -11
- package/src/scss/cadmin/components/_menubar.scss +8 -0
- package/src/scss/cadmin/components/_multi-step-nav.scss +75 -8
- package/src/scss/cadmin/variables/_globals.scss +21 -11
- package/src/scss/cadmin/variables/_menubar.scss +122 -0
- package/src/scss/cadmin/variables/_multi-step-nav.scss +26 -0
- package/src/scss/cadmin/variables/_stickers.scss +110 -0
- package/src/scss/cadmin/variables/_toggle-switch.scss +2 -3
- package/src/scss/components/_icons.scss +2 -1
- package/src/scss/components/_menubar.scss +8 -0
- package/src/scss/components/_multi-step-nav.scss +68 -8
- package/src/scss/functions/_lx-icons-generated.scss +16 -0
- package/src/scss/mixins/_links.scss +34 -0
- package/src/scss/mixins/_menubar.scss +12 -0
- package/src/scss/variables/_globals.scss +10 -0
- package/src/scss/variables/_menubar.scss +122 -0
- package/src/scss/variables/_multi-step-nav.scss +26 -0
- package/src/scss/variables/_navs.scss +2 -0
- package/src/scss/variables/_stickers.scss +110 -0
- package/src/scss/variables/_toggle-switch.scss +2 -3
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.126.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: #e60000;
|
|
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
|
|
|
@@ -5590,6 +5592,56 @@ input[type=button].btn-block {
|
|
|
5590
5592
|
background-color: #fff;
|
|
5591
5593
|
color: #272833;
|
|
5592
5594
|
}
|
|
5595
|
+
.sticker-outline-0 {
|
|
5596
|
+
background-color: #f1f2f5;
|
|
5597
|
+
border: 1px solid #272833;
|
|
5598
|
+
color: #272833;
|
|
5599
|
+
}
|
|
5600
|
+
.sticker-outline-1 {
|
|
5601
|
+
background-color: #f2e5ff;
|
|
5602
|
+
border: 1px solid #aa33ff;
|
|
5603
|
+
color: #aa33ff;
|
|
5604
|
+
}
|
|
5605
|
+
.sticker-outline-2 {
|
|
5606
|
+
background-color: #fff8e5;
|
|
5607
|
+
border: 1px solid #b38900;
|
|
5608
|
+
color: #b38900;
|
|
5609
|
+
}
|
|
5610
|
+
.sticker-outline-3 {
|
|
5611
|
+
background-color: #f1fce9;
|
|
5612
|
+
border: 1px solid #458613;
|
|
5613
|
+
color: #458613;
|
|
5614
|
+
}
|
|
5615
|
+
.sticker-outline-4 {
|
|
5616
|
+
background-color: #ffe5e5;
|
|
5617
|
+
border: 1px solid #e60000;
|
|
5618
|
+
color: #e60000;
|
|
5619
|
+
}
|
|
5620
|
+
.sticker-outline-5 {
|
|
5621
|
+
background-color: #fff0e5;
|
|
5622
|
+
border: 1px solid #cc4e00;
|
|
5623
|
+
color: #cc4e00;
|
|
5624
|
+
}
|
|
5625
|
+
.sticker-outline-6 {
|
|
5626
|
+
background-color: #eafbf8;
|
|
5627
|
+
border: 1px solid #1b7e6e;
|
|
5628
|
+
color: #1b7e6e;
|
|
5629
|
+
}
|
|
5630
|
+
.sticker-outline-7 {
|
|
5631
|
+
background-color: #e5f6ff;
|
|
5632
|
+
border: 1px solid #0077b3;
|
|
5633
|
+
color: #0077b3;
|
|
5634
|
+
}
|
|
5635
|
+
.sticker-outline-8 {
|
|
5636
|
+
background-color: #ffe5f4;
|
|
5637
|
+
border: 1px solid #e50082;
|
|
5638
|
+
color: #800048;
|
|
5639
|
+
}
|
|
5640
|
+
.sticker-outline-9 {
|
|
5641
|
+
background-color: #fff;
|
|
5642
|
+
border: 1px solid #393a4a;
|
|
5643
|
+
color: #393a4a;
|
|
5644
|
+
}
|
|
5593
5645
|
.sticker-circle {
|
|
5594
5646
|
border-radius: 5000px;
|
|
5595
5647
|
}
|
|
@@ -13297,6 +13349,9 @@ label.custom-control-label {
|
|
|
13297
13349
|
margin-bottom: 10px;
|
|
13298
13350
|
position: relative;
|
|
13299
13351
|
}
|
|
13352
|
+
.multi-step-item:last-child .multi-step-divider {
|
|
13353
|
+
display: none;
|
|
13354
|
+
}
|
|
13300
13355
|
.multi-step-item.active .multi-step-icon {
|
|
13301
13356
|
background-color: #0b5fff;
|
|
13302
13357
|
background-position: center;
|
|
@@ -13352,9 +13407,10 @@ label.custom-control-label {
|
|
|
13352
13407
|
cursor: not-allowed;
|
|
13353
13408
|
opacity: 1;
|
|
13354
13409
|
}
|
|
13355
|
-
.multi-step-item.disabled .multi-step-icon:focus {
|
|
13410
|
+
.multi-step-item.disabled .multi-step-icon.focus, .multi-step-item.disabled .multi-step-icon:focus-visible {
|
|
13356
13411
|
box-shadow: none;
|
|
13357
13412
|
}
|
|
13413
|
+
|
|
13358
13414
|
.multi-step-item.disabled .multi-step-indicator-label {
|
|
13359
13415
|
color: #a7a9bc;
|
|
13360
13416
|
}
|
|
@@ -13430,6 +13486,7 @@ label.custom-control-label {
|
|
|
13430
13486
|
padding-left: 0;
|
|
13431
13487
|
padding-right: 0;
|
|
13432
13488
|
padding-top: 0;
|
|
13489
|
+
position: relative;
|
|
13433
13490
|
transition: box-shadow 0.15s ease-in-out;
|
|
13434
13491
|
width: 2rem;
|
|
13435
13492
|
}
|
|
@@ -13447,13 +13504,14 @@ label.custom-control-label {
|
|
|
13447
13504
|
color: #6b6c7e;
|
|
13448
13505
|
text-decoration: none;
|
|
13449
13506
|
}
|
|
13450
|
-
.multi-step-icon:focus {
|
|
13507
|
+
.multi-step-icon.focus, .multi-step-icon:focus-visible {
|
|
13451
13508
|
background-color: #e7e7ed;
|
|
13452
13509
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13453
13510
|
color: #6b6c7e;
|
|
13454
13511
|
outline: 0;
|
|
13455
13512
|
text-decoration: none;
|
|
13456
13513
|
}
|
|
13514
|
+
|
|
13457
13515
|
.multi-step-icon[data-multi-step-icon]::before {
|
|
13458
13516
|
content: '\FEFF' attr(data-multi-step-icon);
|
|
13459
13517
|
height: 2rem;
|
|
@@ -13483,6 +13541,28 @@ label.custom-control-label {
|
|
|
13483
13541
|
width: 150px;
|
|
13484
13542
|
}
|
|
13485
13543
|
|
|
13544
|
+
.multi-step-nav-center {
|
|
13545
|
+
padding: 0;
|
|
13546
|
+
text-align: center;
|
|
13547
|
+
}
|
|
13548
|
+
.multi-step-nav-center .multi-step-item {
|
|
13549
|
+
flex-grow: 1;
|
|
13550
|
+
width: 75px;
|
|
13551
|
+
}
|
|
13552
|
+
.multi-step-nav-center .multi-step-divider {
|
|
13553
|
+
left: 50%;
|
|
13554
|
+
margin-left: 1rem;
|
|
13555
|
+
width: calc(100% - 2rem);
|
|
13556
|
+
}
|
|
13557
|
+
.multi-step-nav-center .multi-step-indicator {
|
|
13558
|
+
left: 50%;
|
|
13559
|
+
transform: translateX(-50%);
|
|
13560
|
+
}
|
|
13561
|
+
.multi-step-nav-center .multi-step-title {
|
|
13562
|
+
margin-left: 12.5%;
|
|
13563
|
+
max-width: 75%;
|
|
13564
|
+
}
|
|
13565
|
+
|
|
13486
13566
|
@media (max-width: 767.98px) {
|
|
13487
13567
|
.multi-step-nav-collapse-sm {
|
|
13488
13568
|
flex-wrap: nowrap;
|
|
@@ -13500,6 +13580,23 @@ label.custom-control-label {
|
|
|
13500
13580
|
max-width: none;
|
|
13501
13581
|
transform: none;
|
|
13502
13582
|
}
|
|
13583
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-item {
|
|
13584
|
+
flex-grow: 0;
|
|
13585
|
+
width: auto;
|
|
13586
|
+
}
|
|
13587
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-item-expand {
|
|
13588
|
+
flex-grow: 1;
|
|
13589
|
+
width: 75px;
|
|
13590
|
+
}
|
|
13591
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-divider {
|
|
13592
|
+
left: auto;
|
|
13593
|
+
margin-left: 2rem;
|
|
13594
|
+
width: auto;
|
|
13595
|
+
}
|
|
13596
|
+
.multi-step-nav-collapse-sm.multi-step-nav-center .multi-step-indicator {
|
|
13597
|
+
left: auto;
|
|
13598
|
+
transform: none;
|
|
13599
|
+
}
|
|
13503
13600
|
.multi-step-nav-collapse-sm .active.multi-step-item {
|
|
13504
13601
|
position: static;
|
|
13505
13602
|
}
|
|
@@ -13550,12 +13647,17 @@ label.custom-control-label {
|
|
|
13550
13647
|
}
|
|
13551
13648
|
|
|
13552
13649
|
.nav-link {
|
|
13650
|
+
cursor: pointer;
|
|
13553
13651
|
display: block;
|
|
13554
13652
|
padding-bottom: 0.625rem;
|
|
13555
13653
|
padding-left: 1rem;
|
|
13556
13654
|
padding-right: 1rem;
|
|
13557
13655
|
padding-top: 0.625rem;
|
|
13558
13656
|
position: relative;
|
|
13657
|
+
-ms-user-select: none;
|
|
13658
|
+
-moz-user-select: none;
|
|
13659
|
+
-webkit-user-select: none;
|
|
13660
|
+
user-select: none;
|
|
13559
13661
|
}
|
|
13560
13662
|
.nav-link:hover, .nav-link.hover {
|
|
13561
13663
|
text-decoration: none;
|
|
@@ -13978,6 +14080,141 @@ label.custom-control-label {
|
|
|
13978
14080
|
display: none;
|
|
13979
14081
|
}
|
|
13980
14082
|
|
|
14083
|
+
.menubar-primary .nav-item {
|
|
14084
|
+
position: relative;
|
|
14085
|
+
}
|
|
14086
|
+
.menubar-primary .nav-link {
|
|
14087
|
+
border-radius: 0;
|
|
14088
|
+
color: #272833;
|
|
14089
|
+
line-height: 24px;
|
|
14090
|
+
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;
|
|
14091
|
+
}
|
|
14092
|
+
@media (prefers-reduced-motion: reduce) {
|
|
14093
|
+
.menubar-primary .nav-link {
|
|
14094
|
+
transition: none;
|
|
14095
|
+
}
|
|
14096
|
+
}
|
|
14097
|
+
.c-prefers-reduced-motion .menubar-primary .nav-link {
|
|
14098
|
+
transition: none;
|
|
14099
|
+
}
|
|
14100
|
+
|
|
14101
|
+
.menubar-primary .nav-link::before {
|
|
14102
|
+
bottom: 0;
|
|
14103
|
+
content: "";
|
|
14104
|
+
display: block;
|
|
14105
|
+
left: 0;
|
|
14106
|
+
position: absolute;
|
|
14107
|
+
top: 0;
|
|
14108
|
+
transition: all 0.2s ease-in-out;
|
|
14109
|
+
}
|
|
14110
|
+
@media (prefers-reduced-motion: reduce) {
|
|
14111
|
+
.menubar-primary .nav-link::before {
|
|
14112
|
+
transition: none;
|
|
14113
|
+
}
|
|
14114
|
+
}
|
|
14115
|
+
.c-prefers-reduced-motion .menubar-primary .nav-link::before {
|
|
14116
|
+
transition: none;
|
|
14117
|
+
}
|
|
14118
|
+
|
|
14119
|
+
.menubar-primary .nav-link:hover, .menubar-primary .nav-link.hover {
|
|
14120
|
+
background-color: #f0f5ff;
|
|
14121
|
+
color: #272833;
|
|
14122
|
+
letter-spacing: 0;
|
|
14123
|
+
}
|
|
14124
|
+
.menubar-primary .nav-link:hover::before, .menubar-primary .nav-link.hover::before {
|
|
14125
|
+
background: #9b92a5;
|
|
14126
|
+
width: 0.125rem;
|
|
14127
|
+
}
|
|
14128
|
+
.menubar-primary .nav-link.focus, .menubar-primary .nav-link:focus-visible, .c-prefers-focus .menubar-primary .nav-link:focus {
|
|
14129
|
+
box-shadow: none;
|
|
14130
|
+
color: #272833;
|
|
14131
|
+
outline: 0;
|
|
14132
|
+
}
|
|
14133
|
+
.menubar-primary .nav-link.focus::after, .menubar-primary .nav-link:focus-visible::after, .c-prefers-focus .menubar-primary .nav-link:focus::after {
|
|
14134
|
+
bottom: 0;
|
|
14135
|
+
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14136
|
+
content: "";
|
|
14137
|
+
display: block;
|
|
14138
|
+
left: 0;
|
|
14139
|
+
pointer-events: none;
|
|
14140
|
+
position: absolute;
|
|
14141
|
+
right: 0;
|
|
14142
|
+
top: 0;
|
|
14143
|
+
}
|
|
14144
|
+
.menubar-primary .nav-link:active {
|
|
14145
|
+
color: #272833;
|
|
14146
|
+
}
|
|
14147
|
+
.menubar-primary .nav-link.active {
|
|
14148
|
+
font-weight: 600;
|
|
14149
|
+
background-color: #f0f5ff;
|
|
14150
|
+
color: #272833;
|
|
14151
|
+
}
|
|
14152
|
+
.menubar-primary .nav-link.active::before {
|
|
14153
|
+
background-color: #0b5fff;
|
|
14154
|
+
width: 0.375rem;
|
|
14155
|
+
}
|
|
14156
|
+
.menubar-primary .nav-link.active:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link.active:focus::before {
|
|
14157
|
+
display: none;
|
|
14158
|
+
}
|
|
14159
|
+
.menubar-primary .nav-link:disabled, .menubar-primary .nav-link.disabled {
|
|
14160
|
+
background-color: transparent;
|
|
14161
|
+
color: #a7a9bc;
|
|
14162
|
+
box-shadow: none;
|
|
14163
|
+
font-weight: 400;
|
|
14164
|
+
}
|
|
14165
|
+
.menubar-primary .nav-link:disabled::before, .menubar-primary .nav-link.disabled::before {
|
|
14166
|
+
content: none;
|
|
14167
|
+
}
|
|
14168
|
+
.menubar-primary .nav-link:disabled::after, .menubar-primary .nav-link.disabled::after {
|
|
14169
|
+
content: none;
|
|
14170
|
+
}
|
|
14171
|
+
.menubar-primary .nav-link[aria-expanded=true], .menubar-primary .nav-link.show {
|
|
14172
|
+
font-weight: 600;
|
|
14173
|
+
color: #272833;
|
|
14174
|
+
}
|
|
14175
|
+
.menubar-primary .nav-link[aria-expanded=true]::before, .menubar-primary .nav-link.show::before {
|
|
14176
|
+
background-color: transparent;
|
|
14177
|
+
width: 0;
|
|
14178
|
+
}
|
|
14179
|
+
.menubar-primary .nav-link[aria-expanded=true]:hover::before, .menubar-primary .nav-link.show:hover::before {
|
|
14180
|
+
background-color: #9b92a5;
|
|
14181
|
+
width: 0.125rem;
|
|
14182
|
+
}
|
|
14183
|
+
.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 {
|
|
14184
|
+
display: none;
|
|
14185
|
+
}
|
|
14186
|
+
.menubar-primary .nav-link.collapse-icon {
|
|
14187
|
+
font-size: 0.75rem;
|
|
14188
|
+
font-weight: 600;
|
|
14189
|
+
text-transform: uppercase;
|
|
14190
|
+
}
|
|
14191
|
+
.menubar-primary .nav-link.collapse-icon .collapse-icon-closed {
|
|
14192
|
+
top: calc(22px - 0.5em);
|
|
14193
|
+
}
|
|
14194
|
+
.menubar-primary .nav-link.collapse-icon .collapse-icon-open {
|
|
14195
|
+
top: calc(22px - 0.5em);
|
|
14196
|
+
}
|
|
14197
|
+
.menubar-primary .nav-link .autofit-row {
|
|
14198
|
+
align-items: center;
|
|
14199
|
+
margin-left: -0.25rem;
|
|
14200
|
+
margin-right: -0.25rem;
|
|
14201
|
+
}
|
|
14202
|
+
.menubar-primary .nav-link .autofit-row .autofit-col {
|
|
14203
|
+
padding-left: 0.25rem;
|
|
14204
|
+
padding-right: 0.25rem;
|
|
14205
|
+
}
|
|
14206
|
+
.menubar-primary .menubar-actions-1 {
|
|
14207
|
+
padding-right: 4rem;
|
|
14208
|
+
}
|
|
14209
|
+
.menubar-primary .menubar-action {
|
|
14210
|
+
position: absolute;
|
|
14211
|
+
top: 0.625rem;
|
|
14212
|
+
right: 2rem;
|
|
14213
|
+
}
|
|
14214
|
+
.menubar-primary .nav .nav .nav > li > .nav-link {
|
|
14215
|
+
margin-left: 1rem;
|
|
14216
|
+
}
|
|
14217
|
+
|
|
13981
14218
|
.menubar-vertical-expand-md {
|
|
13982
14219
|
max-width: 15.625rem;
|
|
13983
14220
|
}
|
|
@@ -23110,7 +23347,7 @@ td.table-focus {
|
|
|
23110
23347
|
margin-right: 0.5rem;
|
|
23111
23348
|
}
|
|
23112
23349
|
.toggle-switch-sm .simple-toggle-switch .toggle-switch-label, .simple-toggle-switch.toggle-switch-sm .toggle-switch-label {
|
|
23113
|
-
max-width: calc(100% -
|
|
23350
|
+
max-width: calc(100% - 34px);
|
|
23114
23351
|
}
|
|
23115
23352
|
.toggle-switch-sm .toggle-switch-check {
|
|
23116
23353
|
height: 16px;
|
|
@@ -23132,10 +23369,9 @@ td.table-focus {
|
|
|
23132
23369
|
}
|
|
23133
23370
|
.toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle {
|
|
23134
23371
|
min-width: 30px;
|
|
23135
|
-
max-width: 30px;
|
|
23136
23372
|
}
|
|
23137
23373
|
.toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
23138
|
-
margin-left:
|
|
23374
|
+
margin-left: 34px;
|
|
23139
23375
|
}
|
|
23140
23376
|
.toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
23141
23377
|
font-size: 0.5rem;
|
|
@@ -28427,103 +28663,103 @@ ul.autofit-row {
|
|
|
28427
28663
|
}
|
|
28428
28664
|
|
|
28429
28665
|
.bg-blue {
|
|
28430
|
-
background-color: #
|
|
28666
|
+
background-color: #006eff !important;
|
|
28431
28667
|
}
|
|
28432
28668
|
|
|
28433
28669
|
a.bg-blue:hover, a.bg-blue:focus,
|
|
28434
28670
|
button.bg-blue:hover,
|
|
28435
28671
|
button.bg-blue:focus {
|
|
28436
|
-
background-color: #
|
|
28672
|
+
background-color: #0058cc !important;
|
|
28437
28673
|
}
|
|
28438
28674
|
|
|
28439
28675
|
.bg-indigo {
|
|
28440
|
-
background-color: #
|
|
28676
|
+
background-color: #4d5fff !important;
|
|
28441
28677
|
}
|
|
28442
28678
|
|
|
28443
28679
|
a.bg-indigo:hover, a.bg-indigo:focus,
|
|
28444
28680
|
button.bg-indigo:hover,
|
|
28445
28681
|
button.bg-indigo:focus {
|
|
28446
|
-
background-color: #
|
|
28682
|
+
background-color: #1a31ff !important;
|
|
28447
28683
|
}
|
|
28448
28684
|
|
|
28449
28685
|
.bg-purple {
|
|
28450
|
-
background-color: #
|
|
28686
|
+
background-color: #aa33ff !important;
|
|
28451
28687
|
}
|
|
28452
28688
|
|
|
28453
28689
|
a.bg-purple:hover, a.bg-purple:focus,
|
|
28454
28690
|
button.bg-purple:hover,
|
|
28455
28691
|
button.bg-purple:focus {
|
|
28456
|
-
background-color: #
|
|
28692
|
+
background-color: #9500ff !important;
|
|
28457
28693
|
}
|
|
28458
28694
|
|
|
28459
28695
|
.bg-pink {
|
|
28460
|
-
background-color: #
|
|
28696
|
+
background-color: #e50082 !important;
|
|
28461
28697
|
}
|
|
28462
28698
|
|
|
28463
28699
|
a.bg-pink:hover, a.bg-pink:focus,
|
|
28464
28700
|
button.bg-pink:hover,
|
|
28465
28701
|
button.bg-pink:focus {
|
|
28466
|
-
background-color: #
|
|
28702
|
+
background-color: #b20065 !important;
|
|
28467
28703
|
}
|
|
28468
28704
|
|
|
28469
28705
|
.bg-red {
|
|
28470
|
-
background-color: #
|
|
28706
|
+
background-color: #e60000 !important;
|
|
28471
28707
|
}
|
|
28472
28708
|
|
|
28473
28709
|
a.bg-red:hover, a.bg-red:focus,
|
|
28474
28710
|
button.bg-red:hover,
|
|
28475
28711
|
button.bg-red:focus {
|
|
28476
|
-
background-color: #
|
|
28712
|
+
background-color: #b30000 !important;
|
|
28477
28713
|
}
|
|
28478
28714
|
|
|
28479
28715
|
.bg-orange {
|
|
28480
|
-
background-color: #
|
|
28716
|
+
background-color: #cc4e00 !important;
|
|
28481
28717
|
}
|
|
28482
28718
|
|
|
28483
28719
|
a.bg-orange:hover, a.bg-orange:focus,
|
|
28484
28720
|
button.bg-orange:hover,
|
|
28485
28721
|
button.bg-orange:focus {
|
|
28486
|
-
background-color: #
|
|
28722
|
+
background-color: #993b00 !important;
|
|
28487
28723
|
}
|
|
28488
28724
|
|
|
28489
28725
|
.bg-yellow {
|
|
28490
|
-
background-color: #
|
|
28726
|
+
background-color: #ffbb00 !important;
|
|
28491
28727
|
}
|
|
28492
28728
|
|
|
28493
28729
|
a.bg-yellow:hover, a.bg-yellow:focus,
|
|
28494
28730
|
button.bg-yellow:hover,
|
|
28495
28731
|
button.bg-yellow:focus {
|
|
28496
|
-
background-color: #
|
|
28732
|
+
background-color: #cc9600 !important;
|
|
28497
28733
|
}
|
|
28498
28734
|
|
|
28499
28735
|
.bg-green {
|
|
28500
|
-
background-color: #
|
|
28736
|
+
background-color: #458613 !important;
|
|
28501
28737
|
}
|
|
28502
28738
|
|
|
28503
28739
|
a.bg-green:hover, a.bg-green:focus,
|
|
28504
28740
|
button.bg-green:hover,
|
|
28505
28741
|
button.bg-green:focus {
|
|
28506
|
-
background-color: #
|
|
28742
|
+
background-color: #2e590d !important;
|
|
28507
28743
|
}
|
|
28508
28744
|
|
|
28509
28745
|
.bg-teal {
|
|
28510
|
-
background-color: #
|
|
28746
|
+
background-color: #1b7e6e !important;
|
|
28511
28747
|
}
|
|
28512
28748
|
|
|
28513
28749
|
a.bg-teal:hover, a.bg-teal:focus,
|
|
28514
28750
|
button.bg-teal:hover,
|
|
28515
28751
|
button.bg-teal:focus {
|
|
28516
|
-
background-color: #
|
|
28752
|
+
background-color: #125449 !important;
|
|
28517
28753
|
}
|
|
28518
28754
|
|
|
28519
28755
|
.bg-cyan {
|
|
28520
|
-
background-color: #
|
|
28756
|
+
background-color: #0077b3 !important;
|
|
28521
28757
|
}
|
|
28522
28758
|
|
|
28523
28759
|
a.bg-cyan:hover, a.bg-cyan:focus,
|
|
28524
28760
|
button.bg-cyan:hover,
|
|
28525
28761
|
button.bg-cyan:focus {
|
|
28526
|
-
background-color: #
|
|
28762
|
+
background-color: #005580 !important;
|
|
28527
28763
|
}
|
|
28528
28764
|
|
|
28529
28765
|
.bg-primary {
|
|
@@ -34180,83 +34416,83 @@ button.bg-dark:focus {
|
|
|
34180
34416
|
}
|
|
34181
34417
|
|
|
34182
34418
|
.text-blue {
|
|
34183
|
-
color: #
|
|
34419
|
+
color: #006eff !important;
|
|
34184
34420
|
}
|
|
34185
34421
|
|
|
34186
34422
|
a.text-blue:hover, a.text-blue:focus {
|
|
34187
|
-
color: #
|
|
34423
|
+
color: #004db3 !important;
|
|
34188
34424
|
}
|
|
34189
34425
|
|
|
34190
34426
|
.text-indigo {
|
|
34191
|
-
color: #
|
|
34427
|
+
color: #4d5fff !important;
|
|
34192
34428
|
}
|
|
34193
34429
|
|
|
34194
34430
|
a.text-indigo:hover, a.text-indigo:focus {
|
|
34195
|
-
color: #
|
|
34431
|
+
color: #011aff !important;
|
|
34196
34432
|
}
|
|
34197
34433
|
|
|
34198
34434
|
.text-purple {
|
|
34199
|
-
color: #
|
|
34435
|
+
color: #aa33ff !important;
|
|
34200
34436
|
}
|
|
34201
34437
|
|
|
34202
34438
|
a.text-purple:hover, a.text-purple:focus {
|
|
34203
|
-
color: #
|
|
34439
|
+
color: #8600e6 !important;
|
|
34204
34440
|
}
|
|
34205
34441
|
|
|
34206
34442
|
.text-pink {
|
|
34207
|
-
color: #
|
|
34443
|
+
color: #e50082 !important;
|
|
34208
34444
|
}
|
|
34209
34445
|
|
|
34210
34446
|
a.text-pink:hover, a.text-pink:focus {
|
|
34211
|
-
color: #
|
|
34447
|
+
color: #990057 !important;
|
|
34212
34448
|
}
|
|
34213
34449
|
|
|
34214
34450
|
.text-red {
|
|
34215
|
-
color: #
|
|
34451
|
+
color: #e60000 !important;
|
|
34216
34452
|
}
|
|
34217
34453
|
|
|
34218
34454
|
a.text-red:hover, a.text-red:focus {
|
|
34219
|
-
color: #
|
|
34455
|
+
color: #9a0000 !important;
|
|
34220
34456
|
}
|
|
34221
34457
|
|
|
34222
34458
|
.text-orange {
|
|
34223
|
-
color: #
|
|
34459
|
+
color: #cc4e00 !important;
|
|
34224
34460
|
}
|
|
34225
34461
|
|
|
34226
34462
|
a.text-orange:hover, a.text-orange:focus {
|
|
34227
|
-
color: #
|
|
34463
|
+
color: #803100 !important;
|
|
34228
34464
|
}
|
|
34229
34465
|
|
|
34230
34466
|
.text-yellow {
|
|
34231
|
-
color: #
|
|
34467
|
+
color: #ffbb00 !important;
|
|
34232
34468
|
}
|
|
34233
34469
|
|
|
34234
34470
|
a.text-yellow:hover, a.text-yellow:focus {
|
|
34235
|
-
color: #
|
|
34471
|
+
color: #b38300 !important;
|
|
34236
34472
|
}
|
|
34237
34473
|
|
|
34238
34474
|
.text-green {
|
|
34239
|
-
color: #
|
|
34475
|
+
color: #458613 !important;
|
|
34240
34476
|
}
|
|
34241
34477
|
|
|
34242
34478
|
a.text-green:hover, a.text-green:focus {
|
|
34243
|
-
color: #
|
|
34479
|
+
color: #23430a !important;
|
|
34244
34480
|
}
|
|
34245
34481
|
|
|
34246
34482
|
.text-teal {
|
|
34247
|
-
color: #
|
|
34483
|
+
color: #1b7e6e !important;
|
|
34248
34484
|
}
|
|
34249
34485
|
|
|
34250
34486
|
a.text-teal:hover, a.text-teal:focus {
|
|
34251
|
-
color: #
|
|
34487
|
+
color: #0e3f37 !important;
|
|
34252
34488
|
}
|
|
34253
34489
|
|
|
34254
34490
|
.text-cyan {
|
|
34255
|
-
color: #
|
|
34491
|
+
color: #0077b3 !important;
|
|
34256
34492
|
}
|
|
34257
34493
|
|
|
34258
34494
|
a.text-cyan:hover, a.text-cyan:focus {
|
|
34259
|
-
color: #
|
|
34495
|
+
color: #004467 !important;
|
|
34260
34496
|
}
|
|
34261
34497
|
|
|
34262
34498
|
.text-primary {
|