@clayui/css 3.95.1 → 3.97.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 +287 -94
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +115 -82
- 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 +254 -82
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/accessibility.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/stars.svg +9 -0
- package/package.json +3 -2
- package/src/images/icons/accessibility.svg +9 -0
- package/src/images/icons/stars.svg +9 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +38 -0
- package/src/scss/atlas/variables/_menubar.scss +87 -9
- package/src/scss/atlas/variables/_pagination.scss +56 -4
- package/src/scss/atlas/variables/_tables.scss +4 -4
- package/src/scss/cadmin/components/_forms.scss +1 -25
- package/src/scss/cadmin/components/_grid.scss +0 -12
- package/src/scss/cadmin/components/_multi-step-nav.scss +1 -11
- package/src/scss/cadmin/components/_navbar.scss +1 -6
- package/src/scss/cadmin/components/_type.scss +0 -21
- package/src/scss/cadmin/components/_utilities-functional-important.scss +20 -4
- package/src/scss/cadmin/variables/_buttons.scss +12 -2
- package/src/scss/cadmin/variables/_forms.scss +31 -0
- package/src/scss/cadmin/variables/_menubar.scss +100 -45
- package/src/scss/cadmin/variables/_multi-step-nav.scss +18 -0
- package/src/scss/cadmin/variables/_navbar.scss +13 -0
- package/src/scss/cadmin/variables/_pagination.scss +48 -4
- package/src/scss/cadmin/variables/_tables.scss +4 -4
- package/src/scss/cadmin/variables/_utilities.scss +111 -1
- package/src/scss/components/_forms.scss +1 -25
- package/src/scss/components/_grid.scss +0 -10
- package/src/scss/components/_multi-step-nav.scss +9 -20
- package/src/scss/components/_navbar.scss +1 -6
- package/src/scss/components/_type.scss +0 -21
- package/src/scss/components/_utilities-functional-important.scss +27 -8
- package/src/scss/functions/_lx-icons-generated.scss +4 -0
- package/src/scss/mixins/_globals.scss +25 -1
- package/src/scss/mixins/_input-groups.scss +8 -0
- package/src/scss/mixins/_links.scss +44 -0
- package/src/scss/mixins/_type.scss +7 -3
- package/src/scss/variables/_buttons.scss +2 -0
- package/src/scss/variables/_forms.scss +48 -3
- package/src/scss/variables/_icons.scss +1 -1
- package/src/scss/variables/_menubar.scss +8 -10
- package/src/scss/variables/_multi-step-nav.scss +43 -1
- package/src/scss/variables/_navbar.scss +14 -0
- package/src/scss/variables/_utilities.scss +111 -36
- package/CHANGELOG.md +0 -2579
- package/LICENSES/Apache-2.0.txt +0 -73
- package/LICENSES/BSD-3-Clause.txt +0 -30
- package/LICENSES/LicenseRef-MIT-Bootstrap.txt +0 -22
- package/LICENSES/MIT.txt +0 -19
- package/lib/.DS_Store +0 -0
- package/lib/images/.DS_Store +0 -0
- package/lib/images/icons/.DS_Store +0 -0
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.97.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>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Clay 3.
|
|
19
|
+
* Clay 3.97.0
|
|
20
20
|
*
|
|
21
21
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
22
22
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -628,22 +628,6 @@ html:not(#__):not(#___) .cadmin .c-kbd-dark {
|
|
|
628
628
|
border-color: #393a4a;
|
|
629
629
|
color: #fff;
|
|
630
630
|
}
|
|
631
|
-
html:not(#__):not(#___) .cadmin .text-truncate {
|
|
632
|
-
display: block;
|
|
633
|
-
}
|
|
634
|
-
html:not(#__):not(#___) .cadmin .text-truncate-inline {
|
|
635
|
-
display: inline-flex;
|
|
636
|
-
max-width: 100%;
|
|
637
|
-
}
|
|
638
|
-
html:not(#__):not(#___) .cadmin .text-truncate-inline .text-truncate {
|
|
639
|
-
display: inline-block;
|
|
640
|
-
max-width: 100%;
|
|
641
|
-
overflow: hidden;
|
|
642
|
-
text-overflow: ellipsis;
|
|
643
|
-
vertical-align: bottom;
|
|
644
|
-
white-space: nowrap;
|
|
645
|
-
word-wrap: normal;
|
|
646
|
-
}
|
|
647
631
|
html:not(#__):not(#___) .cadmin code {
|
|
648
632
|
color: #e83e8c;
|
|
649
633
|
font-size: 87.5%;
|
|
@@ -900,6 +884,7 @@ html:not(#__):not(#___) .cadmin .btn {
|
|
|
900
884
|
display: inline-block;
|
|
901
885
|
font-size: 16px;
|
|
902
886
|
font-weight: 600;
|
|
887
|
+
letter-spacing: inherit;
|
|
903
888
|
line-height: 1.5;
|
|
904
889
|
padding-bottom: 7px;
|
|
905
890
|
padding-left: 15px;
|
|
@@ -956,8 +941,10 @@ html:not(#__):not(#___) .cadmin .btn .c-inner {
|
|
|
956
941
|
margin-right: -15px;
|
|
957
942
|
margin-top: -7px;
|
|
958
943
|
}
|
|
959
|
-
html:not(#__):not(#___) .cadmin .btn .
|
|
944
|
+
html:not(#__):not(#___) .cadmin .btn .lexicon-icon {
|
|
960
945
|
font-size: 16px;
|
|
946
|
+
}
|
|
947
|
+
html:not(#__):not(#___) .cadmin .btn .inline-item {
|
|
961
948
|
line-height: 1;
|
|
962
949
|
margin-top: -3px;
|
|
963
950
|
}
|
|
@@ -1023,8 +1010,8 @@ html:not(#__):not(#___) .cadmin .btn-group-lg .btn-group > .btn .c-inner, html:n
|
|
|
1023
1010
|
margin-right: -24px;
|
|
1024
1011
|
margin-top: -9.5px;
|
|
1025
1012
|
}
|
|
1026
|
-
html:not(#__):not(#___) .cadmin .btn-group-lg > .btn .
|
|
1027
|
-
html:not(#__):not(#___) .cadmin .btn-group-lg .btn-group > .btn .
|
|
1013
|
+
html:not(#__):not(#___) .cadmin .btn-group-lg > .btn .lexicon-icon,
|
|
1014
|
+
html:not(#__):not(#___) .cadmin .btn-group-lg .btn-group > .btn .lexicon-icon, html:not(#__):not(#___) .cadmin .btn-lg .lexicon-icon {
|
|
1028
1015
|
font-size: 18px;
|
|
1029
1016
|
}
|
|
1030
1017
|
html:not(#__):not(#___) .cadmin .btn-group-lg > .btn .btn-section,
|
|
@@ -1086,6 +1073,9 @@ html:not(#__):not(#___) .cadmin .btn-monospaced.btn-xs {
|
|
|
1086
1073
|
height: 1.5rem;
|
|
1087
1074
|
width: 1.4rem;
|
|
1088
1075
|
}
|
|
1076
|
+
html:not(#__):not(#___) .cadmin .btn-monospaced.btn-xs .lexicon-icon {
|
|
1077
|
+
font-size: inherit;
|
|
1078
|
+
}
|
|
1089
1079
|
html:not(#__):not(#___) .cadmin .btn-monospaced {
|
|
1090
1080
|
align-items: center;
|
|
1091
1081
|
display: inline-flex;
|
|
@@ -3043,11 +3033,6 @@ html:not(#__):not(#___) .cadmin .container-form-lg, html:not(#__):not(#___) .cad
|
|
|
3043
3033
|
padding-top: 16px;
|
|
3044
3034
|
}
|
|
3045
3035
|
}
|
|
3046
|
-
@media (max-width: 991.98px) {
|
|
3047
|
-
html:not(#__):not(#___) .cadmin .container-form-lg .menubar-vertical-expand-lg, html:not(#__):not(#___) .cadmin.container-form-lg .menubar-vertical-expand-lg {
|
|
3048
|
-
margin-top: -16px;
|
|
3049
|
-
}
|
|
3050
|
-
}
|
|
3051
3036
|
html:not(#__):not(#___) .cadmin .container-view, html:not(#__):not(#___) .cadmin.container-view {
|
|
3052
3037
|
padding-bottom: 24px;
|
|
3053
3038
|
padding-top: 24px;
|
|
@@ -6436,6 +6421,7 @@ html:not(#__):not(#___) .cadmin .form-control {
|
|
|
6436
6421
|
font-size: 16px;
|
|
6437
6422
|
font-weight: 400;
|
|
6438
6423
|
height: 40px;
|
|
6424
|
+
letter-spacing: inherit;
|
|
6439
6425
|
line-height: 1.5;
|
|
6440
6426
|
min-width: 0;
|
|
6441
6427
|
padding-bottom: 7px;
|
|
@@ -6527,16 +6513,17 @@ html:not(#__):not(#___) .cadmin fieldset[disabled] .form-control {
|
|
|
6527
6513
|
html:not(#__):not(#___) .cadmin .form-control-plaintext {
|
|
6528
6514
|
background-clip: border-box;
|
|
6529
6515
|
background-color: transparent;
|
|
6530
|
-
border-color: transparent;
|
|
6531
|
-
border-style: solid;
|
|
6532
6516
|
border-bottom-width: 1px;
|
|
6517
|
+
border-color: transparent;
|
|
6533
6518
|
border-left-width: 1px;
|
|
6534
6519
|
border-right-width: 1px;
|
|
6520
|
+
border-style: solid;
|
|
6535
6521
|
border-top-width: 1px;
|
|
6536
6522
|
color: #272833;
|
|
6537
6523
|
display: block;
|
|
6538
6524
|
font-size: 16px;
|
|
6539
6525
|
height: 40px;
|
|
6526
|
+
letter-spacing: inherit;
|
|
6540
6527
|
line-height: 1.5;
|
|
6541
6528
|
margin-bottom: 0;
|
|
6542
6529
|
min-width: 0;
|
|
@@ -9078,9 +9065,6 @@ html:not(#__):not(#___) .cadmin .input-group-text-secondary label {
|
|
|
9078
9065
|
html:not(#__):not(#___) .cadmin .input-group-lg > .input-group-item > .btn {
|
|
9079
9066
|
font-size: 18px;
|
|
9080
9067
|
}
|
|
9081
|
-
html:not(#__):not(#___) .cadmin .input-group-lg > .input-group-item > .btn .inline-item {
|
|
9082
|
-
font-size: 18px;
|
|
9083
|
-
}
|
|
9084
9068
|
html:not(#__):not(#___) .cadmin .input-group-lg > .input-group-item > .btn .btn-section {
|
|
9085
9069
|
font-size: 13px;
|
|
9086
9070
|
}
|
|
@@ -10442,7 +10426,7 @@ html:not(#__):not(#___) .cadmin .multi-step-indicator-label-top .multi-step-indi
|
|
|
10442
10426
|
bottom: 36px;
|
|
10443
10427
|
}
|
|
10444
10428
|
html:not(#__):not(#___) .cadmin .multi-step-title-center .multi-step-title {
|
|
10445
|
-
margin-left:
|
|
10429
|
+
margin-left: calc(32px * 0.5);
|
|
10446
10430
|
max-width: 100px;
|
|
10447
10431
|
overflow: hidden;
|
|
10448
10432
|
position: relative;
|
|
@@ -11193,13 +11177,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.co
|
|
|
11193
11177
|
}
|
|
11194
11178
|
@media (max-width: 767.98px) {
|
|
11195
11179
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md {
|
|
11196
|
-
|
|
11197
|
-
display: flex;
|
|
11198
|
-
flex-wrap: wrap;
|
|
11199
|
-
justify-content: space-between;
|
|
11200
|
-
margin-bottom: 24px;
|
|
11201
|
-
margin-left: -12px;
|
|
11202
|
-
margin-right: -12px;
|
|
11180
|
+
margin-bottom: 16px;
|
|
11203
11181
|
max-width: none;
|
|
11204
11182
|
}
|
|
11205
11183
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse {
|
|
@@ -11207,9 +11185,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.co
|
|
|
11207
11185
|
border-style: solid;
|
|
11208
11186
|
border-width: 1px;
|
|
11209
11187
|
display: none;
|
|
11210
|
-
|
|
11211
|
-
position: absolute;
|
|
11212
|
-
right: -1px;
|
|
11188
|
+
position: relative;
|
|
11213
11189
|
top: 100%;
|
|
11214
11190
|
z-index: 499;
|
|
11215
11191
|
}
|
|
@@ -11224,6 +11200,8 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.co
|
|
|
11224
11200
|
padding-right: 8px;
|
|
11225
11201
|
}
|
|
11226
11202
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-toggler .c-inner {
|
|
11203
|
+
margin-left: -8px;
|
|
11204
|
+
margin-right: -8px;
|
|
11227
11205
|
max-width: none;
|
|
11228
11206
|
}
|
|
11229
11207
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-toggler .lexicon-icon {
|
|
@@ -11258,8 +11236,9 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.co
|
|
|
11258
11236
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
11259
11237
|
border-radius: 4px;
|
|
11260
11238
|
color: #6b6c7e;
|
|
11239
|
+
letter-spacing: 0.02em;
|
|
11240
|
+
margin-bottom: 4px;
|
|
11261
11241
|
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;
|
|
11262
|
-
margin-bottom: 0.25rem;
|
|
11263
11242
|
}
|
|
11264
11243
|
@media (prefers-reduced-motion: reduce) {
|
|
11265
11244
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
@@ -11270,14 +11249,26 @@ html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion .menubar-vertical-expa
|
|
|
11270
11249
|
transition: none;
|
|
11271
11250
|
}
|
|
11272
11251
|
|
|
11252
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link::before {
|
|
11253
|
+
border-radius: 4px 0 0 4px;
|
|
11254
|
+
bottom: 0;
|
|
11255
|
+
content: "";
|
|
11256
|
+
display: block;
|
|
11257
|
+
left: 0;
|
|
11258
|
+
position: absolute;
|
|
11259
|
+
top: 0;
|
|
11260
|
+
}
|
|
11273
11261
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:hover, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
|
|
11274
11262
|
background-color: rgba(39, 40, 51, 0.04);
|
|
11275
11263
|
color: #272833;
|
|
11276
|
-
box-shadow: inset 0.125rem 0 0 0 #88889a;
|
|
11277
11264
|
font-weight: 600;
|
|
11265
|
+
letter-spacing: 0;
|
|
11266
|
+
}
|
|
11267
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:hover::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.hover::before {
|
|
11268
|
+
background: #88889a;
|
|
11269
|
+
width: 3px;
|
|
11278
11270
|
}
|
|
11279
11271
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.focus, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
11280
|
-
box-shadow: inset 0 0 0 2px #528eff, inset 0 0 0 4px #fff;
|
|
11281
11272
|
color: #272833;
|
|
11282
11273
|
outline: 0;
|
|
11283
11274
|
}
|
|
@@ -11294,26 +11285,45 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
11294
11285
|
top: 0;
|
|
11295
11286
|
}
|
|
11296
11287
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:active {
|
|
11297
|
-
color:
|
|
11288
|
+
color: #272833;
|
|
11298
11289
|
}
|
|
11299
11290
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
11300
11291
|
font-weight: 600;
|
|
11301
11292
|
background-color: rgba(11, 95, 255, 0.06);
|
|
11302
|
-
box-shadow: inset 0.25rem 0 0 0 #528eff;
|
|
11303
11293
|
color: #272833;
|
|
11294
|
+
letter-spacing: 0;
|
|
11295
|
+
}
|
|
11296
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.active::before {
|
|
11297
|
+
background-color: #528eff;
|
|
11298
|
+
width: 4px;
|
|
11304
11299
|
}
|
|
11305
11300
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled {
|
|
11301
|
+
background-color: transparent;
|
|
11306
11302
|
color: rgba(0, 0, 0, 0.3);
|
|
11307
11303
|
box-shadow: none;
|
|
11304
|
+
font-weight: 400;
|
|
11305
|
+
letter-spacing: 0.02em;
|
|
11306
|
+
}
|
|
11307
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:disabled::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled::before {
|
|
11308
|
+
content: none;
|
|
11309
|
+
}
|
|
11310
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:disabled::after, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled::after {
|
|
11311
|
+
content: none;
|
|
11308
11312
|
}
|
|
11309
11313
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.show {
|
|
11310
11314
|
font-weight: 600;
|
|
11315
|
+
background-color: transparent;
|
|
11311
11316
|
color: #272833;
|
|
11317
|
+
letter-spacing: 0;
|
|
11318
|
+
}
|
|
11319
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true]::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.show::before {
|
|
11320
|
+
background-color: transparent;
|
|
11321
|
+
}
|
|
11322
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true]:hover::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.show:hover::before {
|
|
11323
|
+
background-color: #88889a;
|
|
11324
|
+
width: 3px;
|
|
11312
11325
|
}
|
|
11313
11326
|
@media (max-width: 767.98px) {
|
|
11314
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent {
|
|
11315
|
-
background-color: #fff;
|
|
11316
|
-
}
|
|
11317
11327
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-collapse {
|
|
11318
11328
|
background-color: #fff;
|
|
11319
11329
|
border-color: #e7e7ed;
|
|
@@ -11321,8 +11331,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
11321
11331
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
11322
11332
|
}
|
|
11323
11333
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
11324
|
-
|
|
11325
|
-
color: #272833;
|
|
11334
|
+
color: #6b6c7e;
|
|
11326
11335
|
font-size: 14px;
|
|
11327
11336
|
font-weight: 600;
|
|
11328
11337
|
text-decoration: none;
|
|
@@ -11345,6 +11354,9 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
11345
11354
|
color: #272833;
|
|
11346
11355
|
margin-bottom: 0;
|
|
11347
11356
|
}
|
|
11357
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link::before {
|
|
11358
|
+
content: none;
|
|
11359
|
+
}
|
|
11348
11360
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:hover, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
|
|
11349
11361
|
background-color: rgba(39, 40, 51, 0.04);
|
|
11350
11362
|
color: #272833;
|
|
@@ -11411,13 +11423,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.co
|
|
|
11411
11423
|
}
|
|
11412
11424
|
@media (max-width: 991.98px) {
|
|
11413
11425
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg {
|
|
11414
|
-
|
|
11415
|
-
display: flex;
|
|
11416
|
-
flex-wrap: wrap;
|
|
11417
|
-
justify-content: space-between;
|
|
11418
|
-
margin-bottom: 24px;
|
|
11419
|
-
margin-left: -12px;
|
|
11420
|
-
margin-right: -12px;
|
|
11426
|
+
margin-bottom: 16px;
|
|
11421
11427
|
max-width: none;
|
|
11422
11428
|
}
|
|
11423
11429
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse {
|
|
@@ -11425,9 +11431,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.co
|
|
|
11425
11431
|
border-style: solid;
|
|
11426
11432
|
border-width: 1px;
|
|
11427
11433
|
display: none;
|
|
11428
|
-
|
|
11429
|
-
position: absolute;
|
|
11430
|
-
right: -1px;
|
|
11434
|
+
position: relative;
|
|
11431
11435
|
top: 100%;
|
|
11432
11436
|
z-index: 499;
|
|
11433
11437
|
}
|
|
@@ -11442,6 +11446,8 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.co
|
|
|
11442
11446
|
padding-right: 8px;
|
|
11443
11447
|
}
|
|
11444
11448
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-toggler .c-inner {
|
|
11449
|
+
margin-left: -8px;
|
|
11450
|
+
margin-right: -8px;
|
|
11445
11451
|
max-width: none;
|
|
11446
11452
|
}
|
|
11447
11453
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-toggler .lexicon-icon {
|
|
@@ -11476,6 +11482,8 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.co
|
|
|
11476
11482
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
11477
11483
|
border-radius: 4px;
|
|
11478
11484
|
color: #6b6c7e;
|
|
11485
|
+
letter-spacing: 0.02em;
|
|
11486
|
+
margin-bottom: 4px;
|
|
11479
11487
|
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;
|
|
11480
11488
|
}
|
|
11481
11489
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -11487,14 +11495,26 @@ html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion .menubar-vertical-expa
|
|
|
11487
11495
|
transition: none;
|
|
11488
11496
|
}
|
|
11489
11497
|
|
|
11498
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link::before {
|
|
11499
|
+
border-radius: 4px 0 0 4px;
|
|
11500
|
+
bottom: 0;
|
|
11501
|
+
content: "";
|
|
11502
|
+
display: block;
|
|
11503
|
+
left: 0;
|
|
11504
|
+
position: absolute;
|
|
11505
|
+
top: 0;
|
|
11506
|
+
}
|
|
11490
11507
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
|
|
11491
11508
|
background-color: rgba(39, 40, 51, 0.04);
|
|
11492
11509
|
color: #272833;
|
|
11493
|
-
box-shadow: inset 0.125rem 0 0 0 #88889a;
|
|
11494
11510
|
font-weight: 600;
|
|
11511
|
+
letter-spacing: 0;
|
|
11512
|
+
}
|
|
11513
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover::before {
|
|
11514
|
+
background: #88889a;
|
|
11515
|
+
width: 3px;
|
|
11495
11516
|
}
|
|
11496
11517
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
11497
|
-
background-color: rgba(11, 95, 255, 0.04);
|
|
11498
11518
|
color: #272833;
|
|
11499
11519
|
outline: 0;
|
|
11500
11520
|
}
|
|
@@ -11510,27 +11530,45 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
11510
11530
|
top: 0;
|
|
11511
11531
|
}
|
|
11512
11532
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:active {
|
|
11513
|
-
color:
|
|
11533
|
+
color: #272833;
|
|
11514
11534
|
}
|
|
11515
11535
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
11516
11536
|
font-weight: 600;
|
|
11517
11537
|
background-color: rgba(11, 95, 255, 0.06);
|
|
11518
|
-
box-shadow: inset 0.25rem 0 0 0 #528eff;
|
|
11519
11538
|
color: #272833;
|
|
11539
|
+
letter-spacing: 0;
|
|
11540
|
+
}
|
|
11541
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.active::before {
|
|
11542
|
+
background-color: #528eff;
|
|
11543
|
+
width: 4px;
|
|
11520
11544
|
}
|
|
11521
11545
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled {
|
|
11546
|
+
background-color: transparent;
|
|
11522
11547
|
color: rgba(0, 0, 0, 0.3);
|
|
11523
11548
|
box-shadow: none;
|
|
11549
|
+
font-weight: 400;
|
|
11550
|
+
letter-spacing: 0.02em;
|
|
11551
|
+
}
|
|
11552
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled::before {
|
|
11553
|
+
content: none;
|
|
11554
|
+
}
|
|
11555
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled::after, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled::after {
|
|
11556
|
+
content: none;
|
|
11524
11557
|
}
|
|
11525
11558
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.show {
|
|
11526
11559
|
font-weight: 600;
|
|
11527
|
-
|
|
11560
|
+
background-color: transparent;
|
|
11528
11561
|
color: #272833;
|
|
11562
|
+
letter-spacing: 0;
|
|
11563
|
+
}
|
|
11564
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true]::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.show::before {
|
|
11565
|
+
background-color: transparent;
|
|
11566
|
+
}
|
|
11567
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true]:hover::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.show:hover::before {
|
|
11568
|
+
background-color: #88889a;
|
|
11569
|
+
width: 3px;
|
|
11529
11570
|
}
|
|
11530
11571
|
@media (max-width: 991.98px) {
|
|
11531
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent {
|
|
11532
|
-
background-color: #fff;
|
|
11533
|
-
}
|
|
11534
11572
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-collapse {
|
|
11535
11573
|
background-color: #fff;
|
|
11536
11574
|
border-color: #e7e7ed;
|
|
@@ -11538,7 +11576,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
11538
11576
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
11539
11577
|
}
|
|
11540
11578
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
11541
|
-
color: #
|
|
11579
|
+
color: #6b6c7e;
|
|
11542
11580
|
font-size: 14px;
|
|
11543
11581
|
font-weight: 600;
|
|
11544
11582
|
text-decoration: none;
|
|
@@ -11561,6 +11599,9 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
11561
11599
|
color: #272833;
|
|
11562
11600
|
margin-bottom: 0;
|
|
11563
11601
|
}
|
|
11602
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link::before {
|
|
11603
|
+
content: none;
|
|
11604
|
+
}
|
|
11564
11605
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
|
|
11565
11606
|
background-color: rgba(39, 40, 51, 0.04);
|
|
11566
11607
|
color: #6b6c7e;
|
|
@@ -13287,16 +13328,28 @@ html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion .page-link {
|
|
|
13287
13328
|
transition: none;
|
|
13288
13329
|
}
|
|
13289
13330
|
|
|
13331
|
+
html:not(#__):not(#___) .cadmin .page-link::before {
|
|
13332
|
+
border-radius: 0 0 4px 4px;
|
|
13333
|
+
bottom: 0;
|
|
13334
|
+
content: "";
|
|
13335
|
+
display: block;
|
|
13336
|
+
left: 0;
|
|
13337
|
+
position: absolute;
|
|
13338
|
+
right: 0;
|
|
13339
|
+
}
|
|
13290
13340
|
html:not(#__):not(#___) .cadmin .page-link:hover, html:not(#__):not(#___) .cadmin .page-link.hover {
|
|
13291
13341
|
background-color: rgba(39, 40, 51, 0.04);
|
|
13292
13342
|
border-color: transparent;
|
|
13293
|
-
box-shadow: inset 0 -0.125rem 0 0 #88889a;
|
|
13294
13343
|
color: #272833;
|
|
13295
13344
|
font-weight: 600;
|
|
13296
13345
|
letter-spacing: 0;
|
|
13297
13346
|
text-decoration: none;
|
|
13298
13347
|
z-index: 2;
|
|
13299
13348
|
}
|
|
13349
|
+
html:not(#__):not(#___) .cadmin .page-link:hover::before, html:not(#__):not(#___) .cadmin .page-link.hover::before {
|
|
13350
|
+
background-color: #88889a;
|
|
13351
|
+
height: 3px;
|
|
13352
|
+
}
|
|
13300
13353
|
html:not(#__):not(#___) .cadmin .page-link.focus, html:not(#__):not(#___) .cadmin .page-link:focus {
|
|
13301
13354
|
border-color: transparent;
|
|
13302
13355
|
box-shadow: none;
|
|
@@ -13319,7 +13372,6 @@ html:not(#__):not(#___) .cadmin .page-link.focus::after, html:not(#__):not(#___)
|
|
|
13319
13372
|
html:not(#__):not(#___) .cadmin .page-link:active {
|
|
13320
13373
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13321
13374
|
border-color: transparent;
|
|
13322
|
-
box-shadow: inset 0 -0.125rem 0 0 #528eff;
|
|
13323
13375
|
color: #272833;
|
|
13324
13376
|
font-weight: 600;
|
|
13325
13377
|
letter-spacing: 0;
|
|
@@ -13329,11 +13381,14 @@ html:not(#__):not(#___) .cadmin .page-link.active {
|
|
|
13329
13381
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13330
13382
|
border-color: transparent;
|
|
13331
13383
|
color: #272833;
|
|
13332
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
13333
13384
|
font-weight: 600;
|
|
13334
13385
|
letter-spacing: 0;
|
|
13335
13386
|
z-index: 3;
|
|
13336
13387
|
}
|
|
13388
|
+
html:not(#__):not(#___) .cadmin .page-link.active::before {
|
|
13389
|
+
background-color: #528eff;
|
|
13390
|
+
height: 4px;
|
|
13391
|
+
}
|
|
13337
13392
|
html:not(#__):not(#___) .cadmin .page-link:disabled, html:not(#__):not(#___) .cadmin .page-link.disabled {
|
|
13338
13393
|
background-color: transparent;
|
|
13339
13394
|
border-color: transparent;
|
|
@@ -13344,6 +13399,9 @@ html:not(#__):not(#___) .cadmin .page-link:disabled, html:not(#__):not(#___) .ca
|
|
|
13344
13399
|
pointer-events: auto;
|
|
13345
13400
|
z-index: 0;
|
|
13346
13401
|
}
|
|
13402
|
+
html:not(#__):not(#___) .cadmin .page-link:disabled::before, html:not(#__):not(#___) .cadmin .page-link.disabled::before {
|
|
13403
|
+
content: none;
|
|
13404
|
+
}
|
|
13347
13405
|
html:not(#__):not(#___) .cadmin .page-link:disabled:focus::after, html:not(#__):not(#___) .cadmin .page-link.disabled:focus::after {
|
|
13348
13406
|
content: none;
|
|
13349
13407
|
}
|
|
@@ -13351,11 +13409,17 @@ html:not(#__):not(#___) .cadmin .page-link[aria-expanded=true], html:not(#__):no
|
|
|
13351
13409
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13352
13410
|
border-color: transparent;
|
|
13353
13411
|
color: #272833;
|
|
13354
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
13355
13412
|
font-weight: 600;
|
|
13356
13413
|
letter-spacing: 0;
|
|
13357
13414
|
z-index: 3;
|
|
13358
13415
|
}
|
|
13416
|
+
html:not(#__):not(#___) .cadmin .page-link[aria-expanded=true]::before, html:not(#__):not(#___) .cadmin .page-link.show::before {
|
|
13417
|
+
background-color: transparent;
|
|
13418
|
+
}
|
|
13419
|
+
html:not(#__):not(#___) .cadmin .page-link[aria-expanded=true]:hover::before, html:not(#__):not(#___) .cadmin .page-link.show:hover::before {
|
|
13420
|
+
background-color: #88889a;
|
|
13421
|
+
height: 3px;
|
|
13422
|
+
}
|
|
13359
13423
|
html:not(#__):not(#___) .cadmin .page-link > .c-inner {
|
|
13360
13424
|
margin-bottom: 0;
|
|
13361
13425
|
margin-left: -10px;
|
|
@@ -13373,10 +13437,13 @@ html:not(#__):not(#___) .cadmin .page-item.active .page-link {
|
|
|
13373
13437
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13374
13438
|
border-color: transparent;
|
|
13375
13439
|
color: #272833;
|
|
13376
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
13377
13440
|
font-weight: 600;
|
|
13378
13441
|
letter-spacing: 0;
|
|
13379
13442
|
}
|
|
13443
|
+
html:not(#__):not(#___) .cadmin .page-item.active .page-link::before {
|
|
13444
|
+
background-color: #528eff;
|
|
13445
|
+
height: 4px;
|
|
13446
|
+
}
|
|
13380
13447
|
html:not(#__):not(#___) .cadmin .page-item.disabled .page-link {
|
|
13381
13448
|
background-color: transparent;
|
|
13382
13449
|
border-color: transparent;
|
|
@@ -13387,6 +13454,9 @@ html:not(#__):not(#___) .cadmin .page-item.disabled .page-link {
|
|
|
13387
13454
|
pointer-events: auto;
|
|
13388
13455
|
z-index: 0;
|
|
13389
13456
|
}
|
|
13457
|
+
html:not(#__):not(#___) .cadmin .page-item.disabled .page-link::before {
|
|
13458
|
+
content: none;
|
|
13459
|
+
}
|
|
13390
13460
|
html:not(#__):not(#___) .cadmin .page-item.disabled .page-link.focus::after, html:not(#__):not(#___) .cadmin .page-item.disabled .page-link:focus::after {
|
|
13391
13461
|
content: none;
|
|
13392
13462
|
}
|
|
@@ -13432,6 +13502,16 @@ html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion .pagination-items-per-
|
|
|
13432
13502
|
transition: none;
|
|
13433
13503
|
}
|
|
13434
13504
|
|
|
13505
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a::before,
|
|
13506
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button::before {
|
|
13507
|
+
border-radius: 0 0 4px 4px;
|
|
13508
|
+
bottom: 0;
|
|
13509
|
+
content: "";
|
|
13510
|
+
display: block;
|
|
13511
|
+
left: 0;
|
|
13512
|
+
position: absolute;
|
|
13513
|
+
right: 0;
|
|
13514
|
+
}
|
|
13435
13515
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a:hover, html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.hover,
|
|
13436
13516
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button:hover,
|
|
13437
13517
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.hover {
|
|
@@ -13481,8 +13561,20 @@ html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.disabled {
|
|
|
13481
13561
|
box-shadow: none;
|
|
13482
13562
|
color: #6b6c7e;
|
|
13483
13563
|
cursor: not-allowed;
|
|
13564
|
+
font-weight: 400;
|
|
13484
13565
|
opacity: 0.5;
|
|
13485
13566
|
pointer-events: auto;
|
|
13567
|
+
letter-spacing: 0.033em;
|
|
13568
|
+
}
|
|
13569
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a:disabled::before, html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.disabled::before,
|
|
13570
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button:disabled::before,
|
|
13571
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.disabled::before {
|
|
13572
|
+
content: none;
|
|
13573
|
+
}
|
|
13574
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a:disabled:focus::after, html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.disabled:focus::after,
|
|
13575
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button:disabled:focus::after,
|
|
13576
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.disabled:focus::after {
|
|
13577
|
+
content: none;
|
|
13486
13578
|
}
|
|
13487
13579
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a[aria-expanded=true], html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.show,
|
|
13488
13580
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button[aria-expanded=true],
|
|
@@ -13491,9 +13583,19 @@ html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.show {
|
|
|
13491
13583
|
border-color: transparent;
|
|
13492
13584
|
color: #272833;
|
|
13493
13585
|
font-weight: 600;
|
|
13494
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
13495
13586
|
letter-spacing: 0;
|
|
13496
13587
|
}
|
|
13588
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a[aria-expanded=true]::before, html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.show::before,
|
|
13589
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button[aria-expanded=true]::before,
|
|
13590
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.show::before {
|
|
13591
|
+
background-color: transparent;
|
|
13592
|
+
}
|
|
13593
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a[aria-expanded=true]:hover::before, html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.show:hover::before,
|
|
13594
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button[aria-expanded=true]:hover::before,
|
|
13595
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.show:hover::before {
|
|
13596
|
+
background-color: #88889a;
|
|
13597
|
+
height: 3px;
|
|
13598
|
+
}
|
|
13497
13599
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a > .c-inner,
|
|
13498
13600
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button > .c-inner {
|
|
13499
13601
|
margin-bottom: 0;
|
|
@@ -13513,8 +13615,19 @@ html:not(#__):not(#___) .cadmin .pagination-items-per-page.disabled > button {
|
|
|
13513
13615
|
box-shadow: none;
|
|
13514
13616
|
color: #6b6c7e;
|
|
13515
13617
|
cursor: not-allowed;
|
|
13618
|
+
font-weight: 400;
|
|
13516
13619
|
opacity: 0.5;
|
|
13517
13620
|
pointer-events: auto;
|
|
13621
|
+
letter-spacing: 0.033em;
|
|
13622
|
+
}
|
|
13623
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page.disabled > a::before,
|
|
13624
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page.disabled > button::before {
|
|
13625
|
+
content: none;
|
|
13626
|
+
}
|
|
13627
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page.disabled > a.focus::after, html:not(#__):not(#___) .cadmin .pagination-items-per-page.disabled > a:focus::after,
|
|
13628
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page.disabled > button.focus::after,
|
|
13629
|
+
html:not(#__):not(#___) .cadmin .pagination-items-per-page.disabled > button:focus::after {
|
|
13630
|
+
content: none;
|
|
13518
13631
|
}
|
|
13519
13632
|
@media (max-width: 767.98px) {
|
|
13520
13633
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page + .pagination-results {
|
|
@@ -15549,7 +15662,7 @@ html:not(#__):not(#___) .cadmin .table-title {
|
|
|
15549
15662
|
html:not(#__):not(#___) .cadmin .table-title a {
|
|
15550
15663
|
border-radius: 1px;
|
|
15551
15664
|
color: #272833;
|
|
15552
|
-
display: inline-
|
|
15665
|
+
display: inline-flex;
|
|
15553
15666
|
max-width: 100%;
|
|
15554
15667
|
transition: box-shadow 0.15s ease-in-out;
|
|
15555
15668
|
}
|
|
@@ -15572,7 +15685,7 @@ html:not(#__):not(#___) .cadmin .table-title a.focus, html:not(#__):not(#___) .c
|
|
|
15572
15685
|
html:not(#__):not(#___) .cadmin .table-link {
|
|
15573
15686
|
border-radius: 1px;
|
|
15574
15687
|
color: #272833;
|
|
15575
|
-
display: inline-
|
|
15688
|
+
display: inline-flex;
|
|
15576
15689
|
max-width: 100%;
|
|
15577
15690
|
transition: box-shadow 0.15s ease-in-out;
|
|
15578
15691
|
}
|
|
@@ -15889,7 +16002,7 @@ html:not(#__):not(#___) .cadmin .table-list-title {
|
|
|
15889
16002
|
html:not(#__):not(#___) .cadmin .table-list-title a {
|
|
15890
16003
|
border-radius: 1px;
|
|
15891
16004
|
color: #272833;
|
|
15892
|
-
display: inline-
|
|
16005
|
+
display: inline-flex;
|
|
15893
16006
|
max-width: 100%;
|
|
15894
16007
|
transition: box-shadow 0.15s ease-in-out;
|
|
15895
16008
|
}
|
|
@@ -15912,7 +16025,7 @@ html:not(#__):not(#___) .cadmin .table-list-title a.focus, html:not(#__):not(#__
|
|
|
15912
16025
|
html:not(#__):not(#___) .cadmin .table-list-link {
|
|
15913
16026
|
border-radius: 1px;
|
|
15914
16027
|
color: #272833;
|
|
15915
|
-
display: inline-
|
|
16028
|
+
display: inline-flex;
|
|
15916
16029
|
max-width: 100%;
|
|
15917
16030
|
transition: box-shadow 0.15s ease-in-out;
|
|
15918
16031
|
}
|
|
@@ -18099,7 +18212,6 @@ html:not(#__):not(#___) .cadmin .c-inner {
|
|
|
18099
18212
|
padding-left: inherit;
|
|
18100
18213
|
padding-right: inherit;
|
|
18101
18214
|
padding-top: inherit;
|
|
18102
|
-
text-overflow: inherit;
|
|
18103
18215
|
width: inherit;
|
|
18104
18216
|
}
|
|
18105
18217
|
html:not(#__):not(#___) .cadmin .heading-start {
|
|
@@ -25902,10 +26014,25 @@ html:not(#__):not(#___) .cadmin .text-nowrap {
|
|
|
25902
26014
|
white-space: nowrap !important;
|
|
25903
26015
|
}
|
|
25904
26016
|
html:not(#__):not(#___) .cadmin .text-truncate {
|
|
26017
|
+
display: block;
|
|
25905
26018
|
overflow: hidden;
|
|
25906
26019
|
text-overflow: ellipsis;
|
|
25907
26020
|
white-space: nowrap;
|
|
25908
26021
|
}
|
|
26022
|
+
html:not(#__):not(#___) .cadmin .text-truncate-inline {
|
|
26023
|
+
display: inline-flex;
|
|
26024
|
+
max-width: 100%;
|
|
26025
|
+
}
|
|
26026
|
+
html:not(#__):not(#___) .cadmin .text-truncate-inline .text-truncate {
|
|
26027
|
+
display: inline-block;
|
|
26028
|
+
max-width: 100%;
|
|
26029
|
+
overflow: hidden;
|
|
26030
|
+
text-overflow: ellipsis;
|
|
26031
|
+
vertical-align: bottom;
|
|
26032
|
+
white-space: nowrap;
|
|
26033
|
+
overflow-wrap: normal;
|
|
26034
|
+
word-wrap: normal;
|
|
26035
|
+
}
|
|
25909
26036
|
html:not(#__):not(#___) .cadmin .text-left {
|
|
25910
26037
|
text-align: left !important;
|
|
25911
26038
|
}
|
|
@@ -26122,6 +26249,51 @@ html:not(#__):not(#___) .cadmin .visible {
|
|
|
26122
26249
|
html:not(#__):not(#___) .cadmin .invisible {
|
|
26123
26250
|
visibility: hidden !important;
|
|
26124
26251
|
}
|
|
26252
|
+
html:not(#__):not(#___) .cadmin .c-prefers-link-underline [href]:not(.disabled):not([role=button]) {
|
|
26253
|
+
text-decoration: underline !important;
|
|
26254
|
+
}
|
|
26255
|
+
html:not(#__):not(#___) .cadmin .c-prefers-link-underline .btn-monospaced[href]:not(.disabled):not([role=button]):not([role=tab])::after, html:not(#__):not(#___) .cadmin .c-prefers-link-underline .nav-btn-monospaced[href]:not(.disabled):not([role=button]):not([role=tab])::after, html:not(#__):not(#___) .cadmin .c-prefers-link-underline .nav-link-monospaced[href]:not(.disabled):not([role=button]):not([role=tab])::after {
|
|
26256
|
+
content: " ";
|
|
26257
|
+
position: absolute;
|
|
26258
|
+
text-decoration: underline !important;
|
|
26259
|
+
}
|
|
26260
|
+
html:not(#__):not(#___) .cadmin .c-prefers-link-underline .multi-step-item.active .multi-step-icon[href]:not([role=button])::after, html:not(#__):not(#___) .cadmin .c-prefers-link-underline .multi-step-item.complete .multi-step-icon[href]:not([role=button])::after, html:not(#__):not(#___) .cadmin .c-prefers-link-underline .multi-step-item.error .multi-step-icon[href]:not([role=button])::after, html:not(#__):not(#___) .cadmin .c-prefers-link-underline .dropdown .multi-step-icon[href]:not([role=button])::after {
|
|
26261
|
+
content: " ";
|
|
26262
|
+
position: absolute;
|
|
26263
|
+
text-decoration: underline !important;
|
|
26264
|
+
}
|
|
26265
|
+
html:not(#__):not(#___) .cadmin .c-prefers-link-underline .multi-step-item.disabled .multi-step-icon[href]:not([role=button])::after {
|
|
26266
|
+
text-decoration: none !important;
|
|
26267
|
+
}
|
|
26268
|
+
html:not(#__):not(#___) .cadmin .c-prefers-letter-spacing-1 {
|
|
26269
|
+
letter-spacing: 1px !important;
|
|
26270
|
+
}
|
|
26271
|
+
html:not(#__):not(#___) .cadmin .d-block-c-prefers-reduced-motion {
|
|
26272
|
+
display: none !important;
|
|
26273
|
+
}
|
|
26274
|
+
html:not(#__):not(#___) .cadmin .d-inline-block-c-prefers-reduced-motion {
|
|
26275
|
+
display: none !important;
|
|
26276
|
+
}
|
|
26277
|
+
@media (prefers-reduced-motion: reduce) {
|
|
26278
|
+
html:not(#__):not(#___) .cadmin .d-none-c-prefers-reduced-motion {
|
|
26279
|
+
display: none !important;
|
|
26280
|
+
}
|
|
26281
|
+
html:not(#__):not(#___) .cadmin .d-block-c-prefers-reduced-motion {
|
|
26282
|
+
display: block !important;
|
|
26283
|
+
}
|
|
26284
|
+
html:not(#__):not(#___) .cadmin .d-inline-block-c-prefers-reduced-motion {
|
|
26285
|
+
display: inline-block !important;
|
|
26286
|
+
}
|
|
26287
|
+
}
|
|
26288
|
+
html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion .d-none-c-prefers-reduced-motion {
|
|
26289
|
+
display: none !important;
|
|
26290
|
+
}
|
|
26291
|
+
html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion .d-block-c-prefers-reduced-motion {
|
|
26292
|
+
display: block !important;
|
|
26293
|
+
}
|
|
26294
|
+
html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion .d-inline-block-c-prefers-reduced-motion {
|
|
26295
|
+
display: inline-block !important;
|
|
26296
|
+
}
|
|
26125
26297
|
html:not(#__):not(#___) .cadmin .c-prefers-reduced-motion {
|
|
26126
26298
|
scroll-behavior: auto;
|
|
26127
26299
|
transition: none;
|