@wwtdev/bsds-css 2.23.0 → 2.25.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/dist/components/_form-container.scss +111 -0
- package/dist/components/_horizontal-navigation-mobile.scss +19 -10
- package/dist/components/_horizontal-navigation.scss +36 -31
- package/dist/components/_modal.scss +1 -1
- package/dist/components/_table.scss +4 -1
- package/dist/components/_vertical-navigation.scss +78 -28
- package/dist/components/form-container.css +108 -0
- package/dist/components/horizontal-navigation-mobile.css +19 -10
- package/dist/components/horizontal-navigation.css +35 -30
- package/dist/components/modal.css +1 -1
- package/dist/components/table.css +4 -1
- package/dist/components/vertical-navigation.css +77 -27
- package/dist/wwt-bsds-wc-base.css +1 -1
- package/dist/wwt-bsds.css +226 -69
- package/dist/wwt-bsds.min.css +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
position: fixed;
|
|
8
8
|
right: 0;
|
|
9
9
|
top: var(--top-offset);
|
|
10
|
-
z-index:
|
|
10
|
+
z-index: 1000;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
@media (min-width: 1166px) {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
color: var(--bs-ink-light);
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
display: flex;
|
|
26
|
-
height:
|
|
26
|
+
height: var(--bs-horizontal-nav-height);
|
|
27
27
|
justify-content: space-between;
|
|
28
28
|
padding-bottom: 0.5rem;
|
|
29
29
|
padding-left: 2.25rem;
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
background-color: var(--bg-color);
|
|
68
68
|
display: flex;
|
|
69
69
|
flex-direction: column;
|
|
70
|
-
height:
|
|
70
|
+
height: 100dvh;
|
|
71
71
|
/* 100vh - top offset - toggle height */
|
|
72
|
-
max-height: calc(
|
|
72
|
+
max-height: calc(100dvh - var(--top-offset) - 48px);
|
|
73
73
|
opacity: 0;
|
|
74
74
|
overflow: scroll;
|
|
75
75
|
scrollbar-width: none; /* Firefox */
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
.bs-horizontal-nav-mobile:where([data-hide-toggle="true"]) :where(.bs-horizontal-nav-mobile-menu) {
|
|
82
|
-
max-height: calc(
|
|
82
|
+
max-height: calc(100dvh - var(--top-offset));
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
.bs-horizontal-nav-mobile:where([data-shown="true"]) :where(.bs-horizontal-nav-mobile-menu) {
|
|
@@ -200,17 +200,26 @@
|
|
|
200
200
|
width: 1rem;
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
-
/* =====
|
|
204
|
-
.bs-horizontal-nav-mobile :where(.bs-horizontal-nav-mobile-
|
|
203
|
+
/* ===== End Items ===== */
|
|
204
|
+
.bs-horizontal-nav-mobile :where(.bs-horizontal-nav-mobile-end-items) {
|
|
205
|
+
display: flex;
|
|
206
|
+
flex-direction: column;
|
|
207
|
+
margin-bottom: 1.5rem;
|
|
208
|
+
margin-top: auto;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.bs-horizontal-nav-mobile :where(.bs-horizontal-nav-mobile-end-items > *:not(button)) {
|
|
205
212
|
padding-bottom: 0.75rem;
|
|
206
213
|
padding-left: 2.25rem;
|
|
207
214
|
padding-right: 2.25rem;
|
|
208
215
|
padding-top: 0.75rem;
|
|
209
|
-
margin-top: auto;
|
|
210
216
|
}
|
|
211
217
|
|
|
212
|
-
.bs-horizontal-nav-mobile :where(.bs-horizontal-nav-mobile-
|
|
213
|
-
margin-
|
|
218
|
+
.bs-horizontal-nav-mobile :where(.bs-horizontal-nav-mobile-end-items > button) {
|
|
219
|
+
margin-bottom: 0.75rem;
|
|
220
|
+
margin-left: 2.25rem;
|
|
221
|
+
margin-right: 2.25rem;
|
|
222
|
+
margin-top: 0.75rem;
|
|
214
223
|
}
|
|
215
224
|
|
|
216
225
|
/* Vue Transition Styles - Only used in Vue component */
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--bs-horizontal-nav-height: 48px;
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
.bs-horizontal-nav {
|
|
2
6
|
--bg-color: var(--bs-bg-light);
|
|
3
7
|
--top-offset: 48px;
|
|
@@ -5,12 +9,12 @@
|
|
|
5
9
|
background-color: var(--bg-color);
|
|
6
10
|
bottom: auto;
|
|
7
11
|
display: none;
|
|
8
|
-
height:
|
|
12
|
+
height: var(--bs-horizontal-nav-height);
|
|
9
13
|
left: 0;
|
|
10
14
|
position: fixed;
|
|
11
15
|
right: 0;
|
|
12
16
|
top: var(--top-offset);
|
|
13
|
-
z-index:
|
|
17
|
+
z-index: 1000;
|
|
14
18
|
}
|
|
15
19
|
|
|
16
20
|
@media (min-width: 1166px) {
|
|
@@ -32,8 +36,7 @@
|
|
|
32
36
|
}
|
|
33
37
|
|
|
34
38
|
/* ===== Nav List ===== */
|
|
35
|
-
.bs-horizontal-nav :where(nav > ul)
|
|
36
|
-
.bs-horizontal-nav :where(nav > .bs-horizontal-nav-external-links > ul) {
|
|
39
|
+
.bs-horizontal-nav :where(nav > ul) {
|
|
37
40
|
align-items: center;
|
|
38
41
|
display: flex;
|
|
39
42
|
flex-direction: row;
|
|
@@ -56,20 +59,17 @@
|
|
|
56
59
|
padding-left: 0;
|
|
57
60
|
padding-right: 0;
|
|
58
61
|
padding-top: 0;
|
|
59
|
-
width: auto;
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
/* ===== Nav Items ===== */
|
|
63
|
-
.bs-horizontal-nav :where(nav > ul > li)
|
|
64
|
-
.bs-horizontal-nav :where(nav > .bs-horizontal-nav-external-links > ul > li) {
|
|
65
|
+
.bs-horizontal-nav :where(nav > ul > li) {
|
|
65
66
|
border-bottom: none;
|
|
66
67
|
display: list-item;
|
|
67
68
|
margin-left: 0;
|
|
68
69
|
width: auto;
|
|
69
70
|
}
|
|
70
71
|
|
|
71
|
-
.bs-horizontal-nav :where(nav > ul > li:not(.bs-horizontal-nav-title) > a)
|
|
72
|
-
.bs-horizontal-nav :where(nav > .bs-horizontal-nav-external-links > ul > li > a) {
|
|
72
|
+
.bs-horizontal-nav :where(nav > ul > li:not(.bs-horizontal-nav-title) > a) {
|
|
73
73
|
align-items: center;
|
|
74
74
|
border-radius: 4px;
|
|
75
75
|
color: var(--bs-ink-light);
|
|
@@ -85,19 +85,16 @@
|
|
|
85
85
|
width: 100%;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
.bs-horizontal-nav :where(nav > ul > li
|
|
89
|
-
.bs-horizontal-nav :where(nav > .bs-horizontal-nav-external-links > ul > li > a:hover) {
|
|
88
|
+
.bs-horizontal-nav :where(nav > ul > li > a:hover) {
|
|
90
89
|
color: var(--bs-ink-blue);
|
|
91
90
|
}
|
|
92
91
|
|
|
93
|
-
.bs-horizontal-nav :where(nav > ul > li > a[data-active="true"])
|
|
94
|
-
.bs-horizontal-nav :where(nav > .bs-horizontal-nav-external-links > ul > li > a[data-active="true"]) {
|
|
92
|
+
.bs-horizontal-nav :where(nav > ul > li > a[data-active="true"]) {
|
|
95
93
|
color: var(--bs-ink-base);
|
|
96
94
|
font-weight: 600;
|
|
97
95
|
}
|
|
98
96
|
|
|
99
|
-
.bs-horizontal-nav :where(nav > ul > li > a[data-active="true"]:hover)
|
|
100
|
-
.bs-horizontal-nav :where(nav > .bs-horizontal-nav-external-links > ul > li > a[data-active="true"]:hover) {
|
|
97
|
+
.bs-horizontal-nav :where(nav > ul > li > a[data-active="true"]:hover) {
|
|
101
98
|
color: var(--bs-ink-blue);
|
|
102
99
|
}
|
|
103
100
|
|
|
@@ -157,10 +154,12 @@
|
|
|
157
154
|
--dropdown-top: 100%;
|
|
158
155
|
border-radius: 8px;
|
|
159
156
|
padding: 1.5rem;
|
|
160
|
-
width: 10.5rem;
|
|
161
157
|
}
|
|
162
158
|
|
|
163
159
|
.bs-horizontal-nav :where(.bs-horizontal-nav-nested-menu > ul) {
|
|
160
|
+
display: inline-flex;
|
|
161
|
+
flex-direction: column;
|
|
162
|
+
gap: 0.5rem;
|
|
164
163
|
list-style: none;
|
|
165
164
|
}
|
|
166
165
|
|
|
@@ -186,24 +185,30 @@
|
|
|
186
185
|
color: var(--bs-ink-blue);
|
|
187
186
|
}
|
|
188
187
|
|
|
189
|
-
/* =====
|
|
190
|
-
.bs-horizontal-nav :where(.bs-horizontal-nav-
|
|
191
|
-
|
|
192
|
-
|
|
188
|
+
/* ===== End Items ===== */
|
|
189
|
+
.bs-horizontal-nav :where(.bs-horizontal-nav-end-items) {
|
|
190
|
+
display: flex;
|
|
191
|
+
gap: 1.5rem;
|
|
192
|
+
margin-left: auto;
|
|
193
|
+
white-space: nowrap;
|
|
193
194
|
}
|
|
194
195
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
196
|
+
.bs-horizontal-nav :where(.bs-horizontal-nav-end-items > *) {
|
|
197
|
+
font-size: 0.75rem;
|
|
198
|
+
font-weight: 600;
|
|
198
199
|
}
|
|
199
200
|
|
|
200
|
-
.bs-horizontal-nav :where(.bs-horizontal-nav-
|
|
201
|
-
|
|
201
|
+
.bs-horizontal-nav :where(.bs-horizontal-nav-end-items > *:not(button)) {
|
|
202
|
+
color: var(--bs-ink-light);
|
|
203
|
+
padding-bottom: 0.5rem;
|
|
204
|
+
padding-left: 0rem;
|
|
205
|
+
padding-right: 0rem;
|
|
206
|
+
padding-top: 0.5rem;
|
|
202
207
|
}
|
|
203
208
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
+
.bs-horizontal-nav :where(.bs-horizontal-nav-end-items > button) {
|
|
210
|
+
margin-bottom: 0.5rem;
|
|
211
|
+
margin-left: 0rem;
|
|
212
|
+
margin-right: 0rem;
|
|
213
|
+
margin-top: 0.5rem;
|
|
209
214
|
}
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
.bs-table-header-rowgroup-freeze {
|
|
62
62
|
position: sticky;
|
|
63
63
|
top: 0;
|
|
64
|
-
z-index:
|
|
64
|
+
z-index: 2;
|
|
65
65
|
|
|
66
66
|
.bs-table:not(.bs-table-border-none) & {
|
|
67
67
|
box-shadow: 0 3px 0 rgba(0, 0, 0, .03);
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
.bs-table-footer-rowgroup-freeze {
|
|
94
94
|
position: sticky;
|
|
95
95
|
bottom: 0;
|
|
96
|
+
z-index: 2;
|
|
96
97
|
|
|
97
98
|
.bs-table:not(.bs-table-border-none) & {
|
|
98
99
|
box-shadow: 0 -3px 0 rgba(0, 0, 0, .03);
|
|
@@ -129,6 +130,7 @@
|
|
|
129
130
|
grid-template-columns: subgrid;
|
|
130
131
|
background: inherit;
|
|
131
132
|
border-color: inherit;
|
|
133
|
+
z-index: 1;
|
|
132
134
|
|
|
133
135
|
.bs-table:not(.bs-table-border-none) & {
|
|
134
136
|
box-shadow: 3px 0 0 rgba(0, 0, 0, .03);
|
|
@@ -143,6 +145,7 @@
|
|
|
143
145
|
grid-template-columns: subgrid;
|
|
144
146
|
background: inherit;
|
|
145
147
|
border-color: inherit;
|
|
148
|
+
z-index: 1;
|
|
146
149
|
|
|
147
150
|
.bs-table:not(.bs-table-border-none) & {
|
|
148
151
|
box-shadow: -3px 0 0 rgba(0, 0, 0, .03);
|
|
@@ -1,18 +1,22 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--bs-vertical-nav-width: 9.875rem;
|
|
3
|
+
--bs-vertical-nav-narrow-width: 4.5rem;
|
|
4
|
+
}
|
|
5
|
+
|
|
1
6
|
.bs-vertical-nav {
|
|
2
7
|
--active-color: rgba(255, 255, 255, 0.25);
|
|
3
8
|
--bg-color: var(--bs-navy-base);
|
|
4
9
|
--border-color: var(--bs-border-dark);
|
|
5
10
|
--expand-y-transform: translateY(calc(-1 * var(--top-offset)));
|
|
6
11
|
--top-offset: 48px;
|
|
7
|
-
--width: auto;
|
|
8
12
|
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
|
9
13
|
background-color: var(--bg-color);
|
|
10
14
|
color: var(--bs-white);
|
|
11
15
|
display: flex;
|
|
12
16
|
flex-direction: column;
|
|
13
|
-
height:
|
|
17
|
+
height: 100dvh;
|
|
14
18
|
left: 0;
|
|
15
|
-
max-height: calc(
|
|
19
|
+
max-height: calc(100dvh - var(--top-offset));
|
|
16
20
|
opacity: 0;
|
|
17
21
|
overflow: scroll;
|
|
18
22
|
padding-bottom: 1.5rem;
|
|
@@ -26,8 +30,8 @@
|
|
|
26
30
|
/* Slight delay for visibility to change prior to opacity */
|
|
27
31
|
transition: opacity 200ms ease 10ms;
|
|
28
32
|
visibility: hidden;
|
|
29
|
-
width:
|
|
30
|
-
z-index:
|
|
33
|
+
width: auto;
|
|
34
|
+
z-index: 1000;
|
|
31
35
|
}
|
|
32
36
|
|
|
33
37
|
.bs-vertical-nav:where([data-mobile-shown="true"]) {
|
|
@@ -44,7 +48,6 @@
|
|
|
44
48
|
|
|
45
49
|
@media (min-width: 1166px) {
|
|
46
50
|
.bs-vertical-nav {
|
|
47
|
-
--width: 9.875rem;
|
|
48
51
|
border-right: 1px solid var(--bg-color);
|
|
49
52
|
opacity: 1;
|
|
50
53
|
padding-bottom: 1rem;
|
|
@@ -54,10 +57,11 @@
|
|
|
54
57
|
right: auto;
|
|
55
58
|
transition: max-height 200ms ease, transform 200ms ease;
|
|
56
59
|
visibility: visible;
|
|
60
|
+
width: var(--bs-vertical-nav-width);
|
|
57
61
|
}
|
|
58
62
|
|
|
59
63
|
.bs-vertical-nav:where([data-narrow="true"]) {
|
|
60
|
-
|
|
64
|
+
width: var(--bs-vertical-nav-narrow-width);
|
|
61
65
|
}
|
|
62
66
|
}
|
|
63
67
|
|
|
@@ -67,7 +71,7 @@
|
|
|
67
71
|
|
|
68
72
|
.bs-vertical-nav:where([data-y-expand="true"]) {
|
|
69
73
|
transform: var(--expand-y-transform);
|
|
70
|
-
max-height:
|
|
74
|
+
max-height: 100dvh;
|
|
71
75
|
}
|
|
72
76
|
|
|
73
77
|
/* ===== Sections ===== */
|
|
@@ -104,6 +108,21 @@
|
|
|
104
108
|
width: 100%;
|
|
105
109
|
}
|
|
106
110
|
|
|
111
|
+
@media (min-width: 1166px) {
|
|
112
|
+
.bs-vertical-nav :where(.bs-vertical-nav-section-toggle) {
|
|
113
|
+
/* nav width - nav left padding - nav right padding */
|
|
114
|
+
width: calc(var(--bs-vertical-nav-width) - 0.5rem - 0.5rem);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.bs-vertical-nav :where(.bs-vertical-nav-section-toggle span:first-child) {
|
|
118
|
+
overflow: hidden;
|
|
119
|
+
text-align: start;
|
|
120
|
+
text-overflow: ellipsis;
|
|
121
|
+
/* nav width - nav left padding - nav right padding - link left padding - link right padding - caret width */
|
|
122
|
+
width: calc(var(--bs-vertical-nav-width) - 0.5rem - 0.5rem - 0.75rem - 0.75rem - 0.75rem);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
107
126
|
.bs-vertical-nav :where(.bs-vertical-nav-section-toggle-caret) {
|
|
108
127
|
height: 0.75rem;
|
|
109
128
|
transform: none;
|
|
@@ -155,6 +174,24 @@
|
|
|
155
174
|
font-size: 0.875rem;
|
|
156
175
|
padding-bottom: 0.5rem;
|
|
157
176
|
padding-top: 0.5rem;
|
|
177
|
+
/* nav width - nav left padding - nav right padding */
|
|
178
|
+
width: calc(var(--bs-vertical-nav-width) - 0.5rem - 0.5rem);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/* Text overflow - normal width - no icon */
|
|
182
|
+
.bs-vertical-nav :where(ul li a:not(:has(.bs-vertical-nav-link-icon)) span:first-child) {
|
|
183
|
+
overflow: hidden;
|
|
184
|
+
text-overflow: ellipsis;
|
|
185
|
+
/* nav width - nav left padding - nav right padding - link left padding - link right padding */
|
|
186
|
+
width: calc(var(--bs-vertical-nav-width) - 0.5rem - 0.5rem - 0.75rem - 0.75rem);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/* Text overflow - normal width - with icon */
|
|
190
|
+
.bs-vertical-nav :where(ul li a:has(.bs-vertical-nav-link-icon) span:nth-child(2)) {
|
|
191
|
+
overflow: hidden;
|
|
192
|
+
text-overflow: ellipsis;
|
|
193
|
+
/* nav width - nav left padding - nav right padding - link left padding - link right padding - icon width - icon gap */
|
|
194
|
+
width: calc(var(--bs-vertical-nav-width) - 0.5rem - 0.5rem - 0.75rem - 0.75rem - 0.875rem - 0.5rem);
|
|
158
195
|
}
|
|
159
196
|
|
|
160
197
|
.bs-vertical-nav:where([data-narrow="true"]) :where(ul li a) {
|
|
@@ -167,6 +204,17 @@
|
|
|
167
204
|
padding-right: 0.25rem;
|
|
168
205
|
padding-top: 0.75rem;
|
|
169
206
|
text-align: center;
|
|
207
|
+
/* nav width - nav left padding - nav right padding */
|
|
208
|
+
width: calc(var(--bs-vertical-nav-narrow-width) - 0.5rem - 0.5rem);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/* Text overflow - narrow width */
|
|
212
|
+
.bs-vertical-nav:where([data-narrow="true"]) :where(ul li a:not(:has(.bs-vertical-nav-link-icon)) span:first-child),
|
|
213
|
+
.bs-vertical-nav:where([data-narrow="true"]) :where(ul li a:has(.bs-vertical-nav-link-icon) span:nth-child(2)) {
|
|
214
|
+
overflow: hidden;
|
|
215
|
+
text-overflow: ellipsis;
|
|
216
|
+
/* nav width - nav left padding - nav right padding - link left padding */
|
|
217
|
+
width: calc(var(--bs-vertical-nav-narrow-width) - 0.5rem - 0.5rem);
|
|
170
218
|
}
|
|
171
219
|
}
|
|
172
220
|
|
|
@@ -196,37 +244,39 @@
|
|
|
196
244
|
}
|
|
197
245
|
}
|
|
198
246
|
|
|
199
|
-
/* =====
|
|
200
|
-
.bs-vertical-nav :where(.bs-vertical-nav-
|
|
247
|
+
/* ===== End Items ===== */
|
|
248
|
+
.bs-vertical-nav :where(.bs-vertical-nav-end-items) {
|
|
249
|
+
display: flex;
|
|
250
|
+
flex-direction: column;
|
|
251
|
+
gap: 0.25rem;
|
|
201
252
|
margin-top: auto;
|
|
202
|
-
padding-top: 2.25rem;
|
|
203
253
|
}
|
|
204
254
|
|
|
205
|
-
.bs-vertical-nav
|
|
206
|
-
|
|
255
|
+
.bs-vertical-nav :where(.bs-vertical-nav-end-items > *) {
|
|
256
|
+
color: var(--bs-white);
|
|
207
257
|
}
|
|
208
258
|
|
|
209
|
-
.bs-vertical-nav :where(.bs-vertical-nav-
|
|
210
|
-
|
|
211
|
-
|
|
259
|
+
.bs-vertical-nav :where(.bs-vertical-nav-end-items > *:not(button)) {
|
|
260
|
+
color: var(--bs-white);
|
|
261
|
+
padding-bottom: 0.5rem;
|
|
262
|
+
padding-left: 0.75rem;
|
|
263
|
+
padding-right: 0.75rem;
|
|
264
|
+
padding-top: 0.5rem;
|
|
212
265
|
}
|
|
213
266
|
|
|
214
267
|
@media (min-width: 1166px) {
|
|
215
|
-
.bs-vertical-nav :where(.bs-vertical-nav-
|
|
216
|
-
|
|
217
|
-
width: 0.875rem;
|
|
268
|
+
.bs-vertical-nav :where(.bs-vertical-nav-end-items > *:not(button)) {
|
|
269
|
+
font-size: 0.875rem;
|
|
218
270
|
}
|
|
219
271
|
}
|
|
220
272
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
margin-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
.bs-vertical-nav :where(.bs-vertical-nav-external-links ~ .bs-vertical-nav-slotted-items) {
|
|
227
|
-
margin-top: 1rem;
|
|
273
|
+
.bs-vertical-nav :where(.bs-vertical-nav-end-items > button) {
|
|
274
|
+
margin-bottom: 0.5rem;
|
|
275
|
+
margin-left: 0.75rem;
|
|
276
|
+
margin-right: 0.75rem;
|
|
277
|
+
margin-top: 0.5rem;
|
|
228
278
|
}
|
|
229
279
|
|
|
230
|
-
.bs-vertical-nav:where([data-narrow="true"]) :where(.bs-vertical-nav-
|
|
280
|
+
.bs-vertical-nav:where([data-narrow="true"]) :where(.bs-vertical-nav-end-items) {
|
|
231
281
|
display: none;
|
|
232
282
|
}
|