2015-03-06 07:42:38 +08:00
|
|
|
@import "ui-variables";
|
|
|
|
@import "ui-mixins";
|
|
|
|
|
2015-03-05 07:19:51 +08:00
|
|
|
input[type="text"],
|
|
|
|
input[type="email"] {
|
2015-03-03 05:28:21 +08:00
|
|
|
width: 100%;
|
|
|
|
padding-left: @padding-xs-horizontal;
|
|
|
|
padding-right: @padding-xs-horizontal;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-computed;
|
2015-03-03 06:15:39 +08:00
|
|
|
font-weight:400;
|
2015-03-06 10:49:43 +08:00
|
|
|
|
|
|
|
&.input-bordered {
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
border: 1px solid @input-border;
|
|
|
|
}
|
2015-03-04 10:09:57 +08:00
|
|
|
}
|
2015-03-05 07:19:51 +08:00
|
|
|
input[type="text"]:focus,
|
|
|
|
input[type="email"]:focus, {
|
2015-03-06 10:49:43 +08:00
|
|
|
&.input-bordered {
|
2015-03-05 07:19:51 +08:00
|
|
|
box-shadow: 0 0 3px @accent-primary;
|
2015-03-06 10:49:43 +08:00
|
|
|
}
|
2015-03-05 07:19:51 +08:00
|
|
|
}
|