@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
|
@@ -46,11 +46,16 @@
|
|
|
46
46
|
@mixin clay-menubar-vertical-expand($map) {
|
|
47
47
|
@if (type-of($map) == 'map') {
|
|
48
48
|
$enabled: setter(map-get($map, enabled), true);
|
|
49
|
-
$breakpoint-up:
|
|
50
|
-
$breakpoint-down: setter(
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
49
|
+
$breakpoint-up: map-get($map, breakpoint-up);
|
|
50
|
+
$breakpoint-down: setter(map-get($map, breakpoint-down), c-unset);
|
|
51
|
+
|
|
52
|
+
@if ($breakpoint-up) and ($breakpoint-up != c-unset) {
|
|
53
|
+
@warn "`breakpoint-up` is deprecated in the mixin `clay-menubar-vertical-expand`, use the key `media-breakpoint-down: (sm: ())` instead.";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@if ($breakpoint-down) and ($breakpoint-down != c-unset) {
|
|
57
|
+
@warn "`breakpoint-down` is deprecated in the mixin `clay-menubar-vertical-expand`, use the key `media-breakpoint-down: (sm: ())` instead.";
|
|
58
|
+
}
|
|
54
59
|
|
|
55
60
|
// .menubar-vertical-expand-{md}
|
|
56
61
|
|
|
@@ -312,7 +317,13 @@
|
|
|
312
317
|
}
|
|
313
318
|
|
|
314
319
|
.menubar-collapse {
|
|
315
|
-
|
|
320
|
+
$_menubar-collapse: setter(map-get($map, collapse), ());
|
|
321
|
+
$_menubar-collapse: map-deep-merge(
|
|
322
|
+
setter(map-get($map, menubar-collapse), ()),
|
|
323
|
+
$_menubar-collapse
|
|
324
|
+
);
|
|
325
|
+
|
|
326
|
+
@include clay-css($_menubar-collapse);
|
|
316
327
|
|
|
317
328
|
@include media-breakpoint-down($breakpoint-down) {
|
|
318
329
|
@include clay-css($collapse-mobile);
|
|
@@ -367,6 +378,46 @@
|
|
|
367
378
|
}
|
|
368
379
|
}
|
|
369
380
|
}
|
|
381
|
+
|
|
382
|
+
@if (map-get($map, media-breakpoint-down)) {
|
|
383
|
+
@each $breakpoint
|
|
384
|
+
in map-keys(map-get($map, media-breakpoint-down))
|
|
385
|
+
{
|
|
386
|
+
$media-breakpoint-down: map-deep-get(
|
|
387
|
+
$map,
|
|
388
|
+
media-breakpoint-down,
|
|
389
|
+
$breakpoint
|
|
390
|
+
);
|
|
391
|
+
|
|
392
|
+
@if ($breakpoint) {
|
|
393
|
+
@include media-breakpoint-down($breakpoint) {
|
|
394
|
+
@include clay-menubar-vertical-variant(
|
|
395
|
+
$media-breakpoint-down
|
|
396
|
+
);
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
@if (map-get($map, media-breakpoint-up)) {
|
|
403
|
+
@each $breakpoint
|
|
404
|
+
in map-keys(map-get($map, media-breakpoint-up))
|
|
405
|
+
{
|
|
406
|
+
$media-breakpoint-up: map-deep-get(
|
|
407
|
+
$map,
|
|
408
|
+
media-breakpoint-up,
|
|
409
|
+
$breakpoint
|
|
410
|
+
);
|
|
411
|
+
|
|
412
|
+
@if ($breakpoint) {
|
|
413
|
+
@include media-breakpoint-up($breakpoint) {
|
|
414
|
+
@include clay-menubar-vertical-variant(
|
|
415
|
+
$media-breakpoint-up
|
|
416
|
+
);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
370
421
|
} @else {
|
|
371
422
|
.menubar-collapse {
|
|
372
423
|
display: block;
|
|
@@ -462,8 +513,16 @@
|
|
|
462
513
|
|
|
463
514
|
@mixin clay-menubar-vertical-variant($map) {
|
|
464
515
|
$enable: setter(map-get($map, enable), true);
|
|
465
|
-
$breakpoint-up:
|
|
466
|
-
$breakpoint-down:
|
|
516
|
+
$breakpoint-up: map-get($map, breakpoint-up);
|
|
517
|
+
$breakpoint-down: setter(map-get($map, breakpoint-down), c-unset);
|
|
518
|
+
|
|
519
|
+
@if ($breakpoint-up) and ($breakpoint-up != c-unset) {
|
|
520
|
+
@warn "`breakpoint-up` is deprecated in the mixin `clay-menubar-vertical-variant`, use the key `media-breakpoint-down: (sm: ())` instead.";
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
@if ($breakpoint-down) and ($breakpoint-down != c-unset) {
|
|
524
|
+
@warn "`breakpoint-down` is deprecated in the mixin `clay-menubar-vertical-variant`, use the key `media-breakpoint-down: (sm: ())` instead.";
|
|
525
|
+
}
|
|
467
526
|
|
|
468
527
|
// .menubar-vertical-expand-{md}.menubar-{variant}
|
|
469
528
|
|
|
@@ -855,7 +914,13 @@
|
|
|
855
914
|
}
|
|
856
915
|
|
|
857
916
|
.menubar-collapse {
|
|
858
|
-
|
|
917
|
+
$_menubar-collapse: setter(map-get($map, collapse), ());
|
|
918
|
+
$_menubar-collapse: map-merge(
|
|
919
|
+
setter(map-get($map, menubar-collapse), ()),
|
|
920
|
+
$_menubar-collapse
|
|
921
|
+
);
|
|
922
|
+
|
|
923
|
+
@include clay-css($_menubar-collapse);
|
|
859
924
|
|
|
860
925
|
@include media-breakpoint-down($breakpoint-down) {
|
|
861
926
|
@include clay-css($collapse-mobile);
|
|
@@ -863,11 +928,27 @@
|
|
|
863
928
|
}
|
|
864
929
|
|
|
865
930
|
.menubar-toggler {
|
|
931
|
+
$_menubar-toggler: setter(map-get($map, menubar-toggler), ());
|
|
932
|
+
|
|
933
|
+
@include clay-css($_menubar-toggler);
|
|
934
|
+
|
|
935
|
+
.c-inner {
|
|
936
|
+
@include clay-css(map-get($_menubar-toggler, c-inner));
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.lexicon-icon {
|
|
940
|
+
@include clay-css(map-get($_menubar-toggler, lexicon-icon));
|
|
941
|
+
}
|
|
942
|
+
|
|
866
943
|
@include media-breakpoint-down($breakpoint-down) {
|
|
867
944
|
@include clay-button-variant($toggler-mobile);
|
|
868
945
|
}
|
|
869
946
|
}
|
|
870
947
|
|
|
948
|
+
.nav-nested {
|
|
949
|
+
@include clay-css(map-get($map, nav-nested));
|
|
950
|
+
}
|
|
951
|
+
|
|
871
952
|
.nav-nested-margins {
|
|
872
953
|
> li .nav > li {
|
|
873
954
|
@include clay-css(map-get($map, nav-nested-margins-item));
|
|
@@ -881,11 +962,51 @@
|
|
|
881
962
|
}
|
|
882
963
|
|
|
883
964
|
.nav-link {
|
|
884
|
-
|
|
965
|
+
$_nav-link: setter(map-get($map, nav-link), ());
|
|
966
|
+
$_nav-link: map-deep-merge($link, $_nav-link);
|
|
967
|
+
|
|
968
|
+
@include clay-link($_nav-link);
|
|
885
969
|
|
|
886
970
|
@include media-breakpoint-down($breakpoint-down) {
|
|
887
971
|
@include clay-link($link-mobile);
|
|
888
972
|
}
|
|
889
973
|
}
|
|
974
|
+
|
|
975
|
+
@if (map-get($map, media-breakpoint-down)) {
|
|
976
|
+
@each $breakpoint in map-keys(map-get($map, media-breakpoint-down))
|
|
977
|
+
{
|
|
978
|
+
$media-breakpoint-down: map-deep-get(
|
|
979
|
+
$map,
|
|
980
|
+
media-breakpoint-down,
|
|
981
|
+
$breakpoint
|
|
982
|
+
);
|
|
983
|
+
|
|
984
|
+
@if ($breakpoint) {
|
|
985
|
+
@include media-breakpoint-down($breakpoint) {
|
|
986
|
+
@include clay-menubar-vertical-variant(
|
|
987
|
+
$media-breakpoint-down
|
|
988
|
+
);
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
}
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
@if (map-get($map, media-breakpoint-up)) {
|
|
995
|
+
@each $breakpoint in map-keys(map-get($map, media-breakpoint-up)) {
|
|
996
|
+
$media-breakpoint-up: map-deep-get(
|
|
997
|
+
$map,
|
|
998
|
+
media-breakpoint-up,
|
|
999
|
+
$breakpoint
|
|
1000
|
+
);
|
|
1001
|
+
|
|
1002
|
+
@if ($breakpoint) {
|
|
1003
|
+
@include media-breakpoint-up($breakpoint) {
|
|
1004
|
+
@include clay-menubar-vertical-variant(
|
|
1005
|
+
$media-breakpoint-up
|
|
1006
|
+
);
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
}
|
|
890
1011
|
}
|
|
891
1012
|
}
|
|
@@ -4,54 +4,51 @@ $menubar-vertical-expand-md: () !default;
|
|
|
4
4
|
$menubar-vertical-expand-md: map-deep-merge(
|
|
5
5
|
(
|
|
6
6
|
max-width: 15.625rem,
|
|
7
|
-
|
|
8
|
-
align-items: center,
|
|
9
|
-
display: flex,
|
|
10
|
-
flex-wrap: wrap,
|
|
11
|
-
justify-content: space-between,
|
|
12
|
-
margin-bottom: 1.5rem,
|
|
13
|
-
margin-left: math-sign($grid-gutter-width * 0.5),
|
|
14
|
-
margin-right: math-sign($grid-gutter-width * 0.5),
|
|
15
|
-
),
|
|
16
|
-
collapse: (
|
|
7
|
+
menubar-collapse: (
|
|
17
8
|
display: block,
|
|
18
9
|
),
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
left: -0.0625rem,
|
|
25
|
-
position: absolute,
|
|
26
|
-
right: -0.0625rem,
|
|
27
|
-
top: 100%,
|
|
28
|
-
z-index: $zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
29
|
-
),
|
|
30
|
-
collapse-nav-mobile: (
|
|
31
|
-
margin-bottom: 0.5rem,
|
|
32
|
-
margin-top: 0.5rem,
|
|
33
|
-
),
|
|
34
|
-
nav-nested-mobile: (
|
|
35
|
-
margin-bottom: 0.5rem,
|
|
36
|
-
margin-top: 0.5rem,
|
|
37
|
-
),
|
|
38
|
-
nav-nested-margins-item-mobile: (
|
|
39
|
-
margin-left: 0,
|
|
40
|
-
),
|
|
41
|
-
toggler-mobile: (
|
|
42
|
-
align-items: center,
|
|
43
|
-
border-color: transparent,
|
|
44
|
-
border-style: solid,
|
|
45
|
-
border-width: 0.0625rem,
|
|
46
|
-
display: flex,
|
|
47
|
-
height: 2rem,
|
|
48
|
-
padding-left: 0.5rem,
|
|
49
|
-
padding-right: 0.5rem,
|
|
50
|
-
c-inner: (
|
|
10
|
+
media-breakpoint-down: (
|
|
11
|
+
sm: (
|
|
12
|
+
margin-bottom: 1.5rem,
|
|
13
|
+
margin-left: math-sign($grid-gutter-width * 0.5),
|
|
14
|
+
margin-right: math-sign($grid-gutter-width * 0.5),
|
|
51
15
|
max-width: none,
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
16
|
+
menubar-collapse: (
|
|
17
|
+
border-color: transparent,
|
|
18
|
+
border-style: solid,
|
|
19
|
+
border-width: 0.0625rem,
|
|
20
|
+
display: none,
|
|
21
|
+
position: relative,
|
|
22
|
+
top: 100%,
|
|
23
|
+
z-index: $zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
24
|
+
),
|
|
25
|
+
nav-nested: (
|
|
26
|
+
margin-bottom: 0.5rem,
|
|
27
|
+
margin-top: 0.5rem,
|
|
28
|
+
),
|
|
29
|
+
nav-nested-margins: (
|
|
30
|
+
margin-bottom: 0.5rem,
|
|
31
|
+
margin-top: 0.5rem,
|
|
32
|
+
),
|
|
33
|
+
nav-nested-margins-item: (
|
|
34
|
+
margin-left: 0,
|
|
35
|
+
),
|
|
36
|
+
menubar-toggler: (
|
|
37
|
+
align-items: center,
|
|
38
|
+
border-color: transparent,
|
|
39
|
+
border-style: solid,
|
|
40
|
+
border-width: 0.0625rem,
|
|
41
|
+
display: flex,
|
|
42
|
+
height: 2rem,
|
|
43
|
+
padding-left: 0.5rem,
|
|
44
|
+
padding-right: 0.5rem,
|
|
45
|
+
c-inner: (
|
|
46
|
+
max-width: none,
|
|
47
|
+
),
|
|
48
|
+
lexicon-icon: (
|
|
49
|
+
margin-top: 0,
|
|
50
|
+
),
|
|
51
|
+
),
|
|
55
52
|
),
|
|
56
53
|
),
|
|
57
54
|
),
|
|
@@ -61,11 +58,7 @@ $menubar-vertical-expand-md: map-deep-merge(
|
|
|
61
58
|
$menubar-vertical-transparent-md: () !default;
|
|
62
59
|
$menubar-vertical-transparent-md: map-deep-merge(
|
|
63
60
|
(
|
|
64
|
-
|
|
65
|
-
mobile: (
|
|
66
|
-
background-color: $gray-100,
|
|
67
|
-
),
|
|
68
|
-
link: (
|
|
61
|
+
nav-link: (
|
|
69
62
|
color: $gray-600,
|
|
70
63
|
hover: (
|
|
71
64
|
color: clay-darken($gray-600, 15),
|
|
@@ -80,38 +73,44 @@ $menubar-vertical-transparent-md: map-deep-merge(
|
|
|
80
73
|
color: rgba($black, 0.3),
|
|
81
74
|
),
|
|
82
75
|
),
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
color: $gray-900,
|
|
86
|
-
hover: (
|
|
76
|
+
media-breakpoint-down: (
|
|
77
|
+
sm: (
|
|
87
78
|
background-color: $gray-100,
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
79
|
+
nav-link: (
|
|
80
|
+
border-radius: clay-enable-rounded(0),
|
|
81
|
+
color: $gray-900,
|
|
82
|
+
hover: (
|
|
83
|
+
background-color: $gray-100,
|
|
84
|
+
color: clay-darken($gray-900, 5%),
|
|
85
|
+
),
|
|
86
|
+
active: (
|
|
87
|
+
background-color: $component-active-bg,
|
|
88
|
+
color: $component-active-color,
|
|
89
|
+
),
|
|
90
|
+
active-class: (
|
|
91
|
+
font-weight: $font-weight-semi-bold,
|
|
92
|
+
),
|
|
93
|
+
disabled: (
|
|
94
|
+
background-color: transparent,
|
|
95
|
+
color: $gray-600,
|
|
96
|
+
),
|
|
97
|
+
show: (
|
|
98
|
+
background-color: c-unset,
|
|
99
|
+
color: c-unset,
|
|
100
|
+
font-weight: c-unset,
|
|
101
|
+
),
|
|
102
|
+
),
|
|
103
|
+
menubar-collapse: (
|
|
104
|
+
background-color: $white,
|
|
105
|
+
border-color: $gray-300,
|
|
106
|
+
border-radius: clay-enable-rounded($border-radius),
|
|
107
|
+
box-shadow:
|
|
108
|
+
clay-enable-shadows(0 1px 5px -1px rgba(0, 0, 0, 0.3)),
|
|
109
|
+
),
|
|
110
|
+
menubar-toggler: (
|
|
111
|
+
text-decoration: none,
|
|
112
|
+
),
|
|
96
113
|
),
|
|
97
|
-
disabled: (
|
|
98
|
-
background-color: transparent,
|
|
99
|
-
color: $gray-600,
|
|
100
|
-
),
|
|
101
|
-
show: (
|
|
102
|
-
background-color: c-unset,
|
|
103
|
-
color: c-unset,
|
|
104
|
-
font-weight: c-unset,
|
|
105
|
-
),
|
|
106
|
-
),
|
|
107
|
-
collapse-mobile: (
|
|
108
|
-
background-color: $white,
|
|
109
|
-
border-color: $gray-300,
|
|
110
|
-
border-radius: clay-enable-rounded($border-radius),
|
|
111
|
-
box-shadow: clay-enable-shadows(0 1px 5px -1px rgba(0, 0, 0, 0.3)),
|
|
112
|
-
),
|
|
113
|
-
toggler-mobile: (
|
|
114
|
-
text-decoration: none,
|
|
115
114
|
),
|
|
116
115
|
),
|
|
117
116
|
$menubar-vertical-transparent-md
|
|
@@ -169,56 +168,52 @@ $menubar-vertical-decorated-md-nav-link-after-active: map-deep-merge(
|
|
|
169
168
|
$menubar-vertical-expand-lg: () !default;
|
|
170
169
|
$menubar-vertical-expand-lg: map-deep-merge(
|
|
171
170
|
(
|
|
172
|
-
breakpoint-up: lg,
|
|
173
171
|
max-width: 15.625rem,
|
|
174
|
-
|
|
175
|
-
align-items: center,
|
|
176
|
-
display: flex,
|
|
177
|
-
flex-wrap: wrap,
|
|
178
|
-
justify-content: space-between,
|
|
179
|
-
margin-bottom: 1.5rem,
|
|
180
|
-
margin-left: math-sign($grid-gutter-width * 0.5),
|
|
181
|
-
margin-right: math-sign($grid-gutter-width * 0.5),
|
|
182
|
-
),
|
|
183
|
-
collapse: (
|
|
172
|
+
menubar-collapse: (
|
|
184
173
|
display: block,
|
|
185
174
|
),
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
left: -0.0625rem,
|
|
192
|
-
position: absolute,
|
|
193
|
-
right: -0.0625rem,
|
|
194
|
-
top: 100%,
|
|
195
|
-
z-index: $zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
196
|
-
),
|
|
197
|
-
nav-nested-mobile: (
|
|
198
|
-
margin-bottom: 0.5rem,
|
|
199
|
-
margin-top: 0.5rem,
|
|
200
|
-
),
|
|
201
|
-
nav-nested-margins-mobile: (
|
|
202
|
-
margin-bottom: 0.5rem,
|
|
203
|
-
margin-top: 0.5rem,
|
|
204
|
-
),
|
|
205
|
-
nav-nested-margins-item-mobile: (
|
|
206
|
-
margin-left: 0,
|
|
207
|
-
),
|
|
208
|
-
toggler-mobile: (
|
|
209
|
-
align-items: center,
|
|
210
|
-
border-color: transparent,
|
|
211
|
-
border-style: solid,
|
|
212
|
-
border-width: 0.0625rem,
|
|
213
|
-
display: flex,
|
|
214
|
-
height: 2rem,
|
|
215
|
-
padding-left: 0.5rem,
|
|
216
|
-
padding-right: 0.5rem,
|
|
217
|
-
c-inner: (
|
|
175
|
+
media-breakpoint-down: (
|
|
176
|
+
md: (
|
|
177
|
+
margin-bottom: 1.5rem,
|
|
178
|
+
margin-left: math-sign($grid-gutter-width * 0.5),
|
|
179
|
+
margin-right: math-sign($grid-gutter-width * 0.5),
|
|
218
180
|
max-width: none,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
181
|
+
menubar-collapse: (
|
|
182
|
+
border-color: transparent,
|
|
183
|
+
border-style: solid,
|
|
184
|
+
border-width: 0.0625rem,
|
|
185
|
+
display: none,
|
|
186
|
+
position: relative,
|
|
187
|
+
top: 100%,
|
|
188
|
+
z-index: $zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
189
|
+
),
|
|
190
|
+
nav-nested: (
|
|
191
|
+
margin-bottom: 0.5rem,
|
|
192
|
+
margin-top: 0.5rem,
|
|
193
|
+
),
|
|
194
|
+
nav-nested-margins: (
|
|
195
|
+
margin-bottom: 0.5rem,
|
|
196
|
+
margin-top: 0.5rem,
|
|
197
|
+
),
|
|
198
|
+
nav-nested-margins-item: (
|
|
199
|
+
margin-left: 0,
|
|
200
|
+
),
|
|
201
|
+
menubar-toggler: (
|
|
202
|
+
align-items: center,
|
|
203
|
+
border-color: transparent,
|
|
204
|
+
border-style: solid,
|
|
205
|
+
border-width: 0.0625rem,
|
|
206
|
+
display: flex,
|
|
207
|
+
height: 2rem,
|
|
208
|
+
padding-left: 0.5rem,
|
|
209
|
+
padding-right: 0.5rem,
|
|
210
|
+
c-inner: (
|
|
211
|
+
max-width: none,
|
|
212
|
+
),
|
|
213
|
+
lexicon-icon: (
|
|
214
|
+
margin-top: 0,
|
|
215
|
+
),
|
|
216
|
+
),
|
|
222
217
|
),
|
|
223
218
|
),
|
|
224
219
|
),
|
|
@@ -228,11 +223,7 @@ $menubar-vertical-expand-lg: map-deep-merge(
|
|
|
228
223
|
$menubar-vertical-transparent-lg: () !default;
|
|
229
224
|
$menubar-vertical-transparent-lg: map-deep-merge(
|
|
230
225
|
(
|
|
231
|
-
|
|
232
|
-
mobile: (
|
|
233
|
-
background-color: $gray-100,
|
|
234
|
-
),
|
|
235
|
-
link: (
|
|
226
|
+
nav-link: (
|
|
236
227
|
color: $gray-600,
|
|
237
228
|
hover: (
|
|
238
229
|
color: clay-darken($gray-600, 15),
|
|
@@ -247,38 +238,44 @@ $menubar-vertical-transparent-lg: map-deep-merge(
|
|
|
247
238
|
color: rgba($black, 0.3),
|
|
248
239
|
),
|
|
249
240
|
),
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
color: $gray-900,
|
|
253
|
-
hover: (
|
|
241
|
+
media-breakpoint-down: (
|
|
242
|
+
md: (
|
|
254
243
|
background-color: $gray-100,
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
244
|
+
nav-link: (
|
|
245
|
+
border-radius: clay-enable-rounded(0),
|
|
246
|
+
color: $gray-900,
|
|
247
|
+
hover: (
|
|
248
|
+
background-color: $gray-100,
|
|
249
|
+
color: clay-darken($gray-900, 5%),
|
|
250
|
+
),
|
|
251
|
+
active: (
|
|
252
|
+
background-color: $component-active-bg,
|
|
253
|
+
color: $component-active-color,
|
|
254
|
+
),
|
|
255
|
+
active-class: (
|
|
256
|
+
font-weight: $font-weight-semi-bold,
|
|
257
|
+
),
|
|
258
|
+
disabled: (
|
|
259
|
+
background-color: transparent,
|
|
260
|
+
color: $gray-600,
|
|
261
|
+
),
|
|
262
|
+
show: (
|
|
263
|
+
background-color: c-unset,
|
|
264
|
+
color: c-unset,
|
|
265
|
+
font-weight: c-unset,
|
|
266
|
+
),
|
|
267
|
+
),
|
|
268
|
+
menubar-collapse: (
|
|
269
|
+
background-color: $white,
|
|
270
|
+
border-color: $gray-300,
|
|
271
|
+
border-radius: clay-enable-rounded($border-radius),
|
|
272
|
+
box-shadow:
|
|
273
|
+
clay-enable-shadows(0 1px 5px -1px rgba(0, 0, 0, 0.3)),
|
|
274
|
+
),
|
|
275
|
+
menubar-toggler: (
|
|
276
|
+
text-decoration: none,
|
|
277
|
+
),
|
|
263
278
|
),
|
|
264
|
-
disabled: (
|
|
265
|
-
background-color: transparent,
|
|
266
|
-
color: $gray-600,
|
|
267
|
-
),
|
|
268
|
-
show: (
|
|
269
|
-
background-color: c-unset,
|
|
270
|
-
color: c-unset,
|
|
271
|
-
font-weight: c-unset,
|
|
272
|
-
),
|
|
273
|
-
),
|
|
274
|
-
collapse-mobile: (
|
|
275
|
-
background-color: $white,
|
|
276
|
-
border-color: $gray-300,
|
|
277
|
-
border-radius: clay-enable-rounded($border-radius),
|
|
278
|
-
box-shadow: clay-enable-shadows(0 1px 5px -1px rgba(0, 0, 0, 0.3)),
|
|
279
|
-
),
|
|
280
|
-
toggler-mobile: (
|
|
281
|
-
text-decoration: none,
|
|
282
279
|
),
|
|
283
280
|
),
|
|
284
281
|
$menubar-vertical-transparent-lg
|