diff --git a/static/standardUI/css/general.css b/static/standardUI/css/general.css index f2f2a7e53..9d4626db5 100644 --- a/static/standardUI/css/general.css +++ b/static/standardUI/css/general.css @@ -13,26 +13,13 @@ overflow-wrap: break-word !important; } -html { - font-size: 125% !important; -} - -body { - background-color: var(--themeSecondary); -} - -a { - text-decoration: none; - user-select: none; -} - *::-webkit-scrollbar { width: 0.4rem; } *::-webkit-scrollbar-thumb { border-radius: 1rem; - background: rgb(244 63 94); + background: var(--primaryColor); } *::-webkit-scrollbar-track, @@ -40,6 +27,31 @@ a { background: transparent; } +*::selection { + background: var(--primaryColor); +} + +*::-moz-selection { + background: var(--primaryColor); +} + +*::-webkit-selection { + background: var(--primaryColor); +} + +html { + font-size: 125% !important; +} + +body { + background-color: var(--themeSecondary); +} + +a { + text-decoration: none; + user-select: none; +} + button { background-color: transparent; border: 0;