2015-03-18 17:29:57 +03:00
|
|
|
fieldset[disabled] .form-control, .form-control {
|
2014-12-04 12:42:54 +03:00
|
|
|
&, &:focus, &.focus {
|
|
|
|
padding: 0;
|
|
|
|
float: none;
|
|
|
|
border: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius: 0;
|
|
|
|
&:disabled {
|
|
|
|
border-style: dashed;
|
2015-01-26 20:05:46 +03:00
|
|
|
border-bottom: 1px solid #757575;
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
|
|
|
}
|
2014-09-05 12:18:32 +04:00
|
|
|
}
|
2015-03-06 08:51:25 +03:00
|
|
|
|
2015-03-18 17:29:57 +03:00
|
|
|
fieldset[disabled] .form-control, .form-control {
|
|
|
|
&:textarea {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-01-26 20:05:46 +03:00
|
|
|
.form-control {
|
|
|
|
border: 0;
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@primary, @primary), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-01-27 17:26:48 +03:00
|
|
|
background-size: 0 2px, 100% 1px;
|
2015-01-26 20:05:46 +03:00
|
|
|
background-repeat: no-repeat;
|
2015-01-27 17:26:48 +03:00
|
|
|
background-position: center bottom, center calc(~"100% - 1px");
|
2015-02-18 13:22:03 +03:00
|
|
|
background-color: transparent;
|
|
|
|
background-color: rgba(0,0,0,0);
|
2015-03-19 17:26:00 +03:00
|
|
|
transition: background 0 ease-out;
|
2015-03-18 16:46:06 +03:00
|
|
|
&::-webkit-input-placeholder {
|
|
|
|
color: @input-placeholder-color;
|
|
|
|
}
|
|
|
|
&::-moz-placeholder {
|
|
|
|
color: @input-placeholder-color;
|
|
|
|
}
|
|
|
|
&:-ms-input-placeholder {
|
|
|
|
color: @input-placeholder-color;
|
|
|
|
}
|
2015-02-18 13:22:03 +03:00
|
|
|
}
|
|
|
|
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
|
|
|
|
background-color: transparent;
|
|
|
|
background-color: rgba(0,0,0,0);
|
|
|
|
}
|
2015-03-18 16:46:06 +03:00
|
|
|
fieldset[disabled] .form-control:disabled,
|
|
|
|
.form-control-wrapper .form-control:disabled,
|
|
|
|
.form-control:disabled,
|
|
|
|
fieldset[disabled] .form-control:focus:disabled,
|
|
|
|
.form-control-wrapper .form-control:focus:disabled,
|
|
|
|
.form-control:focus:disabled,
|
|
|
|
fieldset[disabled] .form-control.focus:disabled,
|
|
|
|
.form-control-wrapper .form-control.focus:disabled,
|
|
|
|
.form-control.focus:disabled {
|
|
|
|
border: 0; // Ugly override of Bootstrap border
|
2015-01-26 20:05:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-control:focus, .form-control.focus {
|
|
|
|
outline: none;
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@primary, @primary), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-03-19 17:26:00 +03:00
|
|
|
background-size: 100% 2px, 100% 1px;
|
2015-01-26 20:05:46 +03:00
|
|
|
box-shadow: none;
|
2015-03-19 17:26:00 +03:00
|
|
|
transition-duration: 0.3s;
|
2015-01-26 20:05:46 +03: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
|
|
|
.floating-label {
|
2015-03-18 16:46:06 +03:00
|
|
|
color: @input-placeholder-color;
|
2014-12-04 12:42:54 +03:00
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
left: 0px;
|
|
|
|
top: 5px;
|
2015-03-19 17:26:00 +03:00
|
|
|
transition: 0.3s ease all;
|
2014-12-04 12:42:54 +03:00
|
|
|
opacity: 0;
|
2015-03-18 17:29:57 +03:00
|
|
|
.form-control:focus ~ &,
|
|
|
|
.form-control:not(.empty) ~ & {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Input sizes
|
|
|
|
.floating-label { // base
|
|
|
|
font-size: @font-size-base;
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
2015-03-17 19:47:58 +03:00
|
|
|
.form-control:focus ~ .floating-label,
|
2014-12-04 12:42:54 +03:00
|
|
|
.form-control:not(.empty) ~ .floating-label {
|
2015-03-18 17:29:57 +03:00
|
|
|
top: @floating-label-size-ratio * -@font-size-base;
|
|
|
|
font-size: @floating-label-size-ratio * @font-size-base;
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
2015-03-18 17:29:57 +03:00
|
|
|
|
|
|
|
.input-sm + .floating-label { // small
|
|
|
|
font-size: @font-size-small;
|
|
|
|
top: 7px;
|
|
|
|
}
|
|
|
|
.form-control.input-sm:focus ~ .floating-label,
|
|
|
|
.form-control.input-sm:not(.empty) ~.floating-label {
|
|
|
|
top: @floating-label-size-ratio * -@font-size-small;
|
|
|
|
font-size: @floating-label-size-ratio * @font-size-small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-lg + .floating-label {
|
|
|
|
font-size: @font-size-large;
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
.form-control.input-lg:focus ~ .floating-label,
|
|
|
|
.form-control.input-lg:not(.empty) ~ .floating-label {
|
|
|
|
top: @floating-label-size-ratio * -@font-size-large;
|
|
|
|
font-size: @floating-label-size-ratio * @font-size-large;
|
|
|
|
}
|
|
|
|
|
2015-03-17 20:08:03 +03:00
|
|
|
.form-control:focus ~ .floating-label {
|
|
|
|
color: @primary;
|
|
|
|
}
|
|
|
|
.form-control:not(.empty):invalid ~ .floating-label, .form-control.focus:invalid ~ .floating-label {
|
2014-12-04 12:42:54 +03:00
|
|
|
color: @input-danger;
|
|
|
|
}
|
|
|
|
.form-control:focus ~ .material-input:after, .form-control.focus ~ .material-input:after {
|
|
|
|
background-color: @input-default;
|
|
|
|
}
|
2015-03-17 20:08:03 +03:00
|
|
|
.form-control:invalid {
|
|
|
|
background-image: linear-gradient(@input-danger, @input-danger), linear-gradient(@input-underline-color, @input-underline-color);
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
2015-03-17 19:47:58 +03:00
|
|
|
.form-control.empty ~ .floating-label {
|
2014-12-04 12:42:54 +03:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
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
|
|
|
// 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
|
|
|
|
2015-03-17 20:08:03 +03:00
|
|
|
// Fix for OS X
|
|
|
|
select {
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
|
2014-08-18 18:25:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-group {
|
2014-12-04 12:42:54 +03:00
|
|
|
&.has-warning {
|
2015-01-26 20:05:46 +03:00
|
|
|
.form-control {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@input-warning, @input-warning), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-01-26 20:05:46 +03:00
|
|
|
box-shadow: none;
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
2015-03-17 19:47:58 +03:00
|
|
|
.control-label, input.form-control:focus ~ .floating-label {
|
2014-12-04 12:42:54 +03:00
|
|
|
color: @input-warning;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.has-error {
|
2015-01-26 20:05:46 +03:00
|
|
|
.form-control {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@input-danger, @input-danger), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-01-26 20:05:46 +03:00
|
|
|
box-shadow: none;
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
2015-03-17 19:47:58 +03:00
|
|
|
.control-label, input.form-control:focus ~ .floating-label {
|
2014-12-04 12:42:54 +03:00
|
|
|
color: @input-danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.has-success {
|
2015-01-26 20:05:46 +03:00
|
|
|
.form-control {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@input-success, @input-success), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-01-26 20:05:46 +03:00
|
|
|
box-shadow: none;
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
2015-03-17 19:47:58 +03:00
|
|
|
.control-label, input.form-control:focus ~ .floating-label {
|
2014-12-04 12:42:54 +03:00
|
|
|
color: @input-success;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.has-info {
|
2015-01-26 20:05:46 +03:00
|
|
|
.form-control {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@input-info, @input-info), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-01-26 20:05:46 +03:00
|
|
|
box-shadow: none;
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
2015-03-17 19:47:58 +03:00
|
|
|
.control-label, input.form-control:focus ~ .floating-label {
|
2014-12-04 12:42:54 +03:00
|
|
|
color: @input-info;
|
|
|
|
}
|
|
|
|
}
|
2015-01-26 20:05:46 +03:00
|
|
|
.generic-variations(~" .form-control:focus", @primary, {
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@material-color, @material-color), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-01-26 20:05:46 +03:00
|
|
|
});
|
|
|
|
.generic-variations(~" .form-control.focus", @primary, {
|
2015-03-17 20:08:03 +03:00
|
|
|
background-image: linear-gradient(@material-color, @material-color), linear-gradient(@input-underline-color, @input-underline-color);
|
2015-01-26 20:05:46 +03:00
|
|
|
});
|
2014-12-04 12:42:54 +03:00
|
|
|
.variations(~" .control-label", color, @lightbg-text);
|
2015-03-17 19:47:58 +03:00
|
|
|
.variations(~" input.form-control:focus ~ .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-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-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
|
|
|
}
|