50 lines
651 B
SCSS
50 lines
651 B
SCSS
input:-webkit-autofill {
|
|
-webkit-box-shadow: 0 0 0px 1000px white inset;
|
|
}
|
|
|
|
input {
|
|
margin: 0;
|
|
outline: none;
|
|
padding: $input-padding;
|
|
border: 0;
|
|
background-color: $background-color;
|
|
display: inline-block;
|
|
}
|
|
|
|
.input-text {
|
|
|
|
}
|
|
|
|
.input-slider {
|
|
width: 100%
|
|
}
|
|
|
|
.input-checkbox {
|
|
border: 1px solid black;
|
|
background: white;
|
|
}
|
|
|
|
.input-file {
|
|
width: 0.1px;
|
|
height: 0.1px;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
|
|
.input-radio {
|
|
cursor: pointer;
|
|
}
|
|
|
|
// input area wrapper
|
|
|
|
.input-area {
|
|
border-bottom: 1px solid $secondary-color;
|
|
}
|
|
|
|
// modifiers
|
|
|
|
.input--full-width {
|
|
width: $input-full-width;
|
|
}
|