2014-09-11 16:30:55 +04:00
|
|
|
fieldset[disabled] .form-control, .form-control-wrapper .form-control, .form-control {
|
2014-12-04 12:42:54 +03:00
|
|
|
&, &:focus, &.focus {
|
|
|
|
&:not(textarea):not(select) {
|
|
|
|
height: 28px;
|
2014-08-18 18:25:33 +04:00
|
|
|
}
|
2014-12-04 12:42:54 +03:00
|
|
|
padding: 0;
|
|
|
|
float: none;
|
|
|
|
border: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius: 0;
|
|
|
|
background: transparent;
|
|
|
|
border-bottom: 1px solid #757575;
|
|
|
|
&:disabled {
|
|
|
|
border-style: dashed;
|
|
|
|
}
|
|
|
|
}
|
2014-09-05 12:18:32 +04:00
|
|
|
}
|
2014-09-07 22:12:16 +04:00
|
|
|
select.form-control {
|
2014-12-04 12:42:54 +03:00
|
|
|
height: 23px;
|
2014-09-07 22:12:16 +04:00
|
|
|
}
|
|
|
|
select[multiple].form-control {
|
2014-12-04 12:42:54 +03:00
|
|
|
&, &:focus, &.focus {
|
|
|
|
height: 85px;
|
|
|
|
}
|
2014-09-07 22:12:16 +04:00
|
|
|
}
|
2014-09-05 12:18:32 +04:00
|
|
|
|
|
|
|
.form-control-wrapper {
|
2014-12-04 12:42:54 +03:00
|
|
|
position: relative;
|
2014-09-05 12:18:32 +04:00
|
|
|
|
2014-12-04 12:42:54 +03:00
|
|
|
.form-control:focus, .form-control.focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2014-08-18 18:25:33 +04:00
|
|
|
|
2014-12-04 12:42:54 +03:00
|
|
|
.floating-label {
|
|
|
|
color: #7E7E7E;
|
|
|
|
font-size: 14px;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
left: 0px;
|
|
|
|
top: 5px;
|
|
|
|
transition: 0.2s ease all;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.form-control:not(.empty) ~ .floating-label {
|
|
|
|
top: -10px;
|
|
|
|
font-size: 10px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.form-control:focus:invalid ~ .floating-label, .form-control.focus:invalid ~ .floating-label {
|
|
|
|
color: @input-danger;
|
|
|
|
}
|
|
|
|
.form-control:focus ~ .material-input:after, .form-control.focus ~ .material-input:after {
|
|
|
|
background-color: @input-default;
|
|
|
|
}
|
|
|
|
.form-control:focus:invalid ~ .material-input, .form-control.focus:invalid ~ .material-input {
|
|
|
|
&:before, &:after {
|
|
|
|
background-color: @input-danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.form-control.empty ~ .floating-label {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.material-input:before {
|
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
|
|
|
height: 2px;
|
|
|
|
background-color: @input-default;
|
|
|
|
bottom: -1px;
|
|
|
|
transform: scaleX(0);
|
|
|
|
transition: transform 0s;
|
|
|
|
}
|
|
|
|
.form-control:focus ~ .material-input:before, .form-control.focus ~ .material-input:before {
|
|
|
|
transform: scaleX(1);
|
|
|
|
transition: transform 0.2s ease-out;
|
|
|
|
}
|
|
|
|
.material-input:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: 18px;
|
|
|
|
width: 100px;
|
|
|
|
margin-top: -1px;
|
|
|
|
top: 7px;
|
|
|
|
left: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0.9;
|
|
|
|
transform-origin: left;
|
|
|
|
}
|
|
|
|
.input-lg ~ .material-input:after {
|
|
|
|
height: 26px;
|
|
|
|
}
|
|
|
|
textarea { resize: none; }
|
|
|
|
textarea ~ .form-control-highlight {
|
|
|
|
margin-top: -11px;
|
|
|
|
}
|
2014-08-18 18:25:33 +04:00
|
|
|
|
2014-12-04 12:42:54 +03:00
|
|
|
// active state
|
|
|
|
.form-control:focus ~ .material-input:after, .form-control.focus ~ .material-input:after {
|
|
|
|
animation: input-highlight 0.3s ease;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2014-08-20 14:53:26 +04:00
|
|
|
|
2014-12-04 12:42:54 +03:00
|
|
|
// Hints
|
|
|
|
.hint {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 80%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.form-control:focus ~ .hint, .form-control.focus ~ .hint {
|
|
|
|
display: block;
|
|
|
|
}
|
2014-11-12 15:22:17 +03:00
|
|
|
|
2014-12-04 12:42:54 +03:00
|
|
|
select ~ .material-input:after {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-08-20 14:53:26 +04:00
|
|
|
|
2014-08-18 18:25:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-group {
|
2014-12-04 12:42:54 +03:00
|
|
|
&.has-warning {
|
|
|
|
.material-input:before, input.form-control:focus ~ .material-input:after, input.form-control.focus ~ .material-input:after {
|
|
|
|
background: @input-warning;
|
|
|
|
}
|
|
|
|
.control-label, input.form-control:not(.empty) ~ .floating-label {
|
|
|
|
color: @input-warning;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.has-error {
|
|
|
|
.material-input:before, input.form-control:focus ~ .material-input:after, input.form-control.focus ~ .material-input:after {
|
|
|
|
background: @input-danger;
|
|
|
|
}
|
|
|
|
.control-label, input.form-control:not(.empty) ~ .floating-label {
|
|
|
|
color: @input-danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.has-success {
|
|
|
|
.material-input:before, input.form-control:focus ~ .material-input:after, input.form-control.focus ~ .material-input:after {
|
|
|
|
background: @input-success;
|
|
|
|
}
|
|
|
|
.control-label, input.form-control:not(.empty) ~ .floating-label {
|
|
|
|
color: @input-success;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.has-info {
|
|
|
|
.material-input:before, input.form-control:focus ~ .material-input:after, input.form-control.focus ~ .material-input:after {
|
|
|
|
background: @input-info;
|
|
|
|
}
|
|
|
|
.control-label, input.form-control:not(.empty) ~ .floating-label {
|
|
|
|
color: @input-info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.variations(~" .material-input:before", background-color, @input-default);
|
|
|
|
.variations(~" input.form-control:focus ~ .material-input:after", background-color, @input-default);
|
|
|
|
.variations(~" input.form-control.focus ~ .material-input:after", background-color, @input-default);
|
|
|
|
.variations(~" .control-label", color, @lightbg-text);
|
|
|
|
.variations(~" input.form-control:not(.empty) ~ .floating-label", color, @input-default);
|
2014-08-18 18:25:33 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group {
|
2014-12-04 12:42:54 +03:00
|
|
|
.form-control-wrapper {
|
|
|
|
.form-control {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
.input-group-addon {
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
.input-group-btn .btn {
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2014-08-18 18:25:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
select.form-control {
|
2014-12-04 12:42:54 +03:00
|
|
|
border: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
border-bottom: 1px solid #757575;
|
|
|
|
border-radius: 0;
|
|
|
|
&:focus, &.focus {
|
2014-08-18 18:25:33 +04:00
|
|
|
box-shadow: none;
|
2014-12-04 12:42:54 +03:00
|
|
|
border-color: #757575;
|
|
|
|
}
|
2014-08-18 18:25:33 +04:00
|
|
|
}
|
2014-09-07 21:54:36 +04:00
|
|
|
|
|
|
|
|
2014-10-03 11:46:24 +04:00
|
|
|
@keyframes input-highlight {
|
2014-12-04 12:42:54 +03:00
|
|
|
0% {
|
|
|
|
left: 20%;
|
|
|
|
transform: scaleX(20%);
|
|
|
|
}
|
|
|
|
99% {
|
|
|
|
transform: scaleX(0);
|
|
|
|
left: 0;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2014-09-07 21:54:36 +04:00
|
|
|
}
|
|
|
|
|
2014-09-18 12:40:57 +04:00
|
|
|
// Input files (kinda hack)
|
|
|
|
.form-control-wrapper input[type=file] {
|
2014-12-04 12:42:54 +03:00
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 100;
|
2014-09-18 12:40:57 +04:00
|
|
|
}
|