2014-11-29 00:07:10 +00:00
|
|
|
/*
|
|
|
|
|
2016-03-20 10:32:37 +00:00
|
|
|
This file is part of OpenWebRX,
|
2015-08-17 18:32:58 +00:00
|
|
|
an open-source SDR receiver software with a web UI.
|
|
|
|
Copyright (c) 2013-2015 by Andras Retzler <randras@sdr.hu>
|
2021-01-22 17:10:51 +00:00
|
|
|
Copyright (c) 2019-2021 by Jakob Ketterl <dd5jfk@darc.de>
|
2014-11-29 00:07:10 +00:00
|
|
|
|
2015-08-17 18:32:58 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
2014-11-29 00:07:10 +00:00
|
|
|
|
2015-08-17 18:32:58 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
2014-11-29 00:07:10 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-08-17 18:32:58 +00:00
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-11-29 00:07:10 +00:00
|
|
|
|
|
|
|
*/
|
2019-07-11 11:44:04 +00:00
|
|
|
@import url("openwebrx-header.css");
|
|
|
|
@import url("openwebrx-globals.css");
|
2014-11-29 00:07:10 +00:00
|
|
|
|
2019-07-11 14:49:06 +00:00
|
|
|
html, body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2018-09-25 12:56:47 +00:00
|
|
|
select
|
|
|
|
{
|
|
|
|
font-family: "DejaVu Sans", Verdana, Geneva, sans-serif;
|
|
|
|
}
|
|
|
|
|
2016-02-06 13:49:10 +00:00
|
|
|
input
|
|
|
|
{
|
|
|
|
vertical-align:middle;
|
|
|
|
}
|
|
|
|
|
2021-03-05 19:20:22 +00:00
|
|
|
input[type=range] {
|
2016-02-06 16:42:35 +00:00
|
|
|
-webkit-appearance: none;
|
2016-03-20 15:06:10 +00:00
|
|
|
margin: 0 0;
|
2021-03-05 19:20:22 +00:00
|
|
|
background: transparent !important;
|
2019-10-27 15:04:00 +00:00
|
|
|
--track-background: #B6B6B6;
|
2016-02-06 16:42:35 +00:00
|
|
|
}
|
2021-03-05 19:20:22 +00:00
|
|
|
|
|
|
|
input[type=range]:focus {
|
2016-02-06 16:42:35 +00:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-webkit-slider-runnable-track
|
|
|
|
{
|
2016-02-13 23:31:28 +00:00
|
|
|
height: 5px;
|
2016-02-06 16:42:35 +00:00
|
|
|
cursor: pointer;
|
|
|
|
animate: 0.2s;
|
|
|
|
box-shadow: 0px 0px 0px #000000;
|
|
|
|
background: #B6B6B6;
|
2016-02-13 23:31:28 +00:00
|
|
|
/*border-radius: 11px;*/
|
2016-02-06 16:42:35 +00:00
|
|
|
border: 1px solid #8A8A8A;
|
2019-10-27 15:04:00 +00:00
|
|
|
background: var(--track-background);
|
2016-02-06 16:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-webkit-slider-thumb
|
|
|
|
{
|
|
|
|
box-shadow: 1px 1px 1px #828282;
|
|
|
|
border: 1px solid #8A8A8A;
|
2016-02-13 23:31:28 +00:00
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
border-radius: 10px;
|
2016-02-06 16:42:35 +00:00
|
|
|
background: #FFFFFF;
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-appearance: none;
|
2016-02-13 23:31:28 +00:00
|
|
|
margin-top: -7px;
|
2016-02-06 16:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]:focus::-webkit-slider-runnable-track
|
|
|
|
{
|
|
|
|
background: #B6B6B6;
|
2019-10-27 15:04:00 +00:00
|
|
|
background: var(--track-background);
|
2016-02-06 16:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-moz-range-track
|
|
|
|
{
|
2016-02-13 23:31:28 +00:00
|
|
|
height: 3px;
|
2016-02-06 16:42:35 +00:00
|
|
|
cursor: pointer;
|
|
|
|
animate: 0.2s;
|
|
|
|
box-shadow: 0px 0px 0px #000000;
|
|
|
|
background: #B6B6B6;
|
2019-10-27 15:06:06 +00:00
|
|
|
background: var(--track-background);
|
2016-02-06 16:42:35 +00:00
|
|
|
border-radius: 11px;
|
|
|
|
border: 1px solid #8A8A8A;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-moz-range-thumb
|
|
|
|
{
|
|
|
|
box-shadow: 1px 1px 1px #828282;
|
|
|
|
border: 1px solid #8A8A8A;
|
2016-02-13 23:31:28 +00:00
|
|
|
height: 12px;
|
|
|
|
width: 12px;
|
|
|
|
border-radius: 10px;
|
2016-02-06 16:42:35 +00:00
|
|
|
background: #FFFFFF;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-ms-track
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
height: 7px;
|
|
|
|
cursor: pointer;
|
|
|
|
animate: 0.2s;
|
|
|
|
background: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-ms-fill-lower
|
|
|
|
{
|
|
|
|
background: #B6B6B6;
|
|
|
|
border: 1px solid #8A8A8A;
|
|
|
|
border-radius: 22px;
|
|
|
|
box-shadow: 0px 0px 0px #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-ms-fill-upper
|
|
|
|
{
|
|
|
|
background: #B6B6B6;
|
|
|
|
border: 1px solid #8A8A8A;
|
|
|
|
border-radius: 22px;
|
|
|
|
box-shadow: 0px 0px 0px #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]::-ms-thumb
|
|
|
|
{
|
|
|
|
box-shadow: 1px 1px 1px #828282;
|
|
|
|
border: 1px solid #8A8A8A;
|
|
|
|
height: 24px;
|
|
|
|
width: 7px;
|
|
|
|
border-radius: 0px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]:focus::-ms-fill-lower
|
|
|
|
{
|
|
|
|
background: #B6B6B6;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=range]:focus::-ms-fill-upper
|
|
|
|
{
|
|
|
|
background: #B6B6B6;
|
|
|
|
}
|
|
|
|
|
2020-05-03 17:55:48 +00:00
|
|
|
input[type=range]:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2014-11-29 00:07:10 +00:00
|
|
|
#webrx-page-container
|
|
|
|
{
|
2019-10-26 19:32:00 +00:00
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2014-11-29 00:07:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-scale-container
|
|
|
|
{
|
|
|
|
height: 47px;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index:1000;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-09-29 13:48:24 +00:00
|
|
|
#openwebrx-frequency-container {
|
|
|
|
background-image: url("../gfx/openwebrx-scale-background.png");
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-size: cover;
|
|
|
|
background-color: #444;
|
2019-11-14 14:31:44 +00:00
|
|
|
z-index: 1001;
|
2019-09-29 13:48:24 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 23:57:34 +00:00
|
|
|
#openwebrx-bookmarks-container
|
|
|
|
{
|
|
|
|
height: 25px;
|
|
|
|
position: relative;
|
2019-09-28 14:51:34 +00:00
|
|
|
z-index: 1000;
|
2019-09-27 23:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-bookmarks-container .bookmark {
|
2019-09-28 01:03:41 +00:00
|
|
|
font-size: 12px;
|
2019-09-27 23:57:34 +00:00
|
|
|
background-color: #FFFF00;
|
|
|
|
border: 1px solid #000;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 2px 5px;
|
|
|
|
cursor: pointer;
|
2019-09-28 00:34:58 +00:00
|
|
|
white-space: nowrap;
|
2019-09-29 12:48:36 +00:00
|
|
|
max-height: 14px;
|
|
|
|
max-width: 50px;
|
2019-09-27 23:57:34 +00:00
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
bottom: 5px;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
|
2019-09-29 12:48:36 +00:00
|
|
|
#openwebrx-bookmarks-container .bookmark .bookmark-content {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-bookmarks-container .bookmark .bookmark-actions {
|
|
|
|
display: none;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-actions .action {
|
|
|
|
line-height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-actions .action img {
|
|
|
|
width: 14px;
|
|
|
|
}
|
|
|
|
|
2019-09-28 00:21:29 +00:00
|
|
|
#openwebrx-bookmarks-container .bookmark.selected {
|
2019-09-28 14:51:34 +00:00
|
|
|
z-index: 1010;
|
2019-09-28 00:21:29 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 23:57:34 +00:00
|
|
|
#openwebrx-bookmarks-container .bookmark:hover {
|
2019-09-28 14:51:34 +00:00
|
|
|
z-index: 1011;
|
2019-09-29 12:48:36 +00:00
|
|
|
max-height: none;
|
|
|
|
max-width: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-bookmarks-container .bookmark[editable]:hover .bookmark-actions {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
2019-09-27 23:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-bookmarks-container .bookmark:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border: 5px solid transparent;
|
|
|
|
border-top-color: #FFFF00;
|
|
|
|
border-bottom: 0;
|
|
|
|
margin-left: -5px;
|
|
|
|
margin-bottom: -5px;
|
|
|
|
}
|
|
|
|
|
2019-09-28 18:28:25 +00:00
|
|
|
#openwebrx-bookmarks-container .bookmark[data-source=local] {
|
|
|
|
background-color: #0FF;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-bookmarks-container .bookmark[data-source=local]:after {
|
|
|
|
border-top-color: #0FF;
|
|
|
|
}
|
|
|
|
|
2019-10-12 15:14:28 +00:00
|
|
|
#openwebrx-bookmarks-container .bookmark[data-source=dial_frequencies] {
|
|
|
|
background-color: #0F0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-bookmarks-container .bookmark[data-source=dial_frequencies]:after {
|
|
|
|
border-top-color: #0F0;
|
|
|
|
}
|
|
|
|
|
2019-11-01 18:48:08 +00:00
|
|
|
#webrx-canvas-background {
|
2019-10-26 19:32:00 +00:00
|
|
|
flex-grow: 1;
|
2019-07-11 11:44:04 +00:00
|
|
|
background-image: url('../gfx/openwebrx-background-cool-blue.png');
|
2014-11-29 00:07:10 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: #1e5f7f;
|
2019-10-06 12:22:49 +00:00
|
|
|
background-size: cover;
|
2019-11-26 21:06:13 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-11-01 18:48:08 +00:00
|
|
|
}
|
|
|
|
|
2020-09-04 23:10:08 +00:00
|
|
|
@supports(background-image: -webkit-image-set(url('../gfx/openwebrx-background-cool-blue.webp') 1x)) {
|
|
|
|
#webrx-canvas-background {
|
|
|
|
background-image: -webkit-image-set(url('../gfx/openwebrx-background-cool-blue.webp') 1x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports(background-image: image-set(url('../gfx/openwebrx-background-cool-blue.webp') 1x)) {
|
|
|
|
#webrx-canvas-background {
|
|
|
|
background-image: image-set(url('../gfx/openwebrx-background-cool-blue.webp') 1x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-01 18:48:08 +00:00
|
|
|
#webrx-canvas-container
|
|
|
|
{
|
|
|
|
position: relative;
|
2019-11-26 20:35:22 +00:00
|
|
|
overflow: visible;
|
2014-11-29 00:07:10 +00:00
|
|
|
cursor: crosshair;
|
2019-11-26 21:06:13 +00:00
|
|
|
flex-grow: 1;
|
2014-11-29 00:07:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#webrx-canvas-container canvas
|
|
|
|
{
|
|
|
|
position: absolute;
|
2021-02-27 16:23:03 +00:00
|
|
|
top: 0;
|
2014-11-29 00:07:10 +00:00
|
|
|
border-style: none;
|
2015-08-17 18:32:58 +00:00
|
|
|
image-rendering: crisp-edges;
|
|
|
|
image-rendering: -webkit-optimize-contrast;
|
2019-11-01 18:48:08 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
2021-02-27 16:06:53 +00:00
|
|
|
will-change: transform;
|
2018-09-25 12:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-log-scroll
|
2014-11-29 00:07:10 +00:00
|
|
|
{
|
2018-09-25 12:56:47 +00:00
|
|
|
/*overflow-y:auto;*/
|
|
|
|
height: 125px;
|
|
|
|
width: 619px
|
|
|
|
}
|
|
|
|
|
|
|
|
.nano .nano-pane { background: #444; }
|
|
|
|
.nano .nano-slider { background: #eee !important; }
|
2014-11-29 00:07:10 +00:00
|
|
|
|
|
|
|
.webrx-error
|
|
|
|
{
|
|
|
|
font-weight: bold;
|
|
|
|
color: #ff6262;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
2020-01-19 15:09:56 +00:00
|
|
|
font-family: 'roboto-mono';
|
2020-09-12 17:01:51 +00:00
|
|
|
src: url('../fonts/RobotoMono-Regular.woff2') format('woff2'),
|
|
|
|
url('../fonts/RobotoMono-Regular.woff') format('woff'),
|
|
|
|
url('../fonts/RobotoMono-Regular.ttf') format('truetype');
|
2014-11-29 00:07:10 +00:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2020-05-01 22:05:20 +00:00
|
|
|
.webrx-actual-freq {
|
2014-11-29 00:07:10 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2020-02-01 21:25:16 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-03-30 23:40:35 +00:00
|
|
|
cursor: pointer;
|
2020-02-01 21:25:16 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 22:05:20 +00:00
|
|
|
.webrx-actual-freq > * {
|
2020-02-01 21:25:16 +00:00
|
|
|
flex: 1;
|
2020-01-25 21:35:44 +00:00
|
|
|
}
|
2016-03-20 10:32:37 +00:00
|
|
|
|
2021-02-28 16:28:22 +00:00
|
|
|
.webrx-actual-freq .input-group {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.webrx-actual-freq .input-group > * {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.webrx-actual-freq .input-group input {
|
|
|
|
flex: 1 0 auto;
|
2021-02-28 17:07:25 +00:00
|
|
|
margin-right: 0;
|
|
|
|
border-right: 1px solid #373737;
|
2021-04-28 21:03:03 +00:00
|
|
|
-moz-appearance: textfield;
|
|
|
|
}
|
|
|
|
|
|
|
|
.webrx-actual-freq .input-group input::-webkit-outer-spin-button,
|
|
|
|
.webrx-actual-freq .input-group input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
2021-02-28 17:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-group > :not(:last-child) {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group > :not(:first-child) {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group :first-child {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group :last-child {
|
|
|
|
padding-right: 5px
|
|
|
|
}
|
|
|
|
|
|
|
|
.webrx-actual-freq .input-group input, .webrx-actual-freq .input-group select {
|
|
|
|
outline: none;
|
|
|
|
font-size: 16pt;
|
2021-02-28 16:28:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 22:05:20 +00:00
|
|
|
.webrx-actual-freq input {
|
2020-01-25 21:35:44 +00:00
|
|
|
font-family: 'roboto-mono';
|
2020-02-01 21:25:16 +00:00
|
|
|
width: 0;
|
2020-01-25 21:35:44 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
2020-02-01 21:25:16 +00:00
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
2020-01-25 21:35:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 22:05:20 +00:00
|
|
|
.webrx-actual-freq, .webrx-actual-freq input {
|
2020-01-25 21:35:44 +00:00
|
|
|
font-size: 16pt;
|
|
|
|
font-family: 'roboto-mono';
|
2014-11-29 00:07:10 +00:00
|
|
|
}
|
|
|
|
|
2021-03-30 23:38:53 +00:00
|
|
|
.webrx-actual-freq .digit {
|
|
|
|
cursor: ns-resize;
|
|
|
|
}
|
|
|
|
|
2020-08-30 20:19:43 +00:00
|
|
|
.webrx-actual-freq .digit:hover {
|
|
|
|
color: #FFFF50;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.0 , #373737), color-stop(1, #4F4F4F) );
|
|
|
|
background: -moz-linear-gradient( center top, #373737 0%, #4F4F4F 100% );
|
|
|
|
}
|
|
|
|
|
2020-05-01 22:05:20 +00:00
|
|
|
.webrx-mouse-freq {
|
2014-11-29 00:07:10 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 10pt;
|
|
|
|
color: #AAA;
|
2020-01-19 15:09:56 +00:00
|
|
|
font-family: 'roboto-mono';
|
2014-11-29 00:07:10 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2019-10-26 19:32:00 +00:00
|
|
|
#openwebrx-panels-container-left,
|
|
|
|
#openwebrx-panels-container-right {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
2019-11-01 17:47:33 +00:00
|
|
|
height: 0;
|
|
|
|
overflow: visible;
|
2019-10-26 19:32:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panels-container-left {
|
|
|
|
left: 0;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panels-container-right {
|
|
|
|
right: 0;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
2016-03-20 10:32:37 +00:00
|
|
|
|
2014-11-29 00:07:10 +00:00
|
|
|
.openwebrx-panel
|
|
|
|
{
|
2018-09-25 12:56:47 +00:00
|
|
|
transform: perspective( 600px ) rotateX( 90deg );
|
2014-11-29 00:07:10 +00:00
|
|
|
background-color: #575757;
|
|
|
|
padding: 10px;
|
|
|
|
color: white;
|
|
|
|
font-size: 10pt;
|
|
|
|
border-radius: 15px;
|
|
|
|
-moz-border-radius: 15px;
|
2019-10-26 19:32:00 +00:00
|
|
|
margin: 5.9px;
|
2020-04-14 19:12:25 +00:00
|
|
|
box-sizing: content-box;
|
2014-11-29 00:07:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-panel a
|
|
|
|
{
|
|
|
|
color: #5ca8ff;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-panel-inner
|
|
|
|
{
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-button
|
|
|
|
{
|
|
|
|
background-color: #373737;
|
2018-09-25 12:56:47 +00:00
|
|
|
padding: 4.2px;
|
2014-11-29 00:07:10 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
color: White;
|
|
|
|
font-weight: bold;
|
2016-02-13 23:31:28 +00:00
|
|
|
margin-right: 1px;
|
2014-11-29 00:07:10 +00:00
|
|
|
cursor: pointer;
|
|
|
|
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.0 , #373737), color-stop(1, #4F4F4F) );
|
|
|
|
background:-moz-linear-gradient( center top, #373737 0%, #4F4F4F 100% );
|
2015-08-17 18:32:58 +00:00
|
|
|
user-select: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
2016-02-13 23:31:28 +00:00
|
|
|
display: inline-block;
|
2014-11-29 00:07:10 +00:00
|
|
|
}
|
|
|
|
|
2020-09-12 20:06:12 +00:00
|
|
|
.openwebrx-button:hover, .openwebrx-demodulator-button.highlighted, .openwebrx-button.highlighted
|
2014-11-29 00:07:10 +00:00
|
|
|
{
|
|
|
|
/*background:-webkit-gradient( linear, left top, left bottom, color-stop(0.0 , #3F3F3F), color-stop(1, #777777) );
|
|
|
|
background:-moz-linear-gradient( center top, #373737 5%, #4F4F4F 100% );*/
|
|
|
|
background: #474747;
|
|
|
|
color: #FFFF50;
|
|
|
|
}
|
|
|
|
|
2016-03-20 10:32:37 +00:00
|
|
|
.openwebrx-button:active
|
2014-11-29 00:07:10 +00:00
|
|
|
{
|
|
|
|
background: #777777;
|
2016-03-20 10:32:37 +00:00
|
|
|
color: #FFFF50;
|
2014-11-29 00:07:10 +00:00
|
|
|
}
|
|
|
|
|
2019-10-03 22:17:40 +00:00
|
|
|
.openwebrx-button:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-03 17:55:48 +00:00
|
|
|
.openwebrx-button.disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2016-03-20 10:32:37 +00:00
|
|
|
.openwebrx-demodulator-button
|
|
|
|
{
|
|
|
|
height: 19px;
|
|
|
|
font-size: 12pt;
|
|
|
|
text-align: center;
|
2019-10-03 22:17:40 +00:00
|
|
|
flex: 1;
|
|
|
|
margin-right: 5px;
|
2016-03-20 10:32:37 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 21:34:34 +00:00
|
|
|
.openwebrx-demodulator-button.same-mod {
|
|
|
|
color: #FFC;
|
2020-04-26 16:45:41 +00:00
|
|
|
}
|
|
|
|
|
2016-03-20 10:32:37 +00:00
|
|
|
.openwebrx-square-button img
|
|
|
|
{
|
2018-09-25 12:56:47 +00:00
|
|
|
height: 27px;
|
2016-03-20 10:32:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-round-button
|
|
|
|
{
|
|
|
|
margin-right: -2px;
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
border-radius: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-round-button img
|
|
|
|
{
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-round-button-small
|
|
|
|
{
|
|
|
|
margin-right: -3px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-round-button-small img
|
|
|
|
{
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.openwebrx-mirror-img
|
|
|
|
{
|
|
|
|
transform: scale(-1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.openwebrx-round-rightarrow img
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
left: 12px;
|
|
|
|
top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-round-leftarrow img
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
left: 7px;
|
|
|
|
top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-client-log-title
|
2014-11-29 00:07:10 +00:00
|
|
|
{
|
|
|
|
margin-bottom: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2015-08-17 18:32:58 +00:00
|
|
|
|
|
|
|
.openwebrx-progressbar
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #003850; /*#006235;*/
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 8pt;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: 0px 0px 4px #000000;
|
|
|
|
cursor: default;
|
|
|
|
user-select: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
2020-12-28 19:55:02 +00:00
|
|
|
overflow: hidden;
|
2021-02-15 17:00:46 +00:00
|
|
|
z-index: 1
|
2015-08-17 18:32:58 +00:00
|
|
|
}
|
|
|
|
|
2020-12-28 19:55:02 +00:00
|
|
|
.openwebrx-progressbar-bar {
|
|
|
|
background-color: #00aba6;
|
2015-08-17 18:32:58 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2021-01-02 16:53:54 +00:00
|
|
|
transition-property: transform, background-color;
|
2020-12-28 19:55:02 +00:00
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-in-out;
|
2021-01-02 16:53:54 +00:00
|
|
|
transform: translate(-100%) translateZ(0);
|
|
|
|
will-change: transform, background-color;
|
2021-02-15 17:00:46 +00:00
|
|
|
z-index: 0;
|
2020-12-28 19:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-progressbar--over .openwebrx-progressbar-bar {
|
|
|
|
background-color: #ff6262;
|
2015-08-17 18:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-progressbar-text
|
|
|
|
{
|
|
|
|
position: absolute;
|
2021-02-15 16:33:47 +00:00
|
|
|
left:50%;
|
2021-01-15 18:33:55 +00:00
|
|
|
top:50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
white-space: nowrap;
|
2021-02-15 17:00:46 +00:00
|
|
|
z-index: 2;
|
2015-08-17 18:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-status
|
|
|
|
{
|
2019-10-26 19:32:00 +00:00
|
|
|
margin: 0 0 0 5.9px;
|
2015-08-17 18:32:58 +00:00
|
|
|
padding: 0px;
|
|
|
|
background-color:rgba(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-status div.openwebrx-progressbar
|
|
|
|
{
|
|
|
|
width: 200px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
2016-02-06 16:42:35 +00:00
|
|
|
#openwebrx-panel-receiver
|
|
|
|
{
|
|
|
|
width:110px;
|
|
|
|
}
|
2016-02-06 13:49:10 +00:00
|
|
|
|
2019-09-28 14:50:21 +00:00
|
|
|
|
|
|
|
#openwebrx-panel-receiver .frequencies-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-02-28 17:07:25 +00:00
|
|
|
gap: 5px;
|
2019-09-28 14:50:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-receiver .frequencies {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-receiver .openwebrx-bookmark-button {
|
|
|
|
width: 27px;
|
|
|
|
height: 27px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-11-20 04:37:27 +00:00
|
|
|
.openwebrx-panel-listbox
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
top: 0px;
|
|
|
|
width: 95px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
2016-03-20 10:32:37 +00:00
|
|
|
.openwebrx-panel-slider
|
2016-02-06 16:42:35 +00:00
|
|
|
{
|
2022-11-20 04:37:27 +00:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
width: 95px;
|
2016-02-13 23:31:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-panel-line
|
|
|
|
{
|
2022-11-20 04:37:27 +00:00
|
|
|
padding-top: 5px;
|
2016-02-06 16:42:35 +00:00
|
|
|
}
|
2016-03-20 15:06:10 +00:00
|
|
|
|
2019-10-03 22:17:40 +00:00
|
|
|
.openwebrx-panel-flex-line {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2019-09-28 14:50:21 +00:00
|
|
|
.openwebrx-panel-line:first-child {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2020-08-12 17:44:33 +00:00
|
|
|
.openwebrx-modes-grid {
|
2020-08-12 20:14:02 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
2020-08-13 17:39:56 +00:00
|
|
|
margin: -5px -5px 0 0;
|
2020-08-12 17:44:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-modes-grid .openwebrx-demodulator-button {
|
|
|
|
margin: 0;
|
|
|
|
white-space: nowrap;
|
2020-08-12 20:14:02 +00:00
|
|
|
flex: 1 0 38px;
|
2020-08-13 17:39:56 +00:00
|
|
|
margin: 5px 5px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports(gap: 5px) {
|
|
|
|
.openwebrx-modes-grid {
|
|
|
|
margin: 0;
|
|
|
|
gap: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-modes-grid .openwebrx-demodulator-button {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-08-12 17:44:33 +00:00
|
|
|
}
|
|
|
|
|
2021-01-02 17:16:25 +00:00
|
|
|
#openwebrx-smeter {
|
2016-03-20 15:06:10 +00:00
|
|
|
border-color: #888;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0px;
|
|
|
|
width: 255px;
|
|
|
|
height: 7px;
|
|
|
|
background-color: #373737;
|
|
|
|
border-radius: 3px;
|
2021-01-02 17:16:25 +00:00
|
|
|
overflow: hidden;
|
2016-03-20 15:06:10 +00:00
|
|
|
}
|
2021-01-02 17:16:25 +00:00
|
|
|
|
|
|
|
.openwebrx-smeter-bar {
|
|
|
|
transition-property: transform;
|
|
|
|
transition-duration: 0.2s;
|
|
|
|
transition-timing-function: linear;
|
|
|
|
will-change: transform;
|
|
|
|
transform: translate(-100%) translateZ(0);
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-03-20 15:06:10 +00:00
|
|
|
background: linear-gradient(to top, #ff5939 , #961700);
|
2021-01-02 17:16:25 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2016-03-20 15:06:10 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-smeter-db
|
|
|
|
{
|
|
|
|
color: #aaa;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 10pt;
|
|
|
|
float: right;
|
|
|
|
margin-right: 5px;
|
2018-09-25 12:56:47 +00:00
|
|
|
margin-top: 24px;
|
2020-01-19 15:09:56 +00:00
|
|
|
font-family: 'roboto-mono';
|
2016-03-20 15:06:10 +00:00
|
|
|
}
|
2016-03-26 23:47:26 +00:00
|
|
|
|
2019-12-21 22:46:05 +00:00
|
|
|
.openwebrx-overlay {
|
2021-05-17 19:14:00 +00:00
|
|
|
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;
|
2019-12-21 22:46:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-autoplay-overlay
|
|
|
|
{
|
2016-03-26 23:47:26 +00:00
|
|
|
cursor: pointer;
|
|
|
|
transition: opacity 0.3s linear;
|
|
|
|
}
|
|
|
|
|
2021-05-16 15:47:02 +00:00
|
|
|
#openwebrx-autoplay-overlay svg {
|
2016-03-26 23:47:26 +00:00
|
|
|
width: 150px;
|
|
|
|
}
|
2018-09-25 12:56:47 +00:00
|
|
|
|
2019-12-21 22:46:05 +00:00
|
|
|
.openwebrx-overlay .overlay-content {
|
2019-11-01 15:58:36 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2019-12-21 22:46:05 +00:00
|
|
|
#openwebrx-error-overlay .overlay-content {
|
|
|
|
background-color: #000;
|
|
|
|
padding: 50px;
|
|
|
|
border-radius: 20px;
|
|
|
|
}
|
|
|
|
|
2018-09-25 12:56:47 +00:00
|
|
|
#openwebrx-digimode-canvas-container
|
|
|
|
{
|
|
|
|
/*margin: -10px -10px 10px -10px;*/
|
|
|
|
margin: -10px -10px 0px -10px;
|
|
|
|
border-radius: 15px;
|
|
|
|
height: 150px;
|
|
|
|
background-color: #333;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-digimode-canvas-container canvas
|
|
|
|
{
|
|
|
|
position: absolute;
|
2021-02-27 16:23:03 +00:00
|
|
|
top: 0;
|
2018-09-25 12:56:47 +00:00
|
|
|
pointer-events: none;
|
|
|
|
transition: width 500ms, left 500ms;
|
2021-02-27 16:06:53 +00:00
|
|
|
will-change: transform;
|
2018-09-25 12:56:47 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 17:20:21 +00:00
|
|
|
.openwebrx-panel select,
|
2021-02-28 17:07:25 +00:00
|
|
|
.openwebrx-panel input,
|
2019-09-28 17:20:21 +00:00
|
|
|
.openwebrx-dialog select,
|
|
|
|
.openwebrx-dialog input {
|
2018-09-25 12:56:47 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #373737;
|
|
|
|
color: White;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 13pt;
|
|
|
|
margin-right: 1px;
|
2021-03-05 19:20:22 +00:00
|
|
|
background:linear-gradient(#373737, #4F4F4F);
|
2018-09-25 12:56:47 +00:00
|
|
|
border-color: transparent;
|
|
|
|
border-width: 0px;
|
2021-03-05 19:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@supports(-moz-appearance: none) {
|
|
|
|
.openwebrx-panel select,
|
|
|
|
.openwebrx-dialog select {
|
2021-03-05 19:31:23 +00:00
|
|
|
-moz-appearance: none;
|
2021-03-05 19:20:22 +00:00
|
|
|
background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%20%20xmlns%3Av%3D%22https%3A%2F%2Fvecta.io%2Fnano%22%3E%3Cpath%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8s-1.9-9.2-5.5-12.8z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E'),
|
|
|
|
linear-gradient(#373737, #4F4F4F);
|
|
|
|
background-repeat: no-repeat, repeat;
|
2021-03-05 19:31:23 +00:00
|
|
|
background-position: right .3em top 50%, 0 0;
|
2021-03-05 19:20:22 +00:00
|
|
|
background-size: .65em auto, 100%;
|
2021-03-05 19:31:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-panel .input-group select,
|
|
|
|
.openwebrx-dialog .input-group select {
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
2018-09-25 12:56:47 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 17:20:21 +00:00
|
|
|
.openwebrx-panel select option,
|
|
|
|
.openwebrx-dialog select option {
|
2018-09-25 12:56:47 +00:00
|
|
|
border-width: 0px;
|
|
|
|
background-color: #373737;
|
|
|
|
color: White;
|
|
|
|
}
|
|
|
|
|
2020-05-01 22:05:20 +00:00
|
|
|
.openwebrx-secondary-demod-listbox {
|
2019-08-12 09:05:32 +00:00
|
|
|
width: 173px;
|
2019-05-10 14:14:16 +00:00
|
|
|
height: 27px;
|
|
|
|
padding-left:3px;
|
2019-10-12 15:34:49 +00:00
|
|
|
flex: 4;
|
2019-05-10 14:14:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-sdr-profiles-listbox {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 10pt;
|
|
|
|
height: 27px;
|
|
|
|
}
|
|
|
|
|
2022-11-20 04:37:27 +00:00
|
|
|
#openwebrx-tuning-step-listbox {
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
|
2018-09-25 12:56:47 +00:00
|
|
|
#openwebrx-cursor-blink
|
|
|
|
{
|
|
|
|
animation: cursor-blink 1s infinite;
|
|
|
|
/*animation: cursor-3d 2s infinite;*/
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-direction: alternate;
|
|
|
|
height: 1em;
|
|
|
|
width: 8px;
|
|
|
|
background-color: White;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
/*perspective: 60px;*/
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes cursor-blink
|
|
|
|
{
|
|
|
|
0%{ opacity: 0; }
|
|
|
|
50% { opacity: 1; }
|
|
|
|
100%{ opacity: 0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes cursor-3d
|
|
|
|
{
|
|
|
|
0%{ transform: rotateX(0deg) rotateX(Ydeg); }
|
|
|
|
50% { transform: rotateX(180deg) rotateY(360deg); opacity: 0.1; }
|
|
|
|
100%{ transform: rotateX(360deg) rotateY(720deg); }
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-digimode-content
|
|
|
|
{
|
|
|
|
word-wrap: break-word;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-digimode-content-container
|
|
|
|
{
|
|
|
|
overflow-y: hidden;
|
|
|
|
display: block;
|
|
|
|
height: 50px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-digimode-content-container .gradient
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
height: 20px;
|
|
|
|
background: linear-gradient(to top, rgba(87,87,87,0) 0%,rgba(87,87,87,1) 100%);
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-digimode-select-channel
|
|
|
|
{
|
|
|
|
transition: all 500ms;
|
|
|
|
background-color: Yellow;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
height: 100%;
|
|
|
|
width: 0px;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
opacity: 0.7;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0px;
|
|
|
|
border-color: Red;
|
|
|
|
}
|
|
|
|
|
2021-01-16 18:40:22 +00:00
|
|
|
.openwebrx-meta-panel {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-01-16 21:32:48 +00:00
|
|
|
gap: 10px;
|
2021-02-14 23:04:43 +00:00
|
|
|
/* compatibility with iOS 14.2 */
|
|
|
|
flex: 0 0 auto;
|
2021-01-16 18:40:22 +00:00
|
|
|
}
|
|
|
|
|
2019-06-09 15:39:15 +00:00
|
|
|
.openwebrx-meta-slot {
|
2021-01-16 18:40:22 +00:00
|
|
|
flex: 1;
|
2019-06-15 12:48:57 +00:00
|
|
|
width: 145px;
|
|
|
|
height: 196px;
|
2019-06-09 13:15:27 +00:00
|
|
|
|
2019-06-15 12:48:57 +00:00
|
|
|
background-color: #676767;
|
|
|
|
padding: 2px 0;
|
2019-06-09 13:15:27 +00:00
|
|
|
color: #333;
|
2019-06-15 17:10:33 +00:00
|
|
|
|
|
|
|
text-align: center;
|
2021-01-16 18:46:39 +00:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-01-17 18:41:17 +00:00
|
|
|
position: relative;
|
2021-05-16 20:47:35 +00:00
|
|
|
overflow: hidden;
|
2021-01-16 18:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-meta-slot > * {
|
2021-06-18 07:31:02 +00:00
|
|
|
flex: 1 0 0;
|
2021-01-19 19:54:35 +00:00
|
|
|
line-height: 1.2em;
|
2019-06-15 17:10:33 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 20:47:35 +00:00
|
|
|
.openwebrx-meta-slot, .openwebrx-meta-slot .mute {
|
2019-06-09 13:15:27 +00:00
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
2019-06-15 12:48:57 +00:00
|
|
|
border-radius: 5px;
|
2019-06-15 17:10:33 +00:00
|
|
|
}
|
2019-06-15 12:48:57 +00:00
|
|
|
|
2021-05-16 20:47:35 +00:00
|
|
|
.openwebrx-meta-slot .mute {
|
|
|
|
display: none;
|
2019-06-15 17:50:09 +00:00
|
|
|
cursor: pointer;
|
2019-06-15 17:10:33 +00:00
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: rgba(0,0,0,.3);
|
2019-06-09 13:15:27 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 20:47:35 +00:00
|
|
|
.openwebrx-meta-slot .mute svg {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
transform: translate(0, -50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-meta-slot.muted .mute {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-06-09 15:39:15 +00:00
|
|
|
.openwebrx-meta-slot.active {
|
2019-06-09 13:15:27 +00:00
|
|
|
background-color: #95bbdf;
|
|
|
|
}
|
|
|
|
|
2019-06-15 10:30:04 +00:00
|
|
|
.openwebrx-meta-slot.sync .openwebrx-dmr-slot:before {
|
|
|
|
content:"";
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 5px;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background-color: #ABFF00;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #89FF00 0 2px 12px;
|
|
|
|
}
|
|
|
|
|
2019-06-15 12:48:57 +00:00
|
|
|
.openwebrx-meta-slot .openwebrx-meta-user-image {
|
2021-06-08 21:01:03 +00:00
|
|
|
flex: 0 1 100%;
|
2019-06-15 12:48:57 +00:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2021-05-16 20:47:35 +00:00
|
|
|
line-height: 0;
|
2021-06-08 21:01:03 +00:00
|
|
|
overflow: hidden;
|
2021-05-16 20:47:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-meta-slot .openwebrx-meta-user-image img {
|
2021-06-08 21:01:03 +00:00
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2021-05-16 20:47:35 +00:00
|
|
|
display: none;
|
2019-06-15 12:48:57 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 20:47:35 +00:00
|
|
|
.openwebrx-meta-slot.active.direct .openwebrx-meta-user-image .directcall,
|
2021-06-15 20:50:30 +00:00
|
|
|
.openwebrx-meta-slot.active.individual .openwebrx-meta-user-image .directcall,
|
2021-06-08 11:37:13 +00:00
|
|
|
#openwebrx-panel-metadata-ysf .openwebrx-meta-slot.active .openwebrx-meta-user-image .directcall,
|
2021-12-21 20:18:17 +00:00
|
|
|
#openwebrx-panel-metadata-dstar .openwebrx-meta-slot.active .openwebrx-meta-user-image .directcall,
|
|
|
|
#openwebrx-panel-metadata-m17 .openwebrx-meta-slot.active .openwebrx-meta-user-image .directcall {
|
2021-05-16 20:47:35 +00:00
|
|
|
display: initial;
|
2019-06-09 13:15:27 +00:00
|
|
|
}
|
|
|
|
|
2021-06-15 20:50:30 +00:00
|
|
|
.openwebrx-meta-slot.active.group .openwebrx-meta-user-image .groupcall,
|
|
|
|
.openwebrx-meta-slot.active.conference .openwebrx-meta-user-image .groupcall {
|
2021-05-16 20:47:35 +00:00
|
|
|
display: initial;
|
2019-06-09 20:27:35 +00:00
|
|
|
}
|
2019-06-15 17:10:33 +00:00
|
|
|
|
2021-01-19 19:54:35 +00:00
|
|
|
.openwebrx-meta-slot.group .openwebrx-dmr-target:not(:empty):before {
|
|
|
|
content: "Talkgroup: ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-meta-slot.direct .openwebrx-dmr-target:not(:empty):before {
|
|
|
|
content: "Direct: ";
|
|
|
|
}
|
|
|
|
|
2019-06-15 17:10:33 +00:00
|
|
|
.openwebrx-dmr-timeslot-panel * {
|
|
|
|
cursor: pointer;
|
2021-02-11 20:59:30 +00:00
|
|
|
user-select: none;
|
2019-06-15 17:10:33 +00:00
|
|
|
}
|
2019-06-19 21:16:57 +00:00
|
|
|
|
2021-01-18 23:36:55 +00:00
|
|
|
.openwebrx-ysf-mode:not(:empty):before {
|
|
|
|
content: "Mode: ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-ysf-up:not(:empty):before {
|
|
|
|
content: "Up: ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-ysf-down:not(:empty):before {
|
|
|
|
content: "Down: ";
|
|
|
|
}
|
|
|
|
|
2021-12-21 20:18:17 +00:00
|
|
|
.openwebrx-m17-source:not(:empty):before {
|
|
|
|
content: "SRC: ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-m17-destination:not(:empty):before {
|
|
|
|
content: "DEST: ";
|
|
|
|
}
|
|
|
|
|
2021-06-08 11:37:13 +00:00
|
|
|
.openwebrx-dstar-yourcall:not(:empty):before {
|
2021-06-09 21:28:07 +00:00
|
|
|
content: "UR: ";
|
2021-06-08 11:37:13 +00:00
|
|
|
}
|
|
|
|
|
2021-06-09 21:28:07 +00:00
|
|
|
.openwebrx-dstar-departure:not(:empty):before {
|
|
|
|
content: "RPT1: ";
|
2021-06-08 11:37:13 +00:00
|
|
|
}
|
|
|
|
|
2021-06-09 21:28:07 +00:00
|
|
|
.openwebrx-dstar-destination:not(:empty):before {
|
|
|
|
content: "RPT2: ";
|
2021-06-08 11:37:13 +00:00
|
|
|
}
|
|
|
|
|
2021-06-15 20:50:30 +00:00
|
|
|
.openwebrx-meta-slot.individual .openwebrx-nxdn-destination:not(:empty):before {
|
|
|
|
content: "Direct: ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-meta-slot.conference .openwebrx-nxdn-destination:not(:empty):before {
|
|
|
|
content: "Conference: ";
|
|
|
|
}
|
|
|
|
|
2021-05-16 15:30:34 +00:00
|
|
|
.openwebrx-maps-pin svg {
|
2019-06-19 21:16:57 +00:00
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
2021-06-08 15:55:56 +00:00
|
|
|
vertical-align: middle;
|
2019-06-19 21:16:57 +00:00
|
|
|
}
|
2019-07-06 19:04:18 +00:00
|
|
|
|
2020-04-19 20:10:32 +00:00
|
|
|
.openwebrx-message-panel {
|
2019-07-06 19:04:18 +00:00
|
|
|
height: 180px;
|
2020-12-09 19:08:50 +00:00
|
|
|
position: relative;
|
2019-07-06 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 20:10:32 +00:00
|
|
|
.openwebrx-message-panel tbody {
|
2019-07-06 19:04:18 +00:00
|
|
|
display: block;
|
|
|
|
overflow: auto;
|
|
|
|
height: 150px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-04-19 20:10:32 +00:00
|
|
|
.openwebrx-message-panel thead tr {
|
2019-07-06 19:04:18 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-04-19 20:10:32 +00:00
|
|
|
.openwebrx-message-panel th,
|
|
|
|
.openwebrx-message-panel td {
|
2019-07-06 19:04:18 +00:00
|
|
|
width: 50px;
|
|
|
|
text-align: left;
|
2019-07-08 18:45:09 +00:00
|
|
|
padding: 1px 3px;
|
2019-07-06 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-wsjt-message .message {
|
2019-07-14 12:43:44 +00:00
|
|
|
width: 380px;
|
2019-07-06 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 18:45:09 +00:00
|
|
|
#openwebrx-panel-wsjt-message .decimal {
|
|
|
|
text-align: right;
|
|
|
|
width: 35px;
|
|
|
|
}
|
|
|
|
|
2019-07-14 12:43:44 +00:00
|
|
|
#openwebrx-panel-wsjt-message .decimal.freq {
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
|
2020-04-19 20:10:32 +00:00
|
|
|
#openwebrx-panel-js8-message .message {
|
2020-04-20 20:07:21 +00:00
|
|
|
width: 465px;
|
|
|
|
max-width: 465px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-js8-message td.message {
|
2020-04-19 20:10:32 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2020-04-20 20:07:21 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-js8-message .message div {
|
|
|
|
flex: 1;
|
2020-04-19 20:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-js8-message .decimal {
|
|
|
|
text-align: right;
|
|
|
|
width: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-js8-message .decimal.freq {
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
|
2019-09-13 20:29:04 +00:00
|
|
|
#openwebrx-panel-packet-message .message {
|
|
|
|
width: 410px;
|
2020-01-10 22:25:49 +00:00
|
|
|
max-width: 410px;
|
2019-09-13 20:29:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-packet-message .callsign {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-packet-message .coord {
|
|
|
|
width: 40px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-01-09 14:12:51 +00:00
|
|
|
#openwebrx-panel-pocsag-message .address {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-panel-pocsag-message .message {
|
2020-01-10 22:25:49 +00:00
|
|
|
width: 486px;
|
|
|
|
max-width: 486px;
|
|
|
|
white-space: pre;
|
2020-01-09 14:12:51 +00:00
|
|
|
}
|
|
|
|
|
2019-09-18 22:18:51 +00:00
|
|
|
.aprs-symbol {
|
|
|
|
display: inline-block;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
background-size: 240px 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.aprs-symboltable-normal {
|
|
|
|
background-image: url(../../aprs-symbols/aprs-symbols-24-0.png)
|
|
|
|
}
|
|
|
|
|
|
|
|
.aprs-symboltable-alternate {
|
|
|
|
background-image: url(../../aprs-symbols/aprs-symbols-24-1.png)
|
|
|
|
}
|
|
|
|
|
|
|
|
.aprs-symboltable-overlay {
|
|
|
|
background-image: url(../../aprs-symbols/aprs-symbols-24-2.png)
|
|
|
|
}
|
|
|
|
|
2019-09-28 17:20:21 +00:00
|
|
|
.openwebrx-dialog {
|
|
|
|
background-color: #575757;
|
|
|
|
padding: 10px;
|
|
|
|
color: white;
|
|
|
|
position: fixed;
|
|
|
|
font-size: 10pt;
|
|
|
|
border-radius: 15px;
|
|
|
|
-moz-border-radius: 15px;
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-dialog .form-field {
|
|
|
|
padding: 5px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2019-09-28 18:15:47 +00:00
|
|
|
.openwebrx-dialog .form-field:first-child {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2019-09-28 17:20:21 +00:00
|
|
|
.openwebrx-dialog label {
|
|
|
|
display: inline-block;
|
2019-10-03 22:56:46 +00:00
|
|
|
flex-grow: 0;
|
|
|
|
width: 70px;
|
2019-09-28 17:20:21 +00:00
|
|
|
padding-right: 20px;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-dialog .form-field input,
|
|
|
|
.openwebrx-dialog .form-field select {
|
2019-10-03 22:56:46 +00:00
|
|
|
flex-grow: 1;
|
2019-09-28 17:20:21 +00:00
|
|
|
height: 27px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-dialog .form-field input {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
2019-09-28 18:15:47 +00:00
|
|
|
.openwebrx-dialog .buttons {
|
|
|
|
text-align: right;
|
|
|
|
padding: 5px 5px 0;
|
|
|
|
border-top: 1px solid #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-dialog .buttons .openwebrx-button {
|
|
|
|
font-size: 12pt;
|
|
|
|
min-width: 50px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
2019-09-28 17:20:21 +00:00
|
|
|
|
2019-09-13 19:04:00 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="ft8"] #openwebrx-digimode-content-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="wspr"] #openwebrx-digimode-content-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="jt65"] #openwebrx-digimode-content-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="jt9"] #openwebrx-digimode-content-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="ft4"] #openwebrx-digimode-content-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="packet"] #openwebrx-digimode-content-container,
|
2020-01-09 14:12:51 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="pocsag"] #openwebrx-digimode-content-container,
|
2020-04-14 19:12:25 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="js8"] #openwebrx-digimode-content-container,
|
2020-12-09 16:38:37 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="fst4"] #openwebrx-digimode-content-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="fst4w"] #openwebrx-digimode-content-container,
|
2021-02-03 19:11:07 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="q65"] #openwebrx-digimode-content-container,
|
2019-09-13 19:04:00 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="ft8"] #openwebrx-digimode-select-channel,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="wspr"] #openwebrx-digimode-select-channel,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="jt65"] #openwebrx-digimode-select-channel,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="jt9"] #openwebrx-digimode-select-channel,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="ft4"] #openwebrx-digimode-select-channel,
|
2020-01-08 21:40:44 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="packet"] #openwebrx-digimode-select-channel,
|
2020-04-14 19:12:25 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="pocsag"] #openwebrx-digimode-select-channel,
|
2020-12-09 16:38:37 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="js8"] #openwebrx-digimode-select-channel,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="fst4"] #openwebrx-digimode-select-channel,
|
2021-02-03 19:11:07 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="fst4w"] #openwebrx-digimode-select-channel,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="q65"] #openwebrx-digimode-select-channel
|
2019-07-13 21:16:25 +00:00
|
|
|
{
|
2019-07-08 18:45:09 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2019-07-06 19:04:18 +00:00
|
|
|
|
2019-09-13 19:04:00 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="ft8"] #openwebrx-digimode-canvas-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="wspr"] #openwebrx-digimode-canvas-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="jt65"] #openwebrx-digimode-canvas-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="jt9"] #openwebrx-digimode-canvas-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="ft4"] #openwebrx-digimode-canvas-container,
|
2020-01-08 21:40:44 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="packet"] #openwebrx-digimode-canvas-container,
|
2020-04-14 19:12:25 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="pocsag"] #openwebrx-digimode-canvas-container,
|
2020-12-09 16:38:37 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="js8"] #openwebrx-digimode-canvas-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="fst4"] #openwebrx-digimode-canvas-container,
|
2021-02-03 19:11:07 +00:00
|
|
|
#openwebrx-panel-digimodes[data-mode="fst4w"] #openwebrx-digimode-canvas-container,
|
|
|
|
#openwebrx-panel-digimodes[data-mode="q65"] #openwebrx-digimode-canvas-container
|
2019-07-13 21:16:25 +00:00
|
|
|
{
|
2019-07-08 18:45:09 +00:00
|
|
|
height: 200px;
|
|
|
|
margin: -10px;
|
2019-07-08 18:47:50 +00:00
|
|
|
}
|
2020-01-08 21:40:44 +00:00
|
|
|
|
2021-05-14 18:00:07 +00:00
|
|
|
.openwebrx-zoom-button svg {
|
|
|
|
height: 27px;
|
2021-05-15 21:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-slider-button svg {
|
|
|
|
position:relative;
|
|
|
|
top: 1px;
|
2021-05-15 21:57:24 +00:00
|
|
|
height: 14px;
|
2021-05-15 21:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-mute-button svg.muted {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-mute-button.muted svg.muted {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-mute-button.muted svg.unmuted {
|
|
|
|
display: none;
|
2021-05-15 22:39:53 +00:00
|
|
|
}
|
|
|
|
|
2021-05-15 23:06:57 +00:00
|
|
|
.bookmark .bookmark-actions .openwebrx-button svg {
|
2021-05-15 22:39:53 +00:00
|
|
|
height: 14px;
|
2021-05-17 18:25:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-waterfall-colors-auto .continuous {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-waterfall-colors-auto.highlighted .continuous {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
#openwebrx-waterfall-colors-auto.highlighted .auto {
|
|
|
|
display: none;
|
2021-05-17 19:14:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-waterfall-container {
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.openwebrx-waterfall-container > * {
|
|
|
|
flex: 0 0 auto;
|
2020-09-10 20:29:01 +00:00
|
|
|
}
|