phantasmal-world/13.0efd41fdd57784988b60.css
Daan Vanden Bosch 674efd78bf Release 53.
2020-01-29 13:34:43 +01:00

85 lines
1.4 KiB
CSS

.core_ToolBar {
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
border-bottom: var(--border);
padding: 0 2px;
}
.core_ToolBar > * {
margin: 2px 1px;
}
.core_ToolBar > .core_ToolBar_group {
margin: 2px 3px;
display: flex;
flex-direction: row;
align-items: center;
}
.core_ToolBar > .core_ToolBar_group > * {
margin: 0 2px;
}
.core_ToolBar .core_Input {
height: 26px;
}
.core_Dialog {
z-index: 20;
display: flex;
flex-direction: column;
outline: none;
position: fixed;
background-color: var(--bg-color);
border: var(--border);
padding: 10px;
box-shadow: black 0 0 10px -2px;
}
.core_Dialog:focus-within {
border: var(--border-focus);
}
.core_Dialog h1 {
font-size: 20px;
margin: 0 0 10px 0;
padding-bottom: 4px;
border-bottom: var(--border);
}
.core_Dialog_description {
user-select: text;
cursor: text;
}
.core_Dialog_body {
flex: 1;
margin: 4px 0;
}
.core_Dialog_footer {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.core_Dialog_footer > * {
margin-left: 2px;
}
.core_Dialog_modal_overlay {
outline: none;
z-index: 10;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: black;
opacity: 50%;
backdrop-filter: blur(5px);
}