Make stylelint happy

This commit is contained in:
Christian Wolf 2024-01-13 20:32:38 +01:00
parent 77a6636bb0
commit 5b8cb1031e

View File

@ -160,15 +160,17 @@ h1 {
.calendar-manual { .calendar-manual {
font-size: xx-small; font-size: xx-small;
@include media-large() { @include media-large {
font-size: small; font-size: small;
} }
tr { tr {
height: 20px; height: 20px;
&.first-min { &.first-min {
border-top: solid lightgray 1px; border-top: solid lightgray 1px;
} }
&:nth-of-type(n) { &:nth-of-type(n) {
background-color: unset; background-color: unset;
} }
@ -185,8 +187,10 @@ h1 {
text-align: center; text-align: center;
} }
} }
.calendar-block { .calendar-block {
position: relative; position: relative;
.calendar-block-entity { .calendar-block-entity {
position: absolute; position: absolute;
top: 0; top: 0;
@ -199,24 +203,31 @@ h1 {
&.height-1 { &.height-1 {
height: 20px; height: 20px;
} }
&.height-2 { &.height-2 {
height: 40px; height: 40px;
} }
&.height-3 { &.height-3 {
height: 60px; height: 60px;
} }
&.height-4 { &.height-4 {
height: 80px; height: 80px;
} }
&.height-5 { &.height-5 {
height: 100px; height: 100px;
} }
&.height-6 { &.height-6 {
height: 120px; height: 120px;
} }
&.height-7 { &.height-7 {
height: 140px; height: 140px;
} }
&.height-8 { &.height-8 {
height: 160px; height: 160px;
} }
@ -228,12 +239,15 @@ h1 {
padding: 3px; padding: 3px;
overflow: hidden; overflow: hidden;
} }
.room-vorne { .room-vorne {
background-color: var(--color-vhvorne); background-color: var(--color-vhvorne);
} }
.room-mitte { .room-mitte {
background-color: var(--color-vhmitte); background-color: var(--color-vhmitte);
} }
.room-hinten { .room-hinten {
background-color: var(--color-vhhinten); background-color: var(--color-vhhinten);
color: white; color: white;
@ -871,11 +885,12 @@ table.time {
} }
} }
@include media-large() { @include media-large {
display: table; display: table;
tr { tr {
display: table-row; display: table-row;
&:first-child { &:first-child {
display: table-row; display: table-row;
} }
@ -883,7 +898,7 @@ table.time {
} }
&.time-age, &.time-no-age { &.time-age, &.time-no-age {
tr td:nth-child(n):before { tr td:nth-child(n)::before {
content: none; content: none;
} }
} }