SillyTavern/public/lib/dialog-polyfill.css

37 lines
665 B
CSS
Raw Normal View History

.poly_dialog {
2024-10-04 10:26:48 +02:00
position: absolute;
left: 0; right: 0;
width: -moz-fit-content;
width: -webkit-fit-content;
width: fit-content;
height: -moz-fit-content;
height: -webkit-fit-content;
height: fit-content;
margin: auto;
border: solid;
padding: 1em;
background: white;
color: black;
display: block;
}
.poly_dialog:not([open]) {
2024-10-04 10:26:48 +02:00
display: none;
}
.poly_dialog + .backdrop {
2024-10-04 10:26:48 +02:00
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
background: rgba(0,0,0,0.1);
}
._poly_dialog_overlay {
2024-10-04 10:26:48 +02:00
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
}
.poly_dialog.fixed {
2024-10-04 10:26:48 +02:00
position: fixed;
top: 50%;
transform: translate(0, -50%);
}