webcron/assets/scss/job/index.scss
Jeroen De Meerleer f99cbfaf3e
ENHANCEMENT: a better dark theme
Because hot water appears to be invented already
2021-11-10 16:02:22 +01:00

52 lines
745 B
SCSS

@import "assets/scss/base";
@import "assets/scss/icons";
tr.norun td {
background-color: #f8d7da;
@media (prefers-color-scheme: dark) {
background-color: initial;
}
}
tr.running td {
background-color: #d4edda;
@media (prefers-color-scheme: dark) {
background-color: initial;
}
}
.big-icon {
font-size: 1.5rem;
}
td.status-col {
width: 54px;
}
.blur {
filter: blur(3px);
}
.runnow-overlay {
.runnow-blur {
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1500;
}
.runnow-content {
font-size: 10px;
height: 50px;
position: absolute;
text-align: center;
top: 50%;
width: 100px;
left: 50%;
margin-left: -50px;
margin-top: -50px;
}
}