From 38f2d4a953b4bfce84abcfb2508fabf9c5616cbe Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Sun, 30 Jun 2024 21:25:52 -0400 Subject: [PATCH] Last updated to bookmark editing layout. --- htdocs/css/admin.css | 34 ++++++++++++++++++++++++++++++---- owrx/version.py | 2 +- 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/htdocs/css/admin.css b/htdocs/css/admin.css index 02e9a8ad..c9df225c 100644 --- a/htdocs/css/admin.css +++ b/htdocs/css/admin.css @@ -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; -} \ No newline at end of file +} diff --git a/owrx/version.py b/owrx/version.py index 4286522e..29c754e1 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -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)