Change color of box before input

This commit is contained in:
Dennis Eichhorn 2019-06-02 10:25:36 +02:00
parent 5fefb99bd1
commit 4cf93bb170
2 changed files with 4 additions and 4 deletions

View File

@ -195,7 +195,7 @@ input[type="range"] {
button {
box-sizing: border-box;
display: inline-block;
background: var(--input-border-active);
background: var(--button-colored-background);
height: 2rem;
font-size: 1rem;
min-width: 40px;
@ -211,7 +211,7 @@ input[type="range"] {
flex-shrink: 0;
&:hover {
background: var(--input-border-active);
background: var(--button-colored-background-hover);
}
}

View File

@ -3694,7 +3694,7 @@ input[type="range"] {
.input button {
box-sizing: border-box;
display: inline-block;
background: var(--input-border-active);
background: var(--button-colored-background);
height: 2rem;
font-size: 1rem;
min-width: 40px;
@ -3708,7 +3708,7 @@ input[type="range"] {
flex-grow: 0;
flex-shrink: 0; }
.input button:hover {
background: var(--input-border-active); }
background: var(--button-colored-background-hover); }
.input i {
position: relative;
vertical-align: middle; }