-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog.css
More file actions
18 lines (18 loc) · 1011 Bytes
/
Copy pathdialog.css
File metadata and controls
18 lines (18 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@charset "UTF-8";
/**
* @updated 25.11.18
* @copyright 2025 Hold'inCorp.
* @author inLoad
* @license Apache-2.0 ./LICENSE
*
* @see https://developer.mozilla.org/docs/Web/CSS/@charset
*/
dialog:not([open]) { display:none; }
dialog[open] ~ * { filter:blur(var(--mini_EM)); }
dialog::backdrop { background-color:rgb(var(--dark) / var(--small)); cursor:not-allowed; }
dialog { --border-dialog:var(--border_EM) solid color-mix(in srgb, currentColor 10%, transparent); z-index:1000; background-color:white; border:none; max-height:calc(100% - 3em); padding:0em; margin:auto; position:absolute; top:50%; bottom:50%; overflow:hidden; display:flex; flex-direction:column; border-radius:var(--tiny_EM); }
dialog > * { padding:var(--large_EM); }
dialog > header:first-child { border-bottom:var(--border-dialog); }
dialog > [content] { padding:0em var(--large_EM); margin:var(--large_EM) 0em; }
dialog > *:not(header,footer) { overflow:hidden auto; }
dialog > footer:last-child { border-top:var(--border-dialog); }