webcron/assets/scss/job/index.scss

77 lines
1.1 KiB
SCSS
Raw Normal View History

2023-01-10 17:21:49 +01:00
@import "assets/scss/base";
@import "assets/scss/icons";
@import "/node_modules/@eonasdan/tempus-dominus/dist/css/tempus-dominus.css";
@import "assets/scss/tempus-dominus-dark";
tr.norun td {
2021-07-20 16:29:11 +02:00
background-color: #f8d7da;
@media (prefers-color-scheme: dark) {
background-color: initial;
}
}
2021-07-30 14:35:47 +02:00
tr.running td {
2021-07-20 16:29:11 +02:00
background-color: #d4edda;
@media (prefers-color-scheme: dark) {
background-color: initial;
}
2021-07-30 14:35:47 +02:00
}
.big-icon {
font-size: 1.5rem;
}
.tag {
display: inline-block;
padding: 0.25em 1em;
}
td.status-col {
width: 54px;
}
2021-07-30 14:35:47 +02:00
.blur {
filter: blur(3px);
}
2023-01-10 17:21:49 +01:00
.run-overlay {
.run-blur {
2021-07-30 14:35:47 +02:00
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1500;
}
2023-01-10 17:21:49 +01:00
.run-content {
2021-07-30 14:35:47 +02:00
font-size: 10px;
height: 50px;
position: absolute;
text-align: center;
top: 50%;
width: 100px;
left: 50%;
margin-left: -50px;
margin-top: -50px;
}
2023-01-10 17:21:49 +01:00
}
#run_selecttime {
.tempus-dominus-widget {
box-shadow: none;
&.timepicker-sbs {
width: 19em;
.td-row {
flex-direction: column;
.td-half {
width: 19em;
}
}
}
}
}