mirror of
https://github.com/smartyellow/status.git
synced 2025-01-18 21:47:58 +00:00
93 lines
1.6 KiB
Svelte
93 lines
1.6 KiB
Svelte
<script>
|
|
import { settings } from './lib';
|
|
|
|
export let title = '';
|
|
export let open = false;
|
|
|
|
function close() {
|
|
open = false;
|
|
}
|
|
|
|
function keyup(event) {
|
|
if (event.key === 'Escape') {
|
|
close();
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<svelte:window on:keyup={keyup} />
|
|
|
|
<div class="modal-bg theme-{$settings.theme}" class:open>
|
|
<div class="modal">
|
|
<div class="header">
|
|
<div class="title">{title}</div>
|
|
<button class="close" on:click={close}>×</button>
|
|
</div>
|
|
|
|
<div class="body">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.modal-bg {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding-top: 3rem;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: none;
|
|
z-index: 10;
|
|
}
|
|
|
|
.modal-bg.open {
|
|
display: flex;
|
|
}
|
|
|
|
.modal {
|
|
background-color: var(--tile-bg);
|
|
border-radius: var(--radius);
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
max-width: 500px;
|
|
z-index: 11;
|
|
color: var(--body-fg);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid var(--dark);
|
|
}
|
|
|
|
.header button.close {
|
|
margin-left: auto;
|
|
overflow-y: auto;
|
|
font-size: 1.5rem;
|
|
border-radius: var(--radius);
|
|
border-radius: 0 var(--radius) 0 0;
|
|
}
|
|
|
|
.header button.close:hover {
|
|
background-color: var(--dark);
|
|
}
|
|
|
|
.header .title {
|
|
font-weight: 600;
|
|
font-size: 1.4rem;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.body {
|
|
flex-grow: 1;
|
|
padding: 1rem;
|
|
}
|
|
</style>
|