spee.ch/client/scss/_input.scss

50 lines
671 B
SCSS
Raw Normal View History

2018-05-31 00:00:09 +02:00
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
}
2018-06-09 02:23:11 +02:00
input {
2018-06-08 17:50:25 +02:00
margin: 0;
2018-06-09 02:23:11 +02:00
padding: $input-padding;
2018-06-08 17:50:25 +02:00
border: 0;
background-color: $background-color;
2018-05-31 00:00:09 +02:00
display: inline-block;
}
2018-06-09 02:23:11 +02:00
.input-slider {
width: 100%
}
2018-05-31 00:00:09 +02:00
.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;
}
2018-06-08 17:50:25 +02:00
.input-radio {
2018-05-31 00:00:09 +02:00
cursor: pointer;
}
2018-06-09 02:23:11 +02:00
// input area wrapper
2018-05-31 00:00:09 +02:00
2018-06-09 02:23:11 +02:00
.input-area {
2018-06-08 17:50:25 +02:00
border-bottom: 1px solid $secondary-color;
2018-05-31 00:00:09 +02:00
}
2018-11-10 20:59:53 +01:00
.form-group {
padding-bottom: $secondary-padding;
}
2018-06-09 02:23:11 +02:00
// modifiers
2018-05-31 00:00:09 +02:00
2018-06-09 02:23:11 +02:00
.input--full-width {
width: $input-full-width;
2018-05-31 00:00:09 +02:00
}