@clayui/css 3.109.0 → 3.111.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/CHANGELOG.md +35 -0
- package/lib/css/atlas.css +183 -55
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +162 -34
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +160 -25
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icon-rule-builder.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/icon-rule-builder.svg +9 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +1 -1
- package/src/scss/atlas/variables/_menubar.scss +4 -4
- package/src/scss/atlas/variables/_navs.scss +1 -1
- package/src/scss/atlas/variables/_panels.scss +20 -0
- package/src/scss/cadmin/components/_dropdowns.scss +16 -0
- package/src/scss/cadmin/components/_print.scss +6 -2
- package/src/scss/cadmin/variables/_dropdowns.scss +106 -0
- package/src/scss/cadmin/variables/_globals.scss +1 -1
- package/src/scss/cadmin/variables/_menubar.scss +4 -4
- package/src/scss/components/_panels.scss +77 -33
- package/src/scss/components/_print.scss +6 -2
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/mixins/_panels.scss +24 -0
- package/src/scss/variables/_dropdowns.scss +5 -5
- package/src/scss/variables/_navs.scss +1 -1
- package/src/scss/variables/_panels.scss +195 -0
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.111.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.111.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>
|
|
@@ -895,7 +895,7 @@ html:not(#__):not(#___) .cadmin .btn {
|
|
|
895
895
|
border-width: 1px;
|
|
896
896
|
border-radius: 4px;
|
|
897
897
|
box-shadow: [];
|
|
898
|
-
color: #
|
|
898
|
+
color: #1c1c24;
|
|
899
899
|
cursor: pointer;
|
|
900
900
|
display: inline-block;
|
|
901
901
|
font-size: 16px;
|
|
@@ -925,7 +925,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .btn {
|
|
|
925
925
|
}
|
|
926
926
|
|
|
927
927
|
html:not(#__):not(#___) .cadmin .btn:hover {
|
|
928
|
-
color: #
|
|
928
|
+
color: #1c1c24;
|
|
929
929
|
text-decoration: none;
|
|
930
930
|
}
|
|
931
931
|
html:not(#__):not(#___) .cadmin .btn.focus, html:not(#__):not(#___) .cadmin .btn:focus-visible,
|
|
@@ -5672,7 +5672,7 @@ html:not(#__):not(#___) .cadmin .form-check-card .form-check-input {
|
|
|
5672
5672
|
z-index: 1;
|
|
5673
5673
|
}
|
|
5674
5674
|
html:not(#__):not(#___) .cadmin .form-check-card .form-check-label {
|
|
5675
|
-
color: #
|
|
5675
|
+
color: #1c1c24;
|
|
5676
5676
|
display: inline;
|
|
5677
5677
|
font-weight: 400;
|
|
5678
5678
|
padding-left: 0;
|
|
@@ -6324,7 +6324,7 @@ html:not(#__):not(#___) .cadmin .dropdown-menu, html:not(#__):not(#___) .cadmin.
|
|
|
6324
6324
|
border-width: 0;
|
|
6325
6325
|
border-radius: 4px;
|
|
6326
6326
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
6327
|
-
color: #
|
|
6327
|
+
color: #1c1c24;
|
|
6328
6328
|
display: none;
|
|
6329
6329
|
float: left;
|
|
6330
6330
|
font-size: 14px;
|
|
@@ -6386,6 +6386,125 @@ html:not(#__):not(#___) .cadmin .dropdown-menu > .list-unstyled, html:not(#__):n
|
|
|
6386
6386
|
html:not(#__):not(#___) .cadmin .dropdown-menu.show, html:not(#__):not(#___) .cadmin.dropdown-menu.show {
|
|
6387
6387
|
display: block;
|
|
6388
6388
|
}
|
|
6389
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-header {
|
|
6390
|
+
padding-bottom: 6px;
|
|
6391
|
+
padding-left: 28px;
|
|
6392
|
+
padding-right: 8px;
|
|
6393
|
+
padding-top: 5px;
|
|
6394
|
+
}
|
|
6395
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-subheader {
|
|
6396
|
+
padding-bottom: 7px;
|
|
6397
|
+
padding-left: 28px;
|
|
6398
|
+
padding-right: 8px;
|
|
6399
|
+
padding-top: 7px;
|
|
6400
|
+
}
|
|
6401
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-section {
|
|
6402
|
+
padding-left: 28px;
|
|
6403
|
+
padding-right: 8px;
|
|
6404
|
+
}
|
|
6405
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item {
|
|
6406
|
+
padding-bottom: 6px;
|
|
6407
|
+
padding-left: 28px;
|
|
6408
|
+
padding-right: 8px;
|
|
6409
|
+
padding-top: 5px;
|
|
6410
|
+
}
|
|
6411
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item .c-inner {
|
|
6412
|
+
flex-grow: 1;
|
|
6413
|
+
margin-bottom: -6px;
|
|
6414
|
+
margin-left: -28px;
|
|
6415
|
+
margin-right: -8px;
|
|
6416
|
+
margin-top: -5px;
|
|
6417
|
+
width: auto;
|
|
6418
|
+
}
|
|
6419
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item.autofit-row {
|
|
6420
|
+
padding-left: 24px;
|
|
6421
|
+
padding-right: 8px;
|
|
6422
|
+
}
|
|
6423
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll {
|
|
6424
|
+
font-size: 16px;
|
|
6425
|
+
height: 32px;
|
|
6426
|
+
padding: 0;
|
|
6427
|
+
position: absolute;
|
|
6428
|
+
text-align: center;
|
|
6429
|
+
z-index: 1;
|
|
6430
|
+
}
|
|
6431
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:hover, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.hover {
|
|
6432
|
+
background-color: #f0f5ff;
|
|
6433
|
+
background-image: none;
|
|
6434
|
+
color: #272833;
|
|
6435
|
+
}
|
|
6436
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.focus, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus-visible, .c-prefers-focus html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus {
|
|
6437
|
+
background-color: #f0f5ff;
|
|
6438
|
+
background-image: none;
|
|
6439
|
+
color: #272833;
|
|
6440
|
+
}
|
|
6441
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active {
|
|
6442
|
+
background-color: #f0f5ff;
|
|
6443
|
+
background-image: none;
|
|
6444
|
+
color: #272833;
|
|
6445
|
+
}
|
|
6446
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active label {
|
|
6447
|
+
color: #272833;
|
|
6448
|
+
}
|
|
6449
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active .form-check-label {
|
|
6450
|
+
color: #272833;
|
|
6451
|
+
}
|
|
6452
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active {
|
|
6453
|
+
background-color: #f0f5ff;
|
|
6454
|
+
background-image: none;
|
|
6455
|
+
color: #272833;
|
|
6456
|
+
}
|
|
6457
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active label {
|
|
6458
|
+
color: #272833;
|
|
6459
|
+
}
|
|
6460
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active .form-check-label {
|
|
6461
|
+
color: #272833;
|
|
6462
|
+
}
|
|
6463
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled {
|
|
6464
|
+
background-color: transparent;
|
|
6465
|
+
background-image: none;
|
|
6466
|
+
color: #a7a9bc;
|
|
6467
|
+
cursor: not-allowed;
|
|
6468
|
+
}
|
|
6469
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled label,
|
|
6470
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled .form-check-label, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled label,
|
|
6471
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled .form-check-label {
|
|
6472
|
+
color: #a7a9bc;
|
|
6473
|
+
}
|
|
6474
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll .c-inner {
|
|
6475
|
+
flex-grow: 1;
|
|
6476
|
+
width: auto;
|
|
6477
|
+
}
|
|
6478
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-down {
|
|
6479
|
+
background-image: linear-gradient(to top, white 84%, rgba(255, 255, 255, 0) 100%);
|
|
6480
|
+
bottom: 6px;
|
|
6481
|
+
}
|
|
6482
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-down .c-inner {
|
|
6483
|
+
flex-grow: 1;
|
|
6484
|
+
width: auto;
|
|
6485
|
+
}
|
|
6486
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-up {
|
|
6487
|
+
background-image: linear-gradient(to bottom, white 84%, rgba(255, 255, 255, 0) 100%);
|
|
6488
|
+
top: 6px;
|
|
6489
|
+
}
|
|
6490
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-up .c-inner {
|
|
6491
|
+
flex-grow: 1;
|
|
6492
|
+
width: auto;
|
|
6493
|
+
}
|
|
6494
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-divider {
|
|
6495
|
+
margin: 5px 0;
|
|
6496
|
+
}
|
|
6497
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-start .dropdown-item-indicator-start {
|
|
6498
|
+
left: 8px;
|
|
6499
|
+
top: 8px;
|
|
6500
|
+
}
|
|
6501
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
|
|
6502
|
+
right: 8px;
|
|
6503
|
+
top: 8px;
|
|
6504
|
+
}
|
|
6505
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu-height-lg .inline-scroller {
|
|
6506
|
+
max-height: 432px;
|
|
6507
|
+
}
|
|
6389
6508
|
html:not(#__):not(#___) .cadmin .dropdown-menu-left, html:not(#__):not(#___) .cadmin.dropdown-menu-left {
|
|
6390
6509
|
left: 0;
|
|
6391
6510
|
right: auto;
|
|
@@ -6940,7 +7059,7 @@ html:not(#__):not(#___) .cadmin .form-control-plaintext {
|
|
|
6940
7059
|
border-right-width: 1px;
|
|
6941
7060
|
border-style: solid;
|
|
6942
7061
|
border-top-width: 1px;
|
|
6943
|
-
color: #
|
|
7062
|
+
color: #1c1c24;
|
|
6944
7063
|
display: block;
|
|
6945
7064
|
font-size: 16px;
|
|
6946
7065
|
height: 40px;
|
|
@@ -10308,7 +10427,7 @@ html:not(#__):not(#___) .cadmin .list-group-item-action:hover, html:not(#__):not
|
|
|
10308
10427
|
}
|
|
10309
10428
|
html:not(#__):not(#___) .cadmin .list-group-item-action:active {
|
|
10310
10429
|
background-color: #f1f2f5;
|
|
10311
|
-
color: #
|
|
10430
|
+
color: #1c1c24;
|
|
10312
10431
|
}
|
|
10313
10432
|
html:not(#__):not(#___) .cadmin .list-group {
|
|
10314
10433
|
border-radius: 4px;
|
|
@@ -12167,7 +12286,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.co
|
|
|
12167
12286
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
12168
12287
|
border-radius: 4px;
|
|
12169
12288
|
color: #6b6c7e;
|
|
12170
|
-
letter-spacing: 0.
|
|
12289
|
+
letter-spacing: 0.016rem;
|
|
12171
12290
|
margin-bottom: 4px;
|
|
12172
12291
|
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;
|
|
12173
12292
|
}
|
|
@@ -12235,7 +12354,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
12235
12354
|
color: rgba(0, 0, 0, 0.3);
|
|
12236
12355
|
box-shadow: none;
|
|
12237
12356
|
font-weight: 400;
|
|
12238
|
-
letter-spacing: 0.
|
|
12357
|
+
letter-spacing: 0.016rem;
|
|
12239
12358
|
}
|
|
12240
12359
|
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 {
|
|
12241
12360
|
content: none;
|
|
@@ -12417,7 +12536,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.co
|
|
|
12417
12536
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
12418
12537
|
border-radius: 4px;
|
|
12419
12538
|
color: #6b6c7e;
|
|
12420
|
-
letter-spacing: 0.
|
|
12539
|
+
letter-spacing: 0.016rem;
|
|
12421
12540
|
margin-bottom: 4px;
|
|
12422
12541
|
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;
|
|
12423
12542
|
}
|
|
@@ -12484,7 +12603,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
12484
12603
|
color: rgba(0, 0, 0, 0.3);
|
|
12485
12604
|
box-shadow: none;
|
|
12486
12605
|
font-weight: 400;
|
|
12487
|
-
letter-spacing: 0.
|
|
12606
|
+
letter-spacing: 0.016rem;
|
|
12488
12607
|
}
|
|
12489
12608
|
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 {
|
|
12490
12609
|
content: none;
|
|
@@ -15667,7 +15786,7 @@ html:not(#__):not(#___) .cadmin .sheet-subtitle {
|
|
|
15667
15786
|
border-color: #a7a9bc;
|
|
15668
15787
|
border-style: solid;
|
|
15669
15788
|
border-width: 0 0 1px 0;
|
|
15670
|
-
color: #
|
|
15789
|
+
color: #1c1c24;
|
|
15671
15790
|
display: block;
|
|
15672
15791
|
font-size: 14px;
|
|
15673
15792
|
font-weight: 600;
|
|
@@ -15710,7 +15829,7 @@ html:not(#__):not(#___) .cadmin .sheet-subtitle .btn {
|
|
|
15710
15829
|
}
|
|
15711
15830
|
html:not(#__):not(#___) .cadmin a.sheet-subtitle {
|
|
15712
15831
|
border-radius: 1px;
|
|
15713
|
-
color: #
|
|
15832
|
+
color: #1c1c24;
|
|
15714
15833
|
transition: box-shadow 0.15s ease-in-out;
|
|
15715
15834
|
}
|
|
15716
15835
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -15731,7 +15850,7 @@ html:not(#__):not(#___) .c-prefers-focus .cadmin a.sheet-subtitle {
|
|
|
15731
15850
|
outline: 0;
|
|
15732
15851
|
}
|
|
15733
15852
|
html:not(#__):not(#___) .cadmin .sheet-tertiary-title {
|
|
15734
|
-
color: #
|
|
15853
|
+
color: #1c1c24;
|
|
15735
15854
|
display: block;
|
|
15736
15855
|
font-size: 14px;
|
|
15737
15856
|
font-weight: 600;
|
|
@@ -16399,7 +16518,7 @@ html:not(#__):not(#___) .cadmin .table-head-title .inline-item-after {
|
|
|
16399
16518
|
html:not(#__):not(#___) .cadmin .table {
|
|
16400
16519
|
background-color: #fff;
|
|
16401
16520
|
border-spacing: 0;
|
|
16402
|
-
color: #
|
|
16521
|
+
color: #1c1c24;
|
|
16403
16522
|
font-size: 14px;
|
|
16404
16523
|
margin-bottom: 0;
|
|
16405
16524
|
width: 100%;
|
|
@@ -16586,7 +16705,7 @@ html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd):not(.ta
|
|
|
16586
16705
|
}
|
|
16587
16706
|
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover {
|
|
16588
16707
|
background-color: #f0f5ff;
|
|
16589
|
-
color: #
|
|
16708
|
+
color: #1c1c24;
|
|
16590
16709
|
}
|
|
16591
16710
|
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover .quick-action-menu {
|
|
16592
16711
|
background-color: #f0f5ff;
|
|
@@ -16824,7 +16943,7 @@ html:not(#__):not(#___) .cadmin .table-list {
|
|
|
16824
16943
|
border-radius: 4px;
|
|
16825
16944
|
border-style: solid;
|
|
16826
16945
|
border-width: 1px 1px;
|
|
16827
|
-
color: #
|
|
16946
|
+
color: #1c1c24;
|
|
16828
16947
|
margin-bottom: 1px;
|
|
16829
16948
|
}
|
|
16830
16949
|
html:not(#__):not(#___) .cadmin .table-list thead {
|
|
@@ -17726,7 +17845,7 @@ html:not(#__):not(#___) .cadmin .tbar-stacked .tbar-item {
|
|
|
17726
17845
|
padding-right: 0;
|
|
17727
17846
|
}
|
|
17728
17847
|
html:not(#__):not(#___) .cadmin .tbar-stacked .tbar-divider-before::before {
|
|
17729
|
-
background-color: #
|
|
17848
|
+
background-color: #1c1c24;
|
|
17730
17849
|
content: "";
|
|
17731
17850
|
display: block;
|
|
17732
17851
|
height: 1px;
|
|
@@ -17735,7 +17854,7 @@ html:not(#__):not(#___) .cadmin .tbar-stacked .tbar-divider-before::before {
|
|
|
17735
17854
|
width: 40px;
|
|
17736
17855
|
}
|
|
17737
17856
|
html:not(#__):not(#___) .cadmin .tbar-stacked .tbar-divider-after::after {
|
|
17738
|
-
background-color: #
|
|
17857
|
+
background-color: #1c1c24;
|
|
17739
17858
|
content: "";
|
|
17740
17859
|
display: block;
|
|
17741
17860
|
height: 1px;
|
|
@@ -17922,7 +18041,7 @@ html:not(#__):not(#___) .cadmin .timeline-increment-text {
|
|
|
17922
18041
|
max-width: 65px;
|
|
17923
18042
|
}
|
|
17924
18043
|
html:not(#__):not(#___) .cadmin .timeline-item-label {
|
|
17925
|
-
color: #
|
|
18044
|
+
color: #1c1c24;
|
|
17926
18045
|
}
|
|
17927
18046
|
html:not(#__):not(#___) .cadmin .timeline-item {
|
|
17928
18047
|
padding-bottom: 5px;
|
|
@@ -27410,7 +27529,7 @@ html:not(#__):not(#___) .cadmin a.text-dark:hover, html:not(#__):not(#___) .cadm
|
|
|
27410
27529
|
color: #060608 !important;
|
|
27411
27530
|
}
|
|
27412
27531
|
html:not(#__):not(#___) .cadmin .text-body {
|
|
27413
|
-
color: #
|
|
27532
|
+
color: #1c1c24 !important;
|
|
27414
27533
|
}
|
|
27415
27534
|
html:not(#__):not(#___) .cadmin .text-muted {
|
|
27416
27535
|
color: #a7a9bc !important;
|
|
@@ -27729,23 +27848,33 @@ html:not(#__):not(#___) .cadmin h3 {
|
|
|
27729
27848
|
html:not(#__):not(#___) .cadmin h3 {
|
|
27730
27849
|
page-break-after: avoid;
|
|
27731
27850
|
}
|
|
27851
|
+
}
|
|
27852
|
+
@media print {
|
|
27732
27853
|
@page {
|
|
27733
|
-
|
|
27734
|
-
size: a3;
|
|
27735
|
-
}
|
|
27854
|
+
size: a3;
|
|
27736
27855
|
}
|
|
27856
|
+
}
|
|
27857
|
+
@media print {
|
|
27737
27858
|
html:not(#__):not(#___) .cadmin body {
|
|
27738
27859
|
min-width: 992px !important;
|
|
27739
27860
|
}
|
|
27861
|
+
}
|
|
27862
|
+
@media print {
|
|
27740
27863
|
html:not(#__):not(#___) .cadmin .container {
|
|
27741
27864
|
min-width: 992px !important;
|
|
27742
27865
|
}
|
|
27866
|
+
}
|
|
27867
|
+
@media print {
|
|
27743
27868
|
html:not(#__):not(#___) .cadmin .navbar {
|
|
27744
27869
|
display: none;
|
|
27745
27870
|
}
|
|
27871
|
+
}
|
|
27872
|
+
@media print {
|
|
27746
27873
|
html:not(#__):not(#___) .cadmin .badge {
|
|
27747
27874
|
border: 1px solid #000;
|
|
27748
27875
|
}
|
|
27876
|
+
}
|
|
27877
|
+
@media print {
|
|
27749
27878
|
html:not(#__):not(#___) .cadmin .table {
|
|
27750
27879
|
border-collapse: collapse !important;
|
|
27751
27880
|
}
|
|
@@ -27753,10 +27882,14 @@ html:not(#__):not(#___) .cadmin h3 {
|
|
|
27753
27882
|
html:not(#__):not(#___) .cadmin .table th {
|
|
27754
27883
|
background-color: #fff !important;
|
|
27755
27884
|
}
|
|
27885
|
+
}
|
|
27886
|
+
@media print {
|
|
27756
27887
|
html:not(#__):not(#___) .cadmin .table-bordered th,
|
|
27757
27888
|
html:not(#__):not(#___) .cadmin .table-bordered td {
|
|
27758
27889
|
border: 1px solid #e7e7ed !important;
|
|
27759
27890
|
}
|
|
27891
|
+
}
|
|
27892
|
+
@media print {
|
|
27760
27893
|
html:not(#__):not(#___) .cadmin .table-dark {
|
|
27761
27894
|
color: inherit;
|
|
27762
27895
|
}
|
|
@@ -27766,6 +27899,8 @@ html:not(#__):not(#___) .cadmin .table-dark thead th,
|
|
|
27766
27899
|
html:not(#__):not(#___) .cadmin .table-dark tbody + tbody {
|
|
27767
27900
|
border-color: #e7e7ed;
|
|
27768
27901
|
}
|
|
27902
|
+
}
|
|
27903
|
+
@media print {
|
|
27769
27904
|
html:not(#__):not(#___) .cadmin .table .thead-dark th {
|
|
27770
27905
|
border-color: #e7e7ed;
|
|
27771
27906
|
color: inherit;
|