feat: New style for input range
- Exclude input range from .input_io - Add TODO to replace .input_io and move to io_module - Set accent color for input range
This commit is contained in:
parent
54f1de579c
commit
2d582a5032
2 changed files with 11 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
input[type="range"] {
|
||||
accent-color: $color_text_io;
|
||||
}
|
||||
|
||||
header,
|
||||
aside,
|
||||
footer {
|
||||
|
|
@ -17,10 +21,14 @@ footer {
|
|||
@extend .button_io;
|
||||
}
|
||||
|
||||
input {
|
||||
input:not([type="range"]) {
|
||||
@extend .input_io;
|
||||
}
|
||||
|
||||
input[type="range"] {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
select {
|
||||
@extend .io_select;
|
||||
}
|
||||
|
|
@ -40,7 +48,7 @@ aside {
|
|||
&.io {
|
||||
padding: $space_basic;
|
||||
|
||||
input,
|
||||
input:not([type="range"]),
|
||||
button,
|
||||
textarea,
|
||||
select {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue