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:
parent
bf245da7b7
commit
72cac2ef6a
|
@ -491,6 +491,13 @@ html {
|
|||
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 {
|
||||
background-color: rgb(110, 132, 163);
|
||||
border-radius: 5px;
|
||||
|
|
Loading…
Reference in New Issue