Add minimum width to buttons
This ensures they aren't too small, even if the text label is short.
This commit is contained in:
parent
a2352b99c1
commit
7b58cb96bc
|
@ -387,6 +387,7 @@ html {
|
|||
|
||||
/* Control bar buttons */
|
||||
#noVNC_control_bar .noVNC_button {
|
||||
min-width: unset;
|
||||
padding: 4px 4px;
|
||||
vertical-align: middle;
|
||||
border:1px solid rgba(255, 255, 255, 0.2);
|
||||
|
|
|
@ -176,6 +176,7 @@ input[type=submit],
|
|||
input::file-selector-button,
|
||||
button,
|
||||
select {
|
||||
min-width: 8em;
|
||||
border: none;
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
|
|
Loading…
Reference in New Issue