@clayui/css 3.89.0 → 3.90.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 +93 -133
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +69 -83
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +111 -135
- 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/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_menubar.scss +68 -62
- package/src/scss/cadmin/variables/_menubar.scss +204 -189
- package/src/scss/cadmin/variables/_pagination.scss +3 -3
- 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/variables/_menubar.scss +158 -161
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.90.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>
|
|
@@ -12861,37 +12861,28 @@ label.custom-control-label {
|
|
|
12861
12861
|
.menubar-vertical-expand-md {
|
|
12862
12862
|
max-width: 15.625rem;
|
|
12863
12863
|
}
|
|
12864
|
+
.menubar-vertical-expand-md .menubar-collapse {
|
|
12865
|
+
display: block;
|
|
12866
|
+
}
|
|
12867
|
+
.menubar-vertical-expand-md .menubar-collapse.collapsing, .menubar-vertical-expand-md .menubar-collapse.show {
|
|
12868
|
+
display: block;
|
|
12869
|
+
}
|
|
12864
12870
|
@media (max-width: 767.98px) {
|
|
12865
12871
|
.menubar-vertical-expand-md {
|
|
12866
|
-
align-items: center;
|
|
12867
|
-
display: flex;
|
|
12868
|
-
flex-wrap: wrap;
|
|
12869
|
-
justify-content: space-between;
|
|
12870
12872
|
margin-bottom: 1.5rem;
|
|
12871
12873
|
margin-left: -12px;
|
|
12872
12874
|
margin-right: -12px;
|
|
12875
|
+
max-width: none;
|
|
12873
12876
|
}
|
|
12874
|
-
}
|
|
12875
|
-
.menubar-vertical-expand-md .menubar-collapse {
|
|
12876
|
-
display: block;
|
|
12877
|
-
}
|
|
12878
|
-
@media (max-width: 767.98px) {
|
|
12879
12877
|
.menubar-vertical-expand-md .menubar-collapse {
|
|
12880
12878
|
border-color: transparent;
|
|
12881
12879
|
border-style: solid;
|
|
12882
12880
|
border-width: 0.0625rem;
|
|
12883
12881
|
display: none;
|
|
12884
|
-
|
|
12885
|
-
position: absolute;
|
|
12886
|
-
right: -0.0625rem;
|
|
12882
|
+
position: relative;
|
|
12887
12883
|
top: 100%;
|
|
12888
12884
|
z-index: 499;
|
|
12889
12885
|
}
|
|
12890
|
-
}
|
|
12891
|
-
.menubar-vertical-expand-md .menubar-collapse.collapsing, .menubar-vertical-expand-md .menubar-collapse.show {
|
|
12892
|
-
display: block;
|
|
12893
|
-
}
|
|
12894
|
-
@media (max-width: 767.98px) {
|
|
12895
12886
|
.menubar-vertical-expand-md .menubar-toggler {
|
|
12896
12887
|
align-items: center;
|
|
12897
12888
|
border-color: transparent;
|
|
@@ -12904,70 +12895,39 @@ label.custom-control-label {
|
|
|
12904
12895
|
}
|
|
12905
12896
|
.menubar-vertical-expand-md .menubar-toggler .c-inner {
|
|
12906
12897
|
max-width: none;
|
|
12907
|
-
margin-left: -0.5rem;
|
|
12908
|
-
margin-right: -0.5rem;
|
|
12909
12898
|
}
|
|
12910
12899
|
.menubar-vertical-expand-md .menubar-toggler .lexicon-icon {
|
|
12911
12900
|
margin-top: 0;
|
|
12912
12901
|
}
|
|
12913
|
-
}
|
|
12914
|
-
@media (max-width: 767.98px) {
|
|
12915
12902
|
.menubar-vertical-expand-md .nav-nested {
|
|
12916
12903
|
margin-bottom: 0.5rem;
|
|
12917
12904
|
margin-top: 0.5rem;
|
|
12918
12905
|
}
|
|
12919
|
-
}
|
|
12920
|
-
@media (max-width: 767.98px) {
|
|
12921
12906
|
.menubar-vertical-expand-md .nav-nested-margins > li .nav > li {
|
|
12922
12907
|
margin-left: 0;
|
|
12923
12908
|
}
|
|
12924
|
-
|
|
12925
|
-
|
|
12926
|
-
.menubar-vertical-expand-md.menubar-transparent {
|
|
12927
|
-
background-color: #fff;
|
|
12909
|
+
.menubar-vertical-expand-md .nav-link {
|
|
12910
|
+
color: #6b6c7e;
|
|
12928
12911
|
}
|
|
12929
|
-
|
|
12930
|
-
|
|
12931
|
-
.menubar-vertical-expand-md.menubar-transparent .menubar-collapse {
|
|
12932
|
-
background-color: #fff;
|
|
12933
|
-
border-color: #e7e7ed;
|
|
12934
|
-
border-radius: 0.25rem;
|
|
12935
|
-
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
12912
|
+
.menubar-vertical-expand-md .nav-link:hover, .menubar-vertical-expand-md .nav-link.hover {
|
|
12913
|
+
color: #6b6c7e;
|
|
12936
12914
|
}
|
|
12937
|
-
|
|
12938
|
-
@media (max-width: 767.98px) {
|
|
12939
|
-
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
12940
|
-
text-decoration: none;
|
|
12915
|
+
.menubar-vertical-expand-md .nav-link:active {
|
|
12941
12916
|
color: #272833;
|
|
12942
|
-
font-size: 0.875rem;
|
|
12943
|
-
font-weight: 600;
|
|
12944
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
12945
12917
|
}
|
|
12946
|
-
|
|
12947
|
-
|
|
12948
|
-
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
12949
|
-
transition: none;
|
|
12950
|
-
}
|
|
12951
|
-
}
|
|
12952
|
-
@media (max-width: 767.98px) {
|
|
12953
|
-
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler:focus, .menubar-vertical-expand-md.menubar-transparent .menubar-toggler.focus {
|
|
12954
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12955
|
-
outline: 0;
|
|
12918
|
+
.menubar-vertical-expand-md .nav-link.active {
|
|
12919
|
+
color: #272833;
|
|
12956
12920
|
}
|
|
12957
|
-
|
|
12958
|
-
|
|
12959
|
-
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler:active:focus {
|
|
12960
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
12921
|
+
.menubar-vertical-expand-md .nav-link:disabled, .menubar-vertical-expand-md .nav-link.disabled {
|
|
12922
|
+
color: #a7a9bc;
|
|
12961
12923
|
}
|
|
12962
|
-
|
|
12963
|
-
|
|
12964
|
-
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler:disabled, .menubar-vertical-expand-md.menubar-transparent .menubar-toggler.disabled {
|
|
12965
|
-
box-shadow: none;
|
|
12924
|
+
.menubar-vertical-expand-md .nav-link[aria-expanded=true], .menubar-vertical-expand-md .nav-link.show {
|
|
12925
|
+
color: #272833;
|
|
12966
12926
|
}
|
|
12967
12927
|
}
|
|
12968
12928
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
12969
|
-
color: #6b6c7e;
|
|
12970
12929
|
border-radius: 0.375rem;
|
|
12930
|
+
color: #6b6c7e;
|
|
12971
12931
|
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;
|
|
12972
12932
|
}
|
|
12973
12933
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -12976,8 +12936,8 @@ label.custom-control-label {
|
|
|
12976
12936
|
}
|
|
12977
12937
|
}
|
|
12978
12938
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
|
|
12979
|
-
color: #272833;
|
|
12980
12939
|
background-color: rgba(11, 95, 255, 0.04);
|
|
12940
|
+
color: #272833;
|
|
12981
12941
|
}
|
|
12982
12942
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
12983
12943
|
background-color: rgba(11, 95, 255, 0.04);
|
|
@@ -12989,17 +12949,40 @@ label.custom-control-label {
|
|
|
12989
12949
|
color: rgba(0, 0, 0, 0.9);
|
|
12990
12950
|
}
|
|
12991
12951
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
12952
|
+
font-weight: 600;
|
|
12992
12953
|
background-color: rgba(11, 95, 255, 0.06);
|
|
12993
12954
|
color: #272833;
|
|
12994
|
-
font-weight: 600;
|
|
12995
12955
|
}
|
|
12996
12956
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled {
|
|
12997
12957
|
color: rgba(0, 0, 0, 0.3);
|
|
12998
12958
|
box-shadow: none;
|
|
12999
12959
|
}
|
|
13000
12960
|
.menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true], .menubar-vertical-expand-md.menubar-transparent .nav-link.show {
|
|
13001
|
-
color: #272833;
|
|
13002
12961
|
font-weight: 600;
|
|
12962
|
+
color: #272833;
|
|
12963
|
+
}
|
|
12964
|
+
@media (max-width: 767.98px) {
|
|
12965
|
+
.menubar-vertical-expand-md.menubar-transparent {
|
|
12966
|
+
background-color: #fff;
|
|
12967
|
+
}
|
|
12968
|
+
.menubar-vertical-expand-md.menubar-transparent .menubar-collapse {
|
|
12969
|
+
background-color: #fff;
|
|
12970
|
+
border-color: #e7e7ed;
|
|
12971
|
+
border-radius: 0.25rem;
|
|
12972
|
+
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
12973
|
+
}
|
|
12974
|
+
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
12975
|
+
text-decoration: none;
|
|
12976
|
+
color: #272833;
|
|
12977
|
+
font-size: 0.875rem;
|
|
12978
|
+
font-weight: 600;
|
|
12979
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
12980
|
+
}
|
|
12981
|
+
}
|
|
12982
|
+
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
|
|
12983
|
+
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
12984
|
+
transition: none;
|
|
12985
|
+
}
|
|
13003
12986
|
}
|
|
13004
12987
|
@media (max-width: 767.98px) {
|
|
13005
12988
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
@@ -13053,37 +13036,28 @@ label.custom-control-label {
|
|
|
13053
13036
|
.menubar-vertical-expand-lg {
|
|
13054
13037
|
max-width: 15.625rem;
|
|
13055
13038
|
}
|
|
13039
|
+
.menubar-vertical-expand-lg .menubar-collapse {
|
|
13040
|
+
display: block;
|
|
13041
|
+
}
|
|
13042
|
+
.menubar-vertical-expand-lg .menubar-collapse.collapsing, .menubar-vertical-expand-lg .menubar-collapse.show {
|
|
13043
|
+
display: block;
|
|
13044
|
+
}
|
|
13056
13045
|
@media (max-width: 991.98px) {
|
|
13057
13046
|
.menubar-vertical-expand-lg {
|
|
13058
|
-
align-items: center;
|
|
13059
|
-
display: flex;
|
|
13060
|
-
flex-wrap: wrap;
|
|
13061
|
-
justify-content: space-between;
|
|
13062
13047
|
margin-bottom: 1.5rem;
|
|
13063
13048
|
margin-left: -12px;
|
|
13064
13049
|
margin-right: -12px;
|
|
13050
|
+
max-width: none;
|
|
13065
13051
|
}
|
|
13066
|
-
}
|
|
13067
|
-
.menubar-vertical-expand-lg .menubar-collapse {
|
|
13068
|
-
display: block;
|
|
13069
|
-
}
|
|
13070
|
-
@media (max-width: 991.98px) {
|
|
13071
13052
|
.menubar-vertical-expand-lg .menubar-collapse {
|
|
13072
13053
|
border-color: transparent;
|
|
13073
13054
|
border-style: solid;
|
|
13074
13055
|
border-width: 0.0625rem;
|
|
13075
13056
|
display: none;
|
|
13076
|
-
|
|
13077
|
-
position: absolute;
|
|
13078
|
-
right: -0.0625rem;
|
|
13057
|
+
position: relative;
|
|
13079
13058
|
top: 100%;
|
|
13080
13059
|
z-index: 499;
|
|
13081
13060
|
}
|
|
13082
|
-
}
|
|
13083
|
-
.menubar-vertical-expand-lg .menubar-collapse.collapsing, .menubar-vertical-expand-lg .menubar-collapse.show {
|
|
13084
|
-
display: block;
|
|
13085
|
-
}
|
|
13086
|
-
@media (max-width: 991.98px) {
|
|
13087
13061
|
.menubar-vertical-expand-lg .menubar-toggler {
|
|
13088
13062
|
align-items: center;
|
|
13089
13063
|
border-color: transparent;
|
|
@@ -13096,76 +13070,39 @@ label.custom-control-label {
|
|
|
13096
13070
|
}
|
|
13097
13071
|
.menubar-vertical-expand-lg .menubar-toggler .c-inner {
|
|
13098
13072
|
max-width: none;
|
|
13099
|
-
margin-left: -0.5rem;
|
|
13100
|
-
margin-right: -0.5rem;
|
|
13101
13073
|
}
|
|
13102
13074
|
.menubar-vertical-expand-lg .menubar-toggler .lexicon-icon {
|
|
13103
13075
|
margin-top: 0;
|
|
13104
13076
|
}
|
|
13105
|
-
}
|
|
13106
|
-
@media (max-width: 991.98px) {
|
|
13107
13077
|
.menubar-vertical-expand-lg .nav-nested {
|
|
13108
13078
|
margin-bottom: 0.5rem;
|
|
13109
13079
|
margin-top: 0.5rem;
|
|
13110
13080
|
}
|
|
13111
|
-
}
|
|
13112
|
-
@media (max-width: 991.98px) {
|
|
13113
|
-
.menubar-vertical-expand-lg .nav-nested-margins {
|
|
13114
|
-
margin-bottom: 0.5rem;
|
|
13115
|
-
margin-top: 0.5rem;
|
|
13116
|
-
}
|
|
13117
|
-
}
|
|
13118
|
-
@media (max-width: 991.98px) {
|
|
13119
13081
|
.menubar-vertical-expand-lg .nav-nested-margins > li .nav > li {
|
|
13120
13082
|
margin-left: 0;
|
|
13121
13083
|
}
|
|
13122
|
-
|
|
13123
|
-
|
|
13124
|
-
.menubar-vertical-expand-lg.menubar-transparent {
|
|
13125
|
-
background-color: #fff;
|
|
13084
|
+
.menubar-vertical-expand-lg .nav-link {
|
|
13085
|
+
color: #6b6c7e;
|
|
13126
13086
|
}
|
|
13127
|
-
|
|
13128
|
-
|
|
13129
|
-
.menubar-vertical-expand-lg.menubar-transparent .menubar-collapse {
|
|
13130
|
-
background-color: #fff;
|
|
13131
|
-
border-color: #e7e7ed;
|
|
13132
|
-
border-radius: 0.25rem;
|
|
13133
|
-
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
13087
|
+
.menubar-vertical-expand-lg .nav-link:hover, .menubar-vertical-expand-lg .nav-link.hover {
|
|
13088
|
+
color: #6b6c7e;
|
|
13134
13089
|
}
|
|
13135
|
-
|
|
13136
|
-
@media (max-width: 991.98px) {
|
|
13137
|
-
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
13138
|
-
text-decoration: none;
|
|
13090
|
+
.menubar-vertical-expand-lg .nav-link:active {
|
|
13139
13091
|
color: #272833;
|
|
13140
|
-
font-size: 0.875rem;
|
|
13141
|
-
font-weight: 600;
|
|
13142
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
13143
|
-
}
|
|
13144
|
-
}
|
|
13145
|
-
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
|
|
13146
|
-
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
13147
|
-
transition: none;
|
|
13148
13092
|
}
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:focus, .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler.focus {
|
|
13152
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
13153
|
-
outline: 0;
|
|
13093
|
+
.menubar-vertical-expand-lg .nav-link.active {
|
|
13094
|
+
color: #272833;
|
|
13154
13095
|
}
|
|
13155
|
-
|
|
13156
|
-
|
|
13157
|
-
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:active:focus {
|
|
13158
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
13096
|
+
.menubar-vertical-expand-lg .nav-link:disabled, .menubar-vertical-expand-lg .nav-link.disabled {
|
|
13097
|
+
color: #a7a9bc;
|
|
13159
13098
|
}
|
|
13160
|
-
|
|
13161
|
-
|
|
13162
|
-
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:disabled, .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler.disabled {
|
|
13163
|
-
box-shadow: none;
|
|
13099
|
+
.menubar-vertical-expand-lg .nav-link[aria-expanded=true], .menubar-vertical-expand-lg .nav-link.show {
|
|
13100
|
+
color: #272833;
|
|
13164
13101
|
}
|
|
13165
13102
|
}
|
|
13166
13103
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
13167
|
-
color: #6b6c7e;
|
|
13168
13104
|
border-radius: 0.375rem;
|
|
13105
|
+
color: #6b6c7e;
|
|
13169
13106
|
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;
|
|
13170
13107
|
}
|
|
13171
13108
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -13174,8 +13111,8 @@ label.custom-control-label {
|
|
|
13174
13111
|
}
|
|
13175
13112
|
}
|
|
13176
13113
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
|
|
13177
|
-
color: #272833;
|
|
13178
13114
|
background-color: rgba(11, 95, 255, 0.04);
|
|
13115
|
+
color: #272833;
|
|
13179
13116
|
}
|
|
13180
13117
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13181
13118
|
background-color: rgba(11, 95, 255, 0.04);
|
|
@@ -13187,17 +13124,40 @@ label.custom-control-label {
|
|
|
13187
13124
|
color: rgba(0, 0, 0, 0.9);
|
|
13188
13125
|
}
|
|
13189
13126
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
13127
|
+
font-weight: 600;
|
|
13190
13128
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13191
13129
|
color: #272833;
|
|
13192
|
-
font-weight: 600;
|
|
13193
13130
|
}
|
|
13194
13131
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled {
|
|
13195
13132
|
color: rgba(0, 0, 0, 0.3);
|
|
13196
13133
|
box-shadow: none;
|
|
13197
13134
|
}
|
|
13198
13135
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true], .menubar-vertical-expand-lg.menubar-transparent .nav-link.show {
|
|
13199
|
-
color: #272833;
|
|
13200
13136
|
font-weight: 600;
|
|
13137
|
+
color: #272833;
|
|
13138
|
+
}
|
|
13139
|
+
@media (max-width: 991.98px) {
|
|
13140
|
+
.menubar-vertical-expand-lg.menubar-transparent {
|
|
13141
|
+
background-color: #fff;
|
|
13142
|
+
}
|
|
13143
|
+
.menubar-vertical-expand-lg.menubar-transparent .menubar-collapse {
|
|
13144
|
+
background-color: #fff;
|
|
13145
|
+
border-color: #e7e7ed;
|
|
13146
|
+
border-radius: 0.25rem;
|
|
13147
|
+
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
13148
|
+
}
|
|
13149
|
+
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
13150
|
+
text-decoration: none;
|
|
13151
|
+
color: #272833;
|
|
13152
|
+
font-size: 0.875rem;
|
|
13153
|
+
font-weight: 600;
|
|
13154
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
13155
|
+
}
|
|
13156
|
+
}
|
|
13157
|
+
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
|
|
13158
|
+
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
13159
|
+
transition: none;
|
|
13160
|
+
}
|
|
13201
13161
|
}
|
|
13202
13162
|
@media (max-width: 991.98px) {
|
|
13203
13163
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|