Files
lucent-laravel/front/public/css/dialog.css
T
2024-10-10 19:55:21 +03:00

54 lines
770 B
CSS

//
//:modal {
// background-color: beige;
// border: 2px solid burlywood;
// border-radius: 5px;
//}
html {
//scrollbar-gutter: stable;
}
body:has(dialog[open]) {
overflow: hidden;
}
dialog {
margin: 2vh auto;
background-color: var(--p10);
padding: 34px;
border: none;
border-radius: 12px;
overflow: auto;
max-height: 96vh;
box-shadow: none!important;
//position: relative;
.close {
position: absolute;
top: 10px;
right: 0px;
}
.dialog-body {
width: fit-content;
}
}
dialog::backdrop {
backdrop-filter: blur(3px);
}
.dialog-header {
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
position: sticky;
top: -34px;
z-index: 999;
background-color: var(--p10);
padding: 10px 0;
}