@clayui/css 3.89.0 → 3.91.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 +140 -243
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +102 -154
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +153 -241
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/angle-double-left-small.svg +10 -0
- package/lib/images/icons/angle-double-left.svg +10 -0
- package/lib/images/icons/angle-double-right-small.svg +10 -0
- package/lib/images/icons/angle-double-right.svg +10 -0
- package/lib/images/icons/field-area.svg +10 -0
- package/lib/images/icons/flags-km-KH.svg +12 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/angle-double-left-small.svg +10 -0
- package/src/images/icons/angle-double-left.svg +10 -0
- package/src/images/icons/angle-double-right-small.svg +10 -0
- package/src/images/icons/angle-double-right.svg +10 -0
- package/src/images/icons/field-area.svg +10 -0
- package/src/images/icons/flags-km-KH.svg +12 -0
- package/src/scss/_components.scss +1 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/_variables.scss +1 -0
- package/src/scss/atlas/variables/_menubar.scss +68 -62
- package/src/scss/atlas/variables/_navbar.scss +34 -0
- package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
- package/src/scss/atlas/variables/_navs.scss +20 -41
- package/src/scss/cadmin/_variables.scss +1 -0
- package/src/scss/cadmin/components/_navbar.scss +1 -43
- package/src/scss/cadmin/components/_navs.scss +8 -16
- package/src/scss/cadmin/components/_resizer.scss +11 -0
- package/src/scss/cadmin/variables/_menubar.scss +204 -189
- package/src/scss/cadmin/variables/_navbar.scss +47 -0
- package/src/scss/cadmin/variables/_navigation-bar.scss +1 -1
- package/src/scss/cadmin/variables/_navs.scss +13 -108
- package/src/scss/cadmin/variables/_pagination.scss +3 -3
- package/src/scss/cadmin/variables/_resizer.scss +21 -0
- package/src/scss/cadmin/variables/_slideout.scss +7 -0
- package/src/scss/cadmin/variables/_treeview.scss +1 -0
- package/src/scss/cadmin.scss +1 -0
- package/src/scss/components/_navbar.scss +1 -40
- package/src/scss/components/_navs.scss +9 -14
- package/src/scss/components/_resizer.scss +11 -0
- package/src/scss/functions/_lx-icons-generated.scss +12 -0
- package/src/scss/mixins/_breakpoints.scss +44 -40
- package/src/scss/mixins/_menubar.scss +131 -10
- package/src/scss/mixins/_slideout.scss +32 -1
- package/src/scss/variables/_menubar.scss +158 -161
- package/src/scss/variables/_navbar.scss +46 -0
- package/src/scss/variables/_navs.scss +2 -98
- package/src/scss/variables/_resizer.scss +22 -0
- package/src/scss/variables/_slideout.scss +8 -0
- package/src/scss/variables/_treeview.scss +1 -0
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.91.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.91.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>
|
|
@@ -1770,6 +1770,23 @@ html:not(#__):not(#___) .cadmin .btn .loading-animation {
|
|
|
1770
1770
|
font-size: 1em;
|
|
1771
1771
|
margin-top: -0.1em;
|
|
1772
1772
|
}
|
|
1773
|
+
html:not(#__):not(#___) .cadmin .c-horizontal-resizer {
|
|
1774
|
+
background-color: transparent;
|
|
1775
|
+
bottom: 0;
|
|
1776
|
+
cursor: ew-resize;
|
|
1777
|
+
margin-right: -0.25rem;
|
|
1778
|
+
position: absolute;
|
|
1779
|
+
right: 0;
|
|
1780
|
+
top: 0;
|
|
1781
|
+
width: 0.5rem;
|
|
1782
|
+
z-index: 10;
|
|
1783
|
+
}
|
|
1784
|
+
html:not(#__):not(#___) .cadmin .c-horizontal-resizer:hover {
|
|
1785
|
+
background-color: #80acff;
|
|
1786
|
+
}
|
|
1787
|
+
html:not(#__):not(#___) .cadmin .c-horizontal-resizer:focus {
|
|
1788
|
+
background-color: #80acff;
|
|
1789
|
+
}
|
|
1773
1790
|
html:not(#__):not(#___) .cadmin .fade, html:not(#__):not(#___) .cadmin.fade {
|
|
1774
1791
|
transition: opacity 0.15s linear;
|
|
1775
1792
|
}
|
|
@@ -10778,7 +10795,13 @@ html:not(#__):not(#___) .cadmin .nav-nested-margins > li .nav > li {
|
|
|
10778
10795
|
margin-left: 16px;
|
|
10779
10796
|
}
|
|
10780
10797
|
html:not(#__):not(#___) .cadmin .nav-tabs {
|
|
10781
|
-
|
|
10798
|
+
background-color: #f7f8f9;
|
|
10799
|
+
border-color: #cdced9;
|
|
10800
|
+
border-style: solid;
|
|
10801
|
+
border-width: 1px 0;
|
|
10802
|
+
padding-left: 24px;
|
|
10803
|
+
padding-right: 24px;
|
|
10804
|
+
padding-top: 7px;
|
|
10782
10805
|
font-size: 14px;
|
|
10783
10806
|
}
|
|
10784
10807
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link {
|
|
@@ -10808,13 +10831,13 @@ html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.focus, html:not(#__):not(#__
|
|
|
10808
10831
|
}
|
|
10809
10832
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link:active {
|
|
10810
10833
|
background-color: #fff;
|
|
10811
|
-
border-color:
|
|
10834
|
+
border-color: #cdced9 #cdced9 #fff;
|
|
10812
10835
|
color: #272833;
|
|
10813
10836
|
}
|
|
10814
10837
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.active {
|
|
10815
10838
|
background-color: #fff;
|
|
10816
10839
|
color: #272833;
|
|
10817
|
-
border-color:
|
|
10840
|
+
border-color: #cdced9 #cdced9 #fff;
|
|
10818
10841
|
}
|
|
10819
10842
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link:disabled, html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.disabled {
|
|
10820
10843
|
background-color: transparent;
|
|
@@ -10823,9 +10846,9 @@ html:not(#__):not(#___) .cadmin .nav-tabs .nav-link:disabled, html:not(#__):not(
|
|
|
10823
10846
|
color: #a7a9bc;
|
|
10824
10847
|
}
|
|
10825
10848
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.show {
|
|
10826
|
-
background-color:
|
|
10849
|
+
background-color: #fff;
|
|
10827
10850
|
color: #272833;
|
|
10828
|
-
border-color:
|
|
10851
|
+
border-color: #cdced9 #cdced9 #fff;
|
|
10829
10852
|
}
|
|
10830
10853
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link > .c-inner {
|
|
10831
10854
|
margin-bottom: -4.5px;
|
|
@@ -10863,51 +10886,6 @@ html:not(#__):not(#___) .cadmin .dropdown-item[data-toggle=tab].active .dropdown
|
|
|
10863
10886
|
html:not(#__):not(#___) .cadmin .dropdown-item[data-toggle=tab].active .dropdown-item-indicator-end {
|
|
10864
10887
|
display: block;
|
|
10865
10888
|
}
|
|
10866
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link {
|
|
10867
|
-
border-radius: 1px;
|
|
10868
|
-
color: #6b6c7e;
|
|
10869
|
-
font-weight: 600;
|
|
10870
|
-
line-height: 1;
|
|
10871
|
-
padding-bottom: 9px;
|
|
10872
|
-
padding-top: 9px;
|
|
10873
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
10874
|
-
}
|
|
10875
|
-
@media (prefers-reduced-motion: reduce) {
|
|
10876
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link {
|
|
10877
|
-
transition: none;
|
|
10878
|
-
}
|
|
10879
|
-
}
|
|
10880
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link::after {
|
|
10881
|
-
bottom: 0;
|
|
10882
|
-
display: block;
|
|
10883
|
-
position: absolute;
|
|
10884
|
-
left: 0;
|
|
10885
|
-
right: 0;
|
|
10886
|
-
width: auto;
|
|
10887
|
-
}
|
|
10888
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link.focus, html:not(#__):not(#___) .cadmin .nav-underline .nav-link:focus {
|
|
10889
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
10890
|
-
outline: 0;
|
|
10891
|
-
}
|
|
10892
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link.active {
|
|
10893
|
-
color: #272833;
|
|
10894
|
-
}
|
|
10895
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link.active::after {
|
|
10896
|
-
background-color: #528eff;
|
|
10897
|
-
content: "";
|
|
10898
|
-
height: 2px;
|
|
10899
|
-
}
|
|
10900
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link:disabled, html:not(#__):not(#___) .cadmin .nav-underline .nav-link.disabled {
|
|
10901
|
-
box-shadow: none;
|
|
10902
|
-
color: #a7a9bc;
|
|
10903
|
-
}
|
|
10904
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .nav-underline .nav-link.show {
|
|
10905
|
-
color: #272833;
|
|
10906
|
-
}
|
|
10907
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link > .c-inner {
|
|
10908
|
-
margin-bottom: -9px;
|
|
10909
|
-
margin-top: -9px;
|
|
10910
|
-
}
|
|
10911
10889
|
html:not(#__):not(#___) .cadmin .menubar {
|
|
10912
10890
|
position: relative;
|
|
10913
10891
|
}
|
|
@@ -10917,6 +10895,12 @@ html:not(#__):not(#___) .cadmin .menubar-toggler {
|
|
|
10917
10895
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md {
|
|
10918
10896
|
max-width: 250px;
|
|
10919
10897
|
}
|
|
10898
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse {
|
|
10899
|
+
display: block;
|
|
10900
|
+
}
|
|
10901
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.collapsing, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.show {
|
|
10902
|
+
display: block;
|
|
10903
|
+
}
|
|
10920
10904
|
@media (max-width: 767.98px) {
|
|
10921
10905
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md {
|
|
10922
10906
|
align-items: center;
|
|
@@ -10926,12 +10910,8 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md {
|
|
|
10926
10910
|
margin-bottom: 24px;
|
|
10927
10911
|
margin-left: -12px;
|
|
10928
10912
|
margin-right: -12px;
|
|
10913
|
+
max-width: none;
|
|
10929
10914
|
}
|
|
10930
|
-
}
|
|
10931
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse {
|
|
10932
|
-
display: block;
|
|
10933
|
-
}
|
|
10934
|
-
@media (max-width: 767.98px) {
|
|
10935
10915
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse {
|
|
10936
10916
|
border-color: transparent;
|
|
10937
10917
|
border-style: solid;
|
|
@@ -10943,11 +10923,6 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse {
|
|
|
10943
10923
|
top: 100%;
|
|
10944
10924
|
z-index: 499;
|
|
10945
10925
|
}
|
|
10946
|
-
}
|
|
10947
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.collapsing, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.show {
|
|
10948
|
-
display: block;
|
|
10949
|
-
}
|
|
10950
|
-
@media (max-width: 767.98px) {
|
|
10951
10926
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-toggler {
|
|
10952
10927
|
align-items: center;
|
|
10953
10928
|
border-color: transparent;
|
|
@@ -10960,71 +10935,40 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.co
|
|
|
10960
10935
|
}
|
|
10961
10936
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-toggler .c-inner {
|
|
10962
10937
|
max-width: none;
|
|
10963
|
-
margin-left: -8px;
|
|
10964
|
-
margin-right: -8px;
|
|
10965
10938
|
}
|
|
10966
10939
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-toggler .lexicon-icon {
|
|
10967
10940
|
margin-top: 0;
|
|
10968
10941
|
}
|
|
10969
|
-
}
|
|
10970
|
-
@media (max-width: 767.98px) {
|
|
10971
10942
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-nested {
|
|
10972
10943
|
margin-bottom: 8px;
|
|
10973
10944
|
margin-top: 8px;
|
|
10974
10945
|
}
|
|
10975
|
-
}
|
|
10976
|
-
@media (max-width: 767.98px) {
|
|
10977
10946
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-nested-margins > li .nav > li {
|
|
10978
10947
|
margin-left: 0;
|
|
10979
10948
|
}
|
|
10980
|
-
|
|
10981
|
-
|
|
10982
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent {
|
|
10983
|
-
background-color: #fff;
|
|
10949
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link {
|
|
10950
|
+
color: #6b6c7e;
|
|
10984
10951
|
}
|
|
10985
|
-
|
|
10986
|
-
|
|
10987
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-collapse {
|
|
10988
|
-
background-color: #fff;
|
|
10989
|
-
border-color: #e7e7ed;
|
|
10990
|
-
border-radius: 4px;
|
|
10991
|
-
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
10952
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link:hover, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link.hover {
|
|
10953
|
+
color: #6b6c7e;
|
|
10992
10954
|
}
|
|
10993
|
-
|
|
10994
|
-
@media (max-width: 767.98px) {
|
|
10995
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
10955
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link:active {
|
|
10996
10956
|
color: #272833;
|
|
10997
|
-
font-size: 14px;
|
|
10998
|
-
font-weight: 600;
|
|
10999
|
-
text-decoration: none;
|
|
11000
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
11001
|
-
}
|
|
11002
|
-
}
|
|
11003
|
-
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
|
|
11004
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
11005
|
-
transition: none;
|
|
11006
10957
|
}
|
|
11007
|
-
|
|
11008
|
-
|
|
11009
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler:focus, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler.focus {
|
|
11010
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
11011
|
-
outline: 0;
|
|
10958
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link.active {
|
|
10959
|
+
color: #272833;
|
|
11012
10960
|
}
|
|
11013
|
-
|
|
11014
|
-
|
|
11015
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler:active:focus {
|
|
11016
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
10961
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link.disabled {
|
|
10962
|
+
color: #a7a9bc;
|
|
11017
10963
|
}
|
|
11018
|
-
|
|
11019
|
-
|
|
11020
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler.disabled {
|
|
11021
|
-
box-shadow: none;
|
|
10964
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .nav-link.show {
|
|
10965
|
+
color: #272833;
|
|
11022
10966
|
}
|
|
11023
10967
|
}
|
|
11024
10968
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
11025
10969
|
border-radius: 6px;
|
|
11026
|
-
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;
|
|
11027
10970
|
color: #6b6c7e;
|
|
10971
|
+
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;
|
|
11028
10972
|
}
|
|
11029
10973
|
@media (prefers-reduced-motion: reduce) {
|
|
11030
10974
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
@@ -11045,17 +10989,40 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
11045
10989
|
color: rgba(0, 0, 0, 0.9);
|
|
11046
10990
|
}
|
|
11047
10991
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
10992
|
+
font-weight: 600;
|
|
11048
10993
|
background-color: rgba(11, 95, 255, 0.06);
|
|
11049
10994
|
color: #272833;
|
|
11050
|
-
font-weight: 600;
|
|
11051
10995
|
}
|
|
11052
10996
|
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 {
|
|
11053
|
-
box-shadow: none;
|
|
11054
10997
|
color: rgba(0, 0, 0, 0.3);
|
|
10998
|
+
box-shadow: none;
|
|
11055
10999
|
}
|
|
11056
11000
|
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 {
|
|
11057
|
-
color: #272833;
|
|
11058
11001
|
font-weight: 600;
|
|
11002
|
+
color: #272833;
|
|
11003
|
+
}
|
|
11004
|
+
@media (max-width: 767.98px) {
|
|
11005
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent {
|
|
11006
|
+
background-color: #fff;
|
|
11007
|
+
}
|
|
11008
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-collapse {
|
|
11009
|
+
background-color: #fff;
|
|
11010
|
+
border-color: #e7e7ed;
|
|
11011
|
+
border-radius: 4px;
|
|
11012
|
+
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
11013
|
+
}
|
|
11014
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
11015
|
+
color: #272833;
|
|
11016
|
+
font-size: 14px;
|
|
11017
|
+
font-weight: 600;
|
|
11018
|
+
text-decoration: none;
|
|
11019
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
11020
|
+
}
|
|
11021
|
+
}
|
|
11022
|
+
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
|
|
11023
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
11024
|
+
transition: none;
|
|
11025
|
+
}
|
|
11059
11026
|
}
|
|
11060
11027
|
@media (max-width: 767.98px) {
|
|
11061
11028
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
@@ -11070,13 +11037,12 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
11070
11037
|
background-color: rgba(11, 95, 255, 0.04);
|
|
11071
11038
|
}
|
|
11072
11039
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:active {
|
|
11073
|
-
background-color: #f0f5ff;
|
|
11074
11040
|
color: #272833;
|
|
11075
11041
|
}
|
|
11076
11042
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
11043
|
+
font-weight: 600;
|
|
11077
11044
|
background-color: rgba(11, 95, 255, 0.06);
|
|
11078
11045
|
color: #272833;
|
|
11079
|
-
font-weight: 600;
|
|
11080
11046
|
}
|
|
11081
11047
|
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 {
|
|
11082
11048
|
background-color: transparent;
|
|
@@ -11113,6 +11079,12 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
11113
11079
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg {
|
|
11114
11080
|
max-width: 250px;
|
|
11115
11081
|
}
|
|
11082
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse {
|
|
11083
|
+
display: block;
|
|
11084
|
+
}
|
|
11085
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.collapsing, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.show {
|
|
11086
|
+
display: block;
|
|
11087
|
+
}
|
|
11116
11088
|
@media (max-width: 991.98px) {
|
|
11117
11089
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg {
|
|
11118
11090
|
align-items: center;
|
|
@@ -11122,12 +11094,8 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg {
|
|
|
11122
11094
|
margin-bottom: 24px;
|
|
11123
11095
|
margin-left: -12px;
|
|
11124
11096
|
margin-right: -12px;
|
|
11097
|
+
max-width: none;
|
|
11125
11098
|
}
|
|
11126
|
-
}
|
|
11127
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse {
|
|
11128
|
-
display: block;
|
|
11129
|
-
}
|
|
11130
|
-
@media (max-width: 991.98px) {
|
|
11131
11099
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse {
|
|
11132
11100
|
border-color: transparent;
|
|
11133
11101
|
border-style: solid;
|
|
@@ -11139,11 +11107,6 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse {
|
|
|
11139
11107
|
top: 100%;
|
|
11140
11108
|
z-index: 499;
|
|
11141
11109
|
}
|
|
11142
|
-
}
|
|
11143
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.collapsing, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.show {
|
|
11144
|
-
display: block;
|
|
11145
|
-
}
|
|
11146
|
-
@media (max-width: 991.98px) {
|
|
11147
11110
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-toggler {
|
|
11148
11111
|
align-items: center;
|
|
11149
11112
|
border-color: transparent;
|
|
@@ -11156,71 +11119,40 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.co
|
|
|
11156
11119
|
}
|
|
11157
11120
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-toggler .c-inner {
|
|
11158
11121
|
max-width: none;
|
|
11159
|
-
margin-left: -8px;
|
|
11160
|
-
margin-right: -8px;
|
|
11161
11122
|
}
|
|
11162
11123
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-toggler .lexicon-icon {
|
|
11163
11124
|
margin-top: 0;
|
|
11164
11125
|
}
|
|
11165
|
-
}
|
|
11166
|
-
@media (max-width: 991.98px) {
|
|
11167
11126
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-nested {
|
|
11168
11127
|
margin-bottom: 8px;
|
|
11169
11128
|
margin-top: 8px;
|
|
11170
11129
|
}
|
|
11171
|
-
}
|
|
11172
|
-
@media (max-width: 991.98px) {
|
|
11173
11130
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-nested-margins > li .nav > li {
|
|
11174
11131
|
margin-left: 0;
|
|
11175
11132
|
}
|
|
11176
|
-
|
|
11177
|
-
|
|
11178
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent {
|
|
11179
|
-
background-color: #fff;
|
|
11133
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link {
|
|
11134
|
+
color: #6b6c7e;
|
|
11180
11135
|
}
|
|
11181
|
-
|
|
11182
|
-
|
|
11183
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-collapse {
|
|
11184
|
-
background-color: #fff;
|
|
11185
|
-
border-color: #e7e7ed;
|
|
11186
|
-
border-radius: 4px;
|
|
11187
|
-
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
11136
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link:hover, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link.hover {
|
|
11137
|
+
color: #6b6c7e;
|
|
11188
11138
|
}
|
|
11189
|
-
|
|
11190
|
-
@media (max-width: 991.98px) {
|
|
11191
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
11139
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link:active {
|
|
11192
11140
|
color: #272833;
|
|
11193
|
-
font-size: 14px;
|
|
11194
|
-
font-weight: 600;
|
|
11195
|
-
text-decoration: none;
|
|
11196
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
11197
|
-
}
|
|
11198
|
-
}
|
|
11199
|
-
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
|
|
11200
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
11201
|
-
transition: none;
|
|
11202
11141
|
}
|
|
11203
|
-
|
|
11204
|
-
|
|
11205
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:focus, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler.focus {
|
|
11206
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
11207
|
-
outline: 0;
|
|
11142
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link.active {
|
|
11143
|
+
color: #272833;
|
|
11208
11144
|
}
|
|
11209
|
-
|
|
11210
|
-
|
|
11211
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:active:focus {
|
|
11212
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
11145
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link.disabled {
|
|
11146
|
+
color: #a7a9bc;
|
|
11213
11147
|
}
|
|
11214
|
-
|
|
11215
|
-
|
|
11216
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler.disabled {
|
|
11217
|
-
box-shadow: none;
|
|
11148
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .nav-link.show {
|
|
11149
|
+
color: #272833;
|
|
11218
11150
|
}
|
|
11219
11151
|
}
|
|
11220
11152
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
11221
11153
|
border-radius: 6px;
|
|
11222
|
-
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;
|
|
11223
11154
|
color: #6b6c7e;
|
|
11155
|
+
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;
|
|
11224
11156
|
}
|
|
11225
11157
|
@media (prefers-reduced-motion: reduce) {
|
|
11226
11158
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
@@ -11241,17 +11173,40 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
11241
11173
|
color: rgba(0, 0, 0, 0.9);
|
|
11242
11174
|
}
|
|
11243
11175
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
11176
|
+
font-weight: 600;
|
|
11244
11177
|
background-color: rgba(11, 95, 255, 0.06);
|
|
11245
11178
|
color: #272833;
|
|
11246
|
-
font-weight: 600;
|
|
11247
11179
|
}
|
|
11248
11180
|
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 {
|
|
11249
|
-
box-shadow: none;
|
|
11250
11181
|
color: rgba(0, 0, 0, 0.3);
|
|
11182
|
+
box-shadow: none;
|
|
11251
11183
|
}
|
|
11252
11184
|
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 {
|
|
11253
|
-
color: #272833;
|
|
11254
11185
|
font-weight: 600;
|
|
11186
|
+
color: #272833;
|
|
11187
|
+
}
|
|
11188
|
+
@media (max-width: 991.98px) {
|
|
11189
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent {
|
|
11190
|
+
background-color: #fff;
|
|
11191
|
+
}
|
|
11192
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-collapse {
|
|
11193
|
+
background-color: #fff;
|
|
11194
|
+
border-color: #e7e7ed;
|
|
11195
|
+
border-radius: 4px;
|
|
11196
|
+
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
11197
|
+
}
|
|
11198
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
11199
|
+
color: #272833;
|
|
11200
|
+
font-size: 14px;
|
|
11201
|
+
font-weight: 600;
|
|
11202
|
+
text-decoration: none;
|
|
11203
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
11204
|
+
}
|
|
11205
|
+
}
|
|
11206
|
+
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
|
|
11207
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
11208
|
+
transition: none;
|
|
11209
|
+
}
|
|
11255
11210
|
}
|
|
11256
11211
|
@media (max-width: 991.98px) {
|
|
11257
11212
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
@@ -11266,13 +11221,12 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
11266
11221
|
background-color: rgba(11, 95, 255, 0.04);
|
|
11267
11222
|
}
|
|
11268
11223
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:active {
|
|
11269
|
-
background-color: #f0f5ff;
|
|
11270
11224
|
color: #272833;
|
|
11271
11225
|
}
|
|
11272
11226
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
11227
|
+
font-weight: 600;
|
|
11273
11228
|
background-color: rgba(11, 95, 255, 0.06);
|
|
11274
11229
|
color: #272833;
|
|
11275
|
-
font-weight: 600;
|
|
11276
11230
|
}
|
|
11277
11231
|
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 {
|
|
11278
11232
|
background-color: transparent;
|
|
@@ -12102,80 +12056,30 @@ html:not(#__):not(#___) .cadmin .navbar-dark .navbar-text a {
|
|
|
12102
12056
|
html:not(#__):not(#___) .cadmin .navbar-dark .navbar-text a:hover, html:not(#__):not(#___) .cadmin .navbar-dark .navbar-text a:focus {
|
|
12103
12057
|
color: #fff;
|
|
12104
12058
|
}
|
|
12105
|
-
html:not(#__):not(#___) .cadmin .navbar-underline .navbar-toggler-link
|
|
12059
|
+
html:not(#__):not(#___) .cadmin .navbar-underline .navbar-toggler-link::after {
|
|
12106
12060
|
background-color: #80acff;
|
|
12107
12061
|
bottom: -8px;
|
|
12108
12062
|
content: "";
|
|
12109
12063
|
display: block;
|
|
12110
|
-
height:
|
|
12064
|
+
height: 0.25rem;
|
|
12111
12065
|
left: 0;
|
|
12112
12066
|
position: absolute;
|
|
12113
12067
|
right: 0;
|
|
12114
12068
|
width: auto;
|
|
12115
12069
|
}
|
|
12116
|
-
@media (min-width: 576px) {
|
|
12117
|
-
html:not(#__):not(#___) .cadmin .navbar-underline.navbar-expand-sm .navbar-nav .nav-link.active:after {
|
|
12118
|
-
background-color: #80acff;
|
|
12119
|
-
bottom: -8px;
|
|
12120
|
-
content: "";
|
|
12121
|
-
display: block;
|
|
12122
|
-
height: 2px;
|
|
12123
|
-
left: 0;
|
|
12124
|
-
position: absolute;
|
|
12125
|
-
right: 0;
|
|
12126
|
-
width: auto;
|
|
12127
|
-
}
|
|
12128
|
-
}
|
|
12129
12070
|
@media (min-width: 768px) {
|
|
12130
|
-
html:not(#__):not(#___) .cadmin .navbar-underline.navbar-expand-md .navbar-nav .nav-link.active
|
|
12131
|
-
background-color: #80acff;
|
|
12132
|
-
bottom: -8px;
|
|
12133
|
-
content: "";
|
|
12134
|
-
display: block;
|
|
12135
|
-
height: 2px;
|
|
12136
|
-
left: 0;
|
|
12137
|
-
position: absolute;
|
|
12138
|
-
right: 0;
|
|
12139
|
-
width: auto;
|
|
12140
|
-
}
|
|
12141
|
-
}
|
|
12142
|
-
@media (min-width: 992px) {
|
|
12143
|
-
html:not(#__):not(#___) .cadmin .navbar-underline.navbar-expand-lg .navbar-nav .nav-link.active:after {
|
|
12144
|
-
background-color: #80acff;
|
|
12145
|
-
bottom: -8px;
|
|
12146
|
-
content: "";
|
|
12147
|
-
display: block;
|
|
12148
|
-
height: 2px;
|
|
12149
|
-
left: 0;
|
|
12150
|
-
position: absolute;
|
|
12151
|
-
right: 0;
|
|
12152
|
-
width: auto;
|
|
12153
|
-
}
|
|
12154
|
-
}
|
|
12155
|
-
@media (min-width: 1280px) {
|
|
12156
|
-
html:not(#__):not(#___) .cadmin .navbar-underline.navbar-expand-xl .navbar-nav .nav-link.active:after {
|
|
12071
|
+
html:not(#__):not(#___) .cadmin .navbar-underline.navbar-expand-md.navbar-underline .navbar-nav .nav-link.active::after {
|
|
12157
12072
|
background-color: #80acff;
|
|
12158
12073
|
bottom: -8px;
|
|
12159
12074
|
content: "";
|
|
12160
12075
|
display: block;
|
|
12161
|
-
height:
|
|
12076
|
+
height: 0.25rem;
|
|
12162
12077
|
left: 0;
|
|
12163
12078
|
position: absolute;
|
|
12164
12079
|
right: 0;
|
|
12165
12080
|
width: auto;
|
|
12166
12081
|
}
|
|
12167
12082
|
}
|
|
12168
|
-
html:not(#__):not(#___) .cadmin .navbar-underline.navbar-expand .navbar-nav .nav-link.active:after {
|
|
12169
|
-
background-color: #80acff;
|
|
12170
|
-
bottom: -8px;
|
|
12171
|
-
content: "";
|
|
12172
|
-
display: block;
|
|
12173
|
-
height: 2px;
|
|
12174
|
-
left: 0;
|
|
12175
|
-
position: absolute;
|
|
12176
|
-
right: 0;
|
|
12177
|
-
width: auto;
|
|
12178
|
-
}
|
|
12179
12083
|
html:not(#__):not(#___) .cadmin .management-bar {
|
|
12180
12084
|
border-width: 0px 0px 1px 0px;
|
|
12181
12085
|
font-size: 14px;
|
|
@@ -12715,7 +12619,7 @@ html:not(#__):not(#___) .cadmin .navigation-bar .dropdown-menu {
|
|
|
12715
12619
|
margin-top: 0;
|
|
12716
12620
|
}
|
|
12717
12621
|
html:not(#__):not(#___) .cadmin .navigation-bar .navbar-nav .nav-link {
|
|
12718
|
-
border-radius:
|
|
12622
|
+
border-radius: 4px;
|
|
12719
12623
|
border-width: 0;
|
|
12720
12624
|
outline: 0;
|
|
12721
12625
|
font-size: inherit;
|
|
@@ -12727,7 +12631,7 @@ html:not(#__):not(#___) .cadmin .navigation-bar .navbar-nav .nav-link:disabled,
|
|
|
12727
12631
|
box-shadow: none;
|
|
12728
12632
|
}
|
|
12729
12633
|
html:not(#__):not(#___) .cadmin .navigation-bar .navbar-brand {
|
|
12730
|
-
border-radius:
|
|
12634
|
+
border-radius: 4px;
|
|
12731
12635
|
border-width: 0;
|
|
12732
12636
|
outline: 0;
|
|
12733
12637
|
font-size: inherit;
|
|
@@ -12997,14 +12901,14 @@ html:not(#__):not(#___) .cadmin .page-link {
|
|
|
12997
12901
|
}
|
|
12998
12902
|
}
|
|
12999
12903
|
html:not(#__):not(#___) .cadmin .page-link:hover, html:not(#__):not(#___) .cadmin .page-link.hover {
|
|
13000
|
-
background-color: rgba(
|
|
12904
|
+
background-color: rgba(39, 40, 41, 0.04);
|
|
13001
12905
|
border-color: transparent;
|
|
13002
12906
|
color: #272833;
|
|
13003
12907
|
text-decoration: none;
|
|
13004
12908
|
z-index: 2;
|
|
13005
12909
|
}
|
|
13006
12910
|
html:not(#__):not(#___) .cadmin .page-link.focus, html:not(#__):not(#___) .cadmin .page-link:focus {
|
|
13007
|
-
background-color: rgba(
|
|
12911
|
+
background-color: rgba(39, 40, 41, 0.04);
|
|
13008
12912
|
border-color: transparent;
|
|
13009
12913
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
13010
12914
|
color: #272833;
|
|
@@ -13012,16 +12916,16 @@ html:not(#__):not(#___) .cadmin .page-link.focus, html:not(#__):not(#___) .cadmi
|
|
|
13012
12916
|
z-index: 4;
|
|
13013
12917
|
}
|
|
13014
12918
|
html:not(#__):not(#___) .cadmin .page-link:active {
|
|
13015
|
-
background-color:
|
|
12919
|
+
background-color: #6b6c7e;
|
|
13016
12920
|
border-color: transparent;
|
|
13017
|
-
color: #
|
|
12921
|
+
color: #fff;
|
|
13018
12922
|
cursor: default;
|
|
13019
12923
|
z-index: 3;
|
|
13020
12924
|
}
|
|
13021
12925
|
html:not(#__):not(#___) .cadmin .page-link.active {
|
|
13022
|
-
background-color:
|
|
12926
|
+
background-color: #6b6c7e;
|
|
13023
12927
|
border-color: transparent;
|
|
13024
|
-
color: #
|
|
12928
|
+
color: #fff;
|
|
13025
12929
|
z-index: 3;
|
|
13026
12930
|
}
|
|
13027
12931
|
html:not(#__):not(#___) .cadmin .page-link:disabled, html:not(#__):not(#___) .cadmin .page-link.disabled {
|
|
@@ -13035,9 +12939,9 @@ html:not(#__):not(#___) .cadmin .page-link:disabled, html:not(#__):not(#___) .ca
|
|
|
13035
12939
|
z-index: 0;
|
|
13036
12940
|
}
|
|
13037
12941
|
html:not(#__):not(#___) .cadmin .page-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .page-link.show {
|
|
13038
|
-
background-color:
|
|
12942
|
+
background-color: #6b6c7e;
|
|
13039
12943
|
border-color: transparent;
|
|
13040
|
-
color: #
|
|
12944
|
+
color: #fff;
|
|
13041
12945
|
z-index: 3;
|
|
13042
12946
|
}
|
|
13043
12947
|
html:not(#__):not(#___) .cadmin .page-link > .c-inner {
|
|
@@ -13054,9 +12958,9 @@ html:not(#__):not(#___) .cadmin .page-item {
|
|
|
13054
12958
|
margin-right: 4px;
|
|
13055
12959
|
}
|
|
13056
12960
|
html:not(#__):not(#___) .cadmin .page-item.active .page-link {
|
|
13057
|
-
background-color:
|
|
12961
|
+
background-color: #6b6c7e;
|
|
13058
12962
|
border-color: transparent;
|
|
13059
|
-
color: #
|
|
12963
|
+
color: #fff;
|
|
13060
12964
|
cursor: default;
|
|
13061
12965
|
z-index: 3;
|
|
13062
12966
|
}
|
|
@@ -13110,7 +13014,7 @@ html:not(#__):not(#___) .cadmin .pagination-items-per-page > button {
|
|
|
13110
13014
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a:hover, html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.hover,
|
|
13111
13015
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button:hover,
|
|
13112
13016
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.hover {
|
|
13113
|
-
background-color: rgba(
|
|
13017
|
+
background-color: rgba(39, 40, 41, 0.04);
|
|
13114
13018
|
border-color: transparent;
|
|
13115
13019
|
color: #272833;
|
|
13116
13020
|
}
|
|
@@ -13124,15 +13028,15 @@ html:not(#__):not(#___) .cadmin .pagination-items-per-page > button:focus {
|
|
|
13124
13028
|
}
|
|
13125
13029
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a:active,
|
|
13126
13030
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button:active {
|
|
13127
|
-
background-color:
|
|
13031
|
+
background-color: #6b6c7e;
|
|
13128
13032
|
border-color: transparent;
|
|
13129
|
-
color: #
|
|
13033
|
+
color: #fff;
|
|
13130
13034
|
}
|
|
13131
13035
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.active,
|
|
13132
13036
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.active {
|
|
13133
|
-
background-color:
|
|
13037
|
+
background-color: #6b6c7e;
|
|
13134
13038
|
border-color: transparent;
|
|
13135
|
-
color: #
|
|
13039
|
+
color: #fff;
|
|
13136
13040
|
}
|
|
13137
13041
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a:disabled, html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.disabled,
|
|
13138
13042
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button:disabled,
|
|
@@ -13148,9 +13052,9 @@ html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.disabled {
|
|
|
13148
13052
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a[aria-expanded=true], html:not(#__):not(#___) .cadmin .pagination-items-per-page > a.show,
|
|
13149
13053
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button[aria-expanded=true],
|
|
13150
13054
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button.show {
|
|
13151
|
-
background-color:
|
|
13055
|
+
background-color: #6b6c7e;
|
|
13152
13056
|
border-color: transparent;
|
|
13153
|
-
color: #
|
|
13057
|
+
color: #fff;
|
|
13154
13058
|
}
|
|
13155
13059
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > a > .c-inner,
|
|
13156
13060
|
html:not(#__):not(#___) .cadmin .pagination-items-per-page > button > .c-inner {
|
|
@@ -14799,6 +14703,9 @@ html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-show {
|
|
|
14799
14703
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-transition {
|
|
14800
14704
|
display: block;
|
|
14801
14705
|
}
|
|
14706
|
+
html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-transition .c-horizontal-resizer {
|
|
14707
|
+
display: none;
|
|
14708
|
+
}
|
|
14802
14709
|
html:not(#__):not(#___) .cadmin .c-slideout .tbar-stacked {
|
|
14803
14710
|
display: none;
|
|
14804
14711
|
flex-shrink: 0;
|
|
@@ -14871,6 +14778,10 @@ html:not(#__):not(#___) .cadmin .c-slideout-end .tbar-stacked {
|
|
|
14871
14778
|
html:not(#__):not(#___) .cadmin .c-slideout-end .tbar-stacked.c-slideout-show {
|
|
14872
14779
|
right: 0;
|
|
14873
14780
|
}
|
|
14781
|
+
html:not(#__):not(#___) .cadmin .c-slideout-end .c-horizontal-resizer {
|
|
14782
|
+
left: 0;
|
|
14783
|
+
right: auto;
|
|
14784
|
+
}
|
|
14874
14785
|
@media (max-width: 767.98px) {
|
|
14875
14786
|
html:not(#__):not(#___) .cadmin .c-slideout-end.c-slideout-tbar-shown .sidebar {
|
|
14876
14787
|
right: -280px;
|
|
@@ -17130,6 +17041,7 @@ html:not(#__):not(#___) .cadmin .treeview {
|
|
|
17130
17041
|
padding: 2px 0;
|
|
17131
17042
|
}
|
|
17132
17043
|
html:not(#__):not(#___) .cadmin .treeview .btn {
|
|
17044
|
+
color: inherit;
|
|
17133
17045
|
font-size: 12px;
|
|
17134
17046
|
line-height: 1;
|
|
17135
17047
|
padding: 6px 8px;
|