Skip to content

Commit a36f3c7

Browse files
authored
Add initial styles for dialog component
1 parent fcd14e8 commit a36f3c7

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

dialog.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@charset "UTF-8";
2+
/**
3+
* @updated 25.11.18
4+
* @copyright 2025 Hold'inCorp.
5+
* @author inLoad
6+
* @license Apache-2.0 ./LICENSE
7+
*
8+
* @see https://developer.mozilla.org/docs/Web/CSS/@charset
9+
*/
10+
dialog:not([open]) { display:none; }
11+
dialog[open] ~ * { filter:blur(var(--mini_EM)); }
12+
dialog::backdrop { background-color:rgb(var(--dark) / var(--tiny)); cursor:not-allowed; }
13+
dialog { background-color:rgb(var(--white)); border:none; max-height:calc(100% - 3em); margin:auto; }

0 commit comments

Comments
 (0)