closes Yohn/PicoCSS/pull/1 and Yohn/PicoCSS/pull/11

This commit is contained in:
Yohn 2024-11-10 09:27:03 -05:00
parent 9617cb1ecf
commit 4825b265c7
5 changed files with 266 additions and 248 deletions

View file

@ -11,7 +11,7 @@
}
#{$parent-selector} dialog {
display: flex;
display: grid;
z-index: 999;
position: fixed;
top: 0;
@ -24,7 +24,7 @@
min-width: 100%;
height: inherit;
min-height: 100%;
padding: 0;
padding: var(#{$css-var-prefix}spacing);
border: 0;
backdrop-filter: var(#{$css-var-prefix}modal-overlay-backdrop-filter);
background-color: var(#{$css-var-prefix}modal-overlay-background-color);
@ -38,9 +38,6 @@
":is(a, button)[rel=prev]"
);
width: 100%;
max-height: calc(100vh - var(#{$css-var-prefix}spacing) * 2);
margin: var(#{$css-var-prefix}spacing);
overflow: auto;
@if map.get($breakpoints, "sm") {
@media (min-width: map.get(map.get($breakpoints, "sm"), "breakpoint")) {
@ -80,6 +77,11 @@
}
}
@if $enable-transitions {
transform: scale(1);
transition: transform var(#{$css-var-prefix}transition);
}
// Close icon
#{$close-selector} {
display: block;
@ -109,7 +111,12 @@
// Closed state
&:not([open]),
&[open="false"] {
display: none;
visibility: hidden;
opacity: 0;
& article {
transform: scale(0.7);
}
}
}
@ -128,6 +135,11 @@
}
}
// Prevent scrolling body when modal is open
body:has(dialog[open]) {
overflow: hidden;
}
// Animations
@if $enable-classes and $enable-transitions {
$animation-duration: 0.2s;