Console: Conditionally display 'reload css' if file exists;

display error if attempted when file has been removed
This commit is contained in:
dr|z3d 2021-08-12 11:53:42 +00:00
parent d645b4ef8e
commit b7151e972b
2 changed files with 38 additions and 17 deletions

View file

@ -91,8 +91,8 @@ body {
text-align: center;
font: 14pt var(--bodyfont);
color: var(--ink);
background: radial-gradient(circle at center, rgba(48,0,48,.4), rgba(0,0,0,0)),
linear-gradient(to bottom, rgba(0,0,0,.3), rgba(32,0,32,.6), rgba(0,0,0,.3));
background: radial-gradient(circle at center, rgba(48,0,48,.3), rgba(0,0,0,.05)),
linear-gradient(to bottom, rgba(0,0,0,.3), rgba(32,0,32,.6), rgba(0,0,0,.3)), var(--page);
}
.wrapper {
@ -512,6 +512,10 @@ td:last-child {
background: linear-gradient(to bottom, rgba(32,0,32,.5), rgba(4,0,4,.7));
}
.toast + .toast {
display: none;
}
#warning, #success {
margin: -5px 0 10px;
width: 100%;
@ -965,6 +969,10 @@ input[type=checkbox]:checked + label::after {
opacity: .9;
}
.slide label:active::after {
transform: scale(.9);
}
.slide table {
width: 100%;
}