mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-27 23:04:05 -06:00
WIP fix for ul/ol .overflow
This commit is contained in:
parent
b18df26347
commit
20f7422922
@ -2,7 +2,7 @@
|
||||
|
||||
.explorer {
|
||||
&.desktop-only {
|
||||
overflow-y: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
&:after {
|
||||
pointer-events: none;
|
||||
@ -62,7 +62,8 @@ button#explorer {
|
||||
#explorer-content {
|
||||
list-style: none;
|
||||
overflow: hidden;
|
||||
max-height: none;
|
||||
overflow-y: auto;
|
||||
max-height: calc(100% - 28px);
|
||||
transition:
|
||||
max-height 0.35s ease,
|
||||
visibility 0s linear 0s;
|
||||
|
||||
@ -538,6 +538,8 @@ video {
|
||||
|
||||
div:has(> .overflow) {
|
||||
position: relative;
|
||||
overflow-y: auto;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
ul.overflow,
|
||||
@ -552,7 +554,10 @@ ol.overflow {
|
||||
& > li:last-of-type {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
*:has(> * > ul.overflow),
|
||||
*:has(> * > ol.overflow) {
|
||||
&:after {
|
||||
pointer-events: none;
|
||||
content: "";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user