@asd20/ui 3.2.392 → 3.2.395
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/package.json
CHANGED
|
@@ -156,9 +156,7 @@ export default {
|
|
|
156
156
|
},
|
|
157
157
|
setFocusItem() {
|
|
158
158
|
let el = document.getElementById(
|
|
159
|
-
`asd20-site-menu__item-${this.activeSectionIndex}-${
|
|
160
|
-
this.focusedItemIndex
|
|
161
|
-
}`
|
|
159
|
+
`asd20-site-menu__item-${this.activeSectionIndex}-${this.focusedItemIndex}`
|
|
162
160
|
)
|
|
163
161
|
el.focus()
|
|
164
162
|
},
|
|
@@ -236,9 +234,11 @@ export default {
|
|
|
236
234
|
left: 0;
|
|
237
235
|
top: 0;
|
|
238
236
|
right: space(2);
|
|
239
|
-
bottom:
|
|
237
|
+
bottom: 0;
|
|
238
|
+
// bottom: space(7);
|
|
240
239
|
background: var(--website-menu__open-background-color, white);
|
|
241
|
-
overflow: auto;
|
|
240
|
+
// overflow: auto;
|
|
241
|
+
overflow-y: scroll !important;
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
.asd20-table-of-contents {
|
|
@@ -262,7 +262,7 @@ export default {
|
|
|
262
262
|
flex-grow: 0;
|
|
263
263
|
justify-content: space-between;
|
|
264
264
|
align-items: center;
|
|
265
|
-
padding: space(
|
|
265
|
+
padding: space(0.5) space(0.5);
|
|
266
266
|
cursor: pointer;
|
|
267
267
|
transition: background asd20-speed(1) ease-in-out;
|
|
268
268
|
box-shadow: 0 -1px 0 0 var(--website-menu__divider-color) inset;
|
|
@@ -305,6 +305,7 @@ export default {
|
|
|
305
305
|
top: 0;
|
|
306
306
|
right: 0;
|
|
307
307
|
bottom: 0;
|
|
308
|
+
// overflow-y: scroll;
|
|
308
309
|
&__back {
|
|
309
310
|
display: flex;
|
|
310
311
|
justify-content: flex-start;
|
|
@@ -342,8 +343,8 @@ export default {
|
|
|
342
343
|
}
|
|
343
344
|
|
|
344
345
|
.asd20-site-menu__items {
|
|
345
|
-
overflow-y: scroll; /* has to be scroll, not auto */
|
|
346
|
-
-webkit-overflow-scrolling: touch;
|
|
346
|
+
overflow-y: scroll !important; /* has to be scroll, not auto */
|
|
347
|
+
// -webkit-overflow-scrolling: touch;
|
|
347
348
|
}
|
|
348
349
|
|
|
349
350
|
.asd20-site-menu__item {
|
|
@@ -384,6 +385,11 @@ export default {
|
|
|
384
385
|
.asd20-site-menu__viewport {
|
|
385
386
|
right: 50vw;
|
|
386
387
|
}
|
|
388
|
+
.asd20-table-of-contents {
|
|
389
|
+
&__item {
|
|
390
|
+
padding: space(1);
|
|
391
|
+
}
|
|
392
|
+
}
|
|
387
393
|
}
|
|
388
394
|
|
|
389
395
|
@media (min-width: 1024px) {
|