insomnia/app/css/components/forms.scss

94 lines
1.4 KiB
SCSS
Raw Normal View History

2016-03-23 05:26:27 +00:00
@import '../constants/dimensions';
@import '../constants/colors';
.form-control {
outline: none;
border: 0;
2016-03-23 05:58:16 +00:00
height: $line-height-md;
2016-03-23 05:26:27 +00:00
2016-04-10 02:58:48 +00:00
textarea,
2016-03-23 05:26:27 +00:00
input {
width: 100%;
height: 100%;
}
2016-04-06 07:19:36 +00:00
&.form-control--compact {
height: $line-height-sm;
}
2016-04-09 01:14:25 +00:00
&.form-control--outlined,
&.form-control--underlined {
2016-03-23 05:26:27 +00:00
height: auto;
margin: $padding-sm;
2016-04-10 02:58:48 +00:00
textarea,
2016-03-23 05:26:27 +00:00
input {
2016-04-18 05:58:58 +00:00
border: 1px solid $hl-md;
2016-03-23 05:26:27 +00:00
padding: $padding-sm;
2016-04-09 19:24:33 +00:00
border-radius: $radius-md;
2016-03-23 05:26:27 +00:00
}
2016-04-09 01:14:25 +00:00
2016-04-10 02:58:48 +00:00
textarea,
2016-04-09 01:14:25 +00:00
input:focus {
2016-04-18 05:58:58 +00:00
border-color: $hl-xl;
2016-04-09 01:14:25 +00:00
}
}
&.form-control--underlined {
2016-04-10 02:58:48 +00:00
textarea,
2016-04-09 01:14:25 +00:00
input {
2016-04-15 02:13:49 +00:00
border-radius: 0;
2016-04-09 01:14:25 +00:00
border-top: 0;
border-right: 0;
border-left: 0;
}
2016-03-23 05:26:27 +00:00
}
}
2016-04-10 02:58:48 +00:00
// Push form all the way to the sides if inside label
2016-04-12 06:10:46 +00:00
label > .form-control,
.form-control--wide {
2016-04-10 02:58:48 +00:00
margin-left: 0 !important;
margin-right: 0 !important;
}
2016-03-23 05:26:27 +00:00
.btn {
text-align: center;
padding: 0 ($padding-md * 1.5);
height: $line-height-md;
&.btn--compact {
2016-04-04 07:15:30 +00:00
padding: 0 $padding-md;
height: $line-height-sm;
2016-03-23 05:26:27 +00:00
}
}
2016-04-09 01:14:25 +00:00
.btn:hover:not(:disabled) {
2016-03-23 05:26:27 +00:00
background: $hl-xs;
}
.btn:active {
background: $hl-md;
}
2016-04-10 02:58:48 +00:00
textarea, input, button {
2016-03-23 05:26:27 +00:00
box-sizing: border-box;
2016-03-23 18:34:39 +00:00
text-align: left;
2016-03-23 05:26:27 +00:00
font-size: inherit;
text-decoration: inherit;
background: none;
border: 0;
outline: 0;
margin: 0;
&::-webkit-input-placeholder {
color: $hl-xl;
}
}
button {
width: auto;
2016-04-04 07:15:30 +00:00
padding: 0;
margin: 0;
2016-03-23 05:26:27 +00:00
}