Last updated to bookmark editing layout.

This commit is contained in:
Marat Fayzullin 2024-06-30 21:25:52 -04:00
parent 18aa01d1fa
commit 38f2d4a953
2 changed files with 31 additions and 5 deletions

View File

@ -80,12 +80,38 @@ h1 {
padding-right: 15px;
}
.bookmarks table .frequency, .bookmark-list table .frequency {
text-align: right;
/* col-1 */
.bookmarks table [data-editor="name"] {
width: 35%;
}
/* col-2 */
.bookmarks table .frequency, .bookmark-list table .frequency {
white-space: nowrap;
text-align: right;
min-width: 190px;
width: 10%;
}
/* col-3 */
.bookmarks table [data-editor="modulation"] {
white-space: nowrap;
min-width: 160px;
width: 10%;
}
/* col-4 */
.bookmarks table [data-editor="description"] {
width: 35%;
}
/* col-5 */
.bookmarks table tr td:last-child, .bookmarks table tr th:last-child {
text-align: right;
width: 10%;
}
.bookmarks table input, .bookmarks table select {
width: initial;
text-align: inherit;
display: initial;
}
@ -163,4 +189,4 @@ h1 {
.device-log-messages {
max-height: 500px;
}
}

View File

@ -1,5 +1,5 @@
from distutils.version import LooseVersion
_versionstring = "1.2.61"
_versionstring = "1.2.62"
looseversion = LooseVersion(_versionstring)
openwebrx_version = "v{0}".format(looseversion)