mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-04 15:50:12 +01:00
update under construction panel
This commit is contained in:
parent
6d10a433db
commit
27b4ec5871
|
|
@ -1411,4 +1411,32 @@ img.openwebrx-mirror-img
|
|||
|
||||
.dab-container .dab-ensemble-label:not(:empty):before {
|
||||
content: "Ensemble: ";
|
||||
}
|
||||
}
|
||||
|
||||
.under-construction {
|
||||
background-color: #ffd914;
|
||||
color: #111111;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.under-construction h4 {
|
||||
font-size: 15pt;
|
||||
}
|
||||
|
||||
.under-construction h4 {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
.under-construction p {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.under-construction-description {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
transition: max-height .2s ease-in-out;
|
||||
}
|
||||
|
||||
.under-construction:hover .under-construction-description {
|
||||
max-height: 500px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,9 +55,12 @@
|
|||
</div>
|
||||
<div id="openwebrx-panels-container">
|
||||
<div id="openwebrx-panels-container-left">
|
||||
<div class="openwebrx-panel" data-panel-name="client-under-devel" style="width: 245px; background-color: Red;">
|
||||
<span style="font-size: 15pt; font-weight: bold;">Under construction</span>
|
||||
<br />We're working on the code right now, so the application might fail.
|
||||
<div class="openwebrx-panel under-construction" data-panel-name="client-under-devel" style="width: 245px;">
|
||||
<h4>Under construction</h4>
|
||||
<div class="under-construction-description">
|
||||
<p>This receiver is running a development version of OpenWebRX. Additional features may be available, but there may also be bugs.</p>
|
||||
<p><a href="https://github.com/jketterl/openwebrx/issues" target="_blank">Issue tracker</a> | <a href="https://groups.io/g/openwebrx" target="_blank">Mailing list</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="openwebrx-panel" id="openwebrx-panel-digimodes" style="display: none; width: 619px;" data-panel-name="digimodes">
|
||||
<div id="openwebrx-digimode-canvas-container">
|
||||
|
|
|
|||
Loading…
Reference in a new issue