Add margin between label and input in noVNC_panel

To make stuff feel less cramped, lets add some margin here.

As of comitting this, it only affects the logging-level select dropdown
in the settings, but this is a general rule of thumb. It doesn't apply
to checkboxes or radios since they have a margin by default, and their
label to the left.
This commit is contained in:
Samuel Mannehed 2025-01-11 23:20:33 +01:00
parent bf245da7b7
commit 72cac2ef6a
1 changed files with 7 additions and 0 deletions

View File

@ -491,6 +491,13 @@ html {
margin: 5px; margin: 5px;
} }
.noVNC_panel label > button,
.noVNC_panel label > select,
.noVNC_panel label > textarea,
.noVNC_panel label > input:not([type=checkbox]):not([type=radio]) {
margin-left: 6px;
}
.noVNC_panel .noVNC_heading { .noVNC_panel .noVNC_heading {
background-color: rgb(110, 132, 163); background-color: rgb(110, 132, 163);
border-radius: 5px; border-radius: 5px;