Fix [type="range"]:focus

This commit is contained in:
Lucas 2020-10-01 09:56:08 +07:00
parent c89db4ec2d
commit c4fb3ec4af
10 changed files with 33 additions and 10 deletions

View file

@ -201,7 +201,13 @@
}
&:focus {
background: transparent;
@if $enable-important {
background: transparent !important;
}
@else {
background: transparent;
}
// Slider Track
&::-webkit-slider-runnable-track {
@ -223,6 +229,13 @@
&:active {
@if $enable-important {
background: transparent !important;
}
@else {
background: transparent;
}
// Slider Thumb
&::-webkit-slider-thumb {
transform: scale(1.25);

View file

@ -281,7 +281,6 @@ form small {
color: var(--muted-text);
}
// Helper: padding
input,
select,
textarea {

View file

@ -89,5 +89,4 @@
// Transitions: <a>, <form> elements and <button>
--transition: .2s ease-in-out;
}