2024-07-26 13:39:01 +02:00
|
|
|
|
|
|
|
.dialog-modal-layer {
|
|
|
|
display: flex;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: center;
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
|
2024-08-03 17:43:16 +02:00
|
|
|
&:not([open]) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-07-26 13:39:01 +02:00
|
|
|
> .content {
|
|
|
|
background-color: var(--joplin-background-color);
|
2024-07-31 15:10:58 +02:00
|
|
|
color: var(--joplin-color);
|
2024-07-26 13:39:01 +02:00
|
|
|
padding: 16px;
|
|
|
|
box-shadow: 6px 6px 20px rgba(0,0,0,0.5);
|
|
|
|
margin: 20px;
|
|
|
|
min-height: fit-content;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::backdrop {
|
2024-07-31 15:10:58 +02:00
|
|
|
background-color: rgba(0,0,0,0.5);
|
2024-07-26 13:39:01 +02:00
|
|
|
}
|
2024-11-08 17:32:05 +02:00
|
|
|
|
|
|
|
&.-fullscreen {
|
|
|
|
&::backdrop {
|
|
|
|
background-color: var(--joplin-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
2024-07-26 13:39:01 +02:00
|
|
|
}
|