Add blocked rooms

This commit is contained in:
Lars Westermann 2019-06-12 12:18:29 +02:00
parent 4aeb97a79e
commit d8c770054d
Signed by: lars.westermann
GPG key ID: 9D417FA5BB9D5E1D
24 changed files with 396 additions and 84 deletions

View file

@ -161,6 +161,10 @@
}
}
.calendar-cell[data-blocked = "true"] {
background-color: var(--table-header-color) !important;
}
.calendar-tools {
position: absolute;
top: -5rem;

View file

@ -160,4 +160,48 @@
position: absolute !important;
top: 0.6rem;
left: 6rem;
}
}
.room-constraints {
position: relative;
& > label {
margin-bottom: 0.8rem;
}
.input-group {
margin-bottom: 0.5rem;
span {
width: 8rem;
flex-basis: 8rem;
flex-grow: 0;
position: relative;
text-align: center;
overflow: hidden;
&:hover::after {
content: 'LÖSCHEN';
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
font-weight: bold;
color: var(--primary-text-color);
background: var(--primary-color);
}
}
.form-control {
width: 12rem;
}
}
}
.room-constraints-add {
position: absolute;
top: -0.5rem;
right: 0;
}