Standardize on 6px or 12px border-radius

This results in a few things becoming slighly more rounded, for example
the controlbar, the settings panel and buttons/inputs. Increased
rounding gives a more friendly feel.
This commit is contained in:
Samuel Mannehed
2025-01-12 00:36:44 +01:00
parent 7603ced54e
commit ca270efcc3
2 changed files with 13 additions and 13 deletions

View File

@@ -22,7 +22,7 @@ input, input::file-selector-button, button, select, textarea {
padding: 0.5em var(--input-xpadding);
border: 1px solid var(--novnc-lightgrey);
border-radius: 5px;
border-radius: 6px;
color: black;
--bg-gradient: linear-gradient(to top, rgb(255, 255, 255) 80%, rgb(240, 240, 240));
background-image: var(--bg-gradient);
@@ -156,7 +156,7 @@ input[type=range]::-webkit-slider-thumb {
appearance: none;
width: 18px;
height: 20px;
border-radius: 5px;
border-radius: 6px;
background-color: white;
border: 1px solid dimgray;
margin-top: -7px;
@@ -165,7 +165,7 @@ input[type=range]::-moz-range-thumb {
appearance: none;
width: 18px;
height: 20px;
border-radius: 5px;
border-radius: 6px;
background-color: white;
border: 1px solid dimgray;
margin-top: -7px;