move the error overlay so it doesn't block the title menu buttons

This commit is contained in:
Jakob Ketterl
2021-05-17 21:14:00 +02:00
parent 970be58e9c
commit e206b83e74
2 changed files with 166 additions and 153 deletions

View File

@ -750,19 +750,19 @@ img.openwebrx-mirror-img
}
.openwebrx-overlay {
position: fixed;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
opacity: 0.8;
background-color: #777;
left: 0;
top: 0;
z-index: 1001;
color: white;
font-weight: bold;
font-size: 20pt;
position: absolute;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
opacity: 0.8;
background-color: #777;
left: 0;
top: 0;
z-index: 1001;
color: white;
font-weight: bold;
font-size: 20pt;
}
#openwebrx-autoplay-overlay
@ -1325,4 +1325,15 @@ img.openwebrx-mirror-img
#openwebrx-waterfall-colors-auto.highlighted .auto {
display: none;
}
.openwebrx-waterfall-container {
flex-grow: 1;
display: flex;
flex-direction: column;
position: relative;
}
.openwebrx-waterfall-container > * {
flex: 0 0 auto;
}