barebones/assets/sass/base/_forms.scss

113 lines
1.8 KiB
SCSS
Raw Normal View History

2015-04-01 18:32:10 +02:00
/**
* Blanket input styles for normalisation
*/
input,
select,
textarea {
background-color: $base-background-colour;
border: solid 1px $base-colour;
border-radius: 0;
color: $base-colour;
line-height: ($base-spacing-unit * 1.5);
height: ($base-spacing-unit * 1.5);
padding: 0 ($base-spacing-unit / 2);
width: 100%;
}
input[type="checkbox"],
input[type="radio"] {
background: transparent;
border: 0;
line-height: normal;
height: auto;
width: auto;
}
input[type="file"] {
line-height: normal;
height: auto;
padding: ($base-spacing-unit / 4) ($base-spacing-unit / 2);
}
input[disabled] {
background-color: whitesmoke;
cursor: not-allowed;
}
select {
line-height: normal;
padding: 0;
padding-left: ($base-spacing-unit / 2);
}
textarea {
min-height: ($base-spacing-unit * 4);
overflow: auto;
2015-08-06 17:29:23 +02:00
vertical-align: top;
2015-04-01 18:32:10 +02:00
}
/**
* Form utility classes
*/
2015-04-09 17:10:07 +02:00
.form--inline {
.form__group {
display: inline-block;
}
}
2015-04-01 18:32:10 +02:00
.checkbox,
.radio {
display: block;
padding-left: $base-spacing-unit;
2015-04-09 17:10:07 +02:00
&.inline {
display: inline-block;
}
> input {
2015-04-01 18:32:10 +02:00
float: left;
margin-left: -($base-spacing-unit);
margin-top: 4px;
}
}
.form__group {
2015-04-09 17:10:07 +02:00
display: block;
2015-04-01 18:32:10 +02:00
margin-bottom: $base-spacing-unit;
}
.form__label {
display: block;
margin-bottom: ($base-spacing-unit / 2);
}
/**
* Input Group
*
* Allows for prepend/append of elements
* (such as icons) on an input.
*/
.input-group {
position: relative;
> input {
padding: 0 ($base-spacing-unit * 2);
}
.input-group__addon {
line-height: ($base-spacing-unit * 1.5);
height: ($base-spacing-unit * 1.5);
position: absolute;
text-align: center;
top: 0;
width: ($base-spacing-unit * 1.5);
&:first-child {
left: 0;
}
&:last-child {
right: 0;
}
}
}