mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2026-04-07 15:43:49 +00:00
UI: Hide spin buttons on number inputs
This commit is contained in:
parent
f8db23b362
commit
223dd4b801
1 changed files with 11 additions and 0 deletions
11
css/main.css
11
css/main.css
|
|
@ -22,6 +22,17 @@
|
|||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Hide spin buttons on number inputs (look bad on Windows) */
|
||||
input[type="number"]::-webkit-outer-spin-button,
|
||||
input[type="number"]::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
input[type="number"] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
||||
.padded.svelte-12cmxck {
|
||||
padding: 3px 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue