Merge develop

This commit is contained in:
Pieter Vander Vennet 2023-10-17 16:57:49 +02:00
commit 553ee6d5aa
165 changed files with 6745 additions and 1720 deletions

View file

@ -1054,6 +1054,11 @@ video {
height: 8rem;
}
.h-min {
height: -webkit-min-content;
height: min-content;
}
.h-8 {
height: 2rem;
}
@ -1100,14 +1105,22 @@ video {
height: 12rem;
}
.h-40 {
height: 10rem;
.h-56 {
height: 14rem;
}
.h-20 {
height: 5rem;
}
.h-10 {
height: 2.5rem;
}
.h-40 {
height: 10rem;
}
.h-80 {
height: 20rem;
}
@ -1124,14 +1137,14 @@ video {
max-height: 3rem;
}
.max-h-7 {
max-height: 1.75rem;
}
.max-h-24 {
max-height: 6rem;
}
.max-h-7 {
max-height: 1.75rem;
}
.max-h-screen {
max-height: 100vh;
}
@ -1771,6 +1784,10 @@ video {
padding-right: 0.25rem;
}
.pb-10 {
padding-bottom: 2.5rem;
}
.pb-2 {
padding-bottom: 0.5rem;
}
@ -2459,7 +2476,6 @@ select:hover {
.subtle {
/* For all information that is not important for 99% of the users */
color: #999;
font-size: medium;
font-weight: normal;
}

View file

@ -19,7 +19,7 @@
}
.oh-timecell {
background-color: white;
background: white;
position: relative;
box-sizing: border-box;
}
@ -27,32 +27,38 @@
.oh-table th {
font-weight: bold;
font-size: medium;
background-color: #ddd;
background: #ddd;
}
.oh-table td {
vertical-align: top;
}
.oh-timecell:hover {
background-color: var(--catch-detail-color) !important;
.oh-timecell:hover, .oh-timecell-half:hover {
background: var(--catch-detail-color) !important;
}
.oh-timecell-selected {
background-color: var(--catch-detail-color);
background: var(--catch-detail-color);
}
.oh-timecell.oh-timecell-5:not(.oh-timecell-half), .oh-timecell.oh-timecell-6:not(.oh-timecell-half) {
background: repeating-linear-gradient(-65deg, var(--background-color) 0 4.8px, var(--subtle-detail-color) 7px)
}
.oh-timecell-half {
border-bottom: 1px solid #ddd;
background-color: var(--subtle-detail-color);
background: var(--subtle-detail-color);
}
.oh-timecell-half.oh-timecell-selected {
background-color: var(--catch-detail-color);
background: var(--catch-detail-color);
}
.oh-table tr {
background: #ddd;
}
@ -81,7 +87,7 @@
}
.oh-timecol-selected > span {
background-color: var(--catch-detail-color);
background: var(--catch-detail-color);
color: var(--background-color);
width: 100%;
display: block;