2015-11-09 22:32:46 +03:00
|
|
|
@import '_inputs-size.less';
|
|
|
|
|
2015-11-07 01:46:05 +03:00
|
|
|
// usage: .form-group-validation-state(@input-danger);
|
|
|
|
.form-group-validation-state(@name, @color) {
|
|
|
|
|
2015-11-10 22:36:15 +03:00
|
|
|
&.@{name} { // e.g. has-error
|
2015-11-07 01:46:05 +03:00
|
|
|
.form-control {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-11-10 19:26:00 +03:00
|
|
|
&.is-focused .form-control {
|
2015-11-07 01:46:05 +03:00
|
|
|
background-image: linear-gradient(@color, @color), linear-gradient(@input-underline-color, @input-underline-color);
|
|
|
|
}
|
|
|
|
label.control-label,
|
|
|
|
.help-block {
|
|
|
|
color: @color;
|
|
|
|
}
|
2014-12-04 12:42:54 +03:00
|
|
|
}
|
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-11-06 22:17:17 +03:00
|
|
|
background-color: rgba(0, 0, 0, 0);
|
2015-04-29 14:25:17 +03:00
|
|
|
transition: background 0s ease-out;
|
2015-11-10 19:26:00 +03:00
|
|
|
|
|
|
|
.form-group.is-focused & {
|
|
|
|
outline: none;
|
|
|
|
background-image: linear-gradient(@primary, @primary), linear-gradient(@input-underline-color, @input-underline-color);
|
|
|
|
background-size: 100% 2px, 100% 1px;
|
|
|
|
box-shadow: none;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
|
|
|
|
.material-input:after {
|
|
|
|
background-color: @input-default;
|
|
|
|
}
|
2015-03-18 16:46:06 +03:00
|
|
|
}
|
2015-11-10 19:26:00 +03:00
|
|
|
|
2015-11-10 23:31:56 +03:00
|
|
|
&,
|
|
|
|
fieldset[disabled] & {
|
|
|
|
|
2015-11-06 22:17:17 +03:00
|
|
|
&:textarea {
|
|
|
|
height: 40px;
|
|
|
|
}
|
2015-11-06 21:56:02 +03:00
|
|
|
|
2015-11-09 22:32:46 +03:00
|
|
|
&,
|
2015-11-10 19:26:00 +03:00
|
|
|
.form-group.is-focused & {
|
2015-11-06 22:17:17 +03:00
|
|
|
float: none;
|
|
|
|
border: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius: 0;
|
|
|
|
&:disabled {
|
|
|
|
border-style: dashed;
|
|
|
|
border-bottom: 1px solid #757575;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-06 21:56:02 +03:00
|
|
|
|
2015-11-06 22:17:17 +03:00
|
|
|
&[disabled],
|
|
|
|
&[readonly],
|
|
|
|
fieldset[disabled] & {
|
2015-11-09 22:32:46 +03:00
|
|
|
//background-color: transparent;
|
2015-11-06 22:17:17 +03:00
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-11 18:29:35 +03:00
|
|
|
.form-group-size-variant(@placeholder-font-size, @vertical-padding, @line-height, @label-as-placeholder-shim){
|
2015-11-11 01:35:08 +03:00
|
|
|
@static-font-size: ceil((@floating-label-size-ratio * @placeholder-font-size));
|
2015-11-11 18:29:35 +03:00
|
|
|
@static-line-height: (@floating-label-size-ratio * @line-height);
|
|
|
|
|
|
|
|
@label-as-placeholder-top: -1 * (@vertical-padding + @label-as-placeholder-shim);
|
|
|
|
//@label-as-placeholder-top: -1 * (@line-height * @static-font-size); way too much on anything but sm
|
|
|
|
|
2015-11-11 19:35:32 +03:00
|
|
|
@help-block-font-size: ceil((@help-block-size-ratio * @placeholder-font-size));
|
|
|
|
@help-block-line-height: (@help-block-size-ratio * @line-height);
|
2015-11-11 01:35:08 +03:00
|
|
|
|
|
|
|
.form-control {
|
|
|
|
.material-placeholder({
|
|
|
|
font-size: @placeholder-font-size;
|
|
|
|
});
|
2015-11-11 18:29:35 +03:00
|
|
|
margin-bottom: @vertical-padding;
|
|
|
|
|
|
|
|
//border: 1px solid;
|
2015-11-11 01:35:08 +03:00
|
|
|
}
|
|
|
|
|
2015-11-11 19:35:32 +03:00
|
|
|
.help-block {
|
|
|
|
margin-top: 0px; // allow the input margin to set-off the top of the help-block
|
|
|
|
font-size: @help-block-font-size;
|
2015-11-11 18:29:35 +03:00
|
|
|
|
|
|
|
//border: 1px solid;
|
2015-11-11 01:35:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
label.control-label { // static label
|
|
|
|
font-size: @static-font-size; // static (smaller of the two)
|
2015-11-11 18:29:35 +03:00
|
|
|
line-height: @static-line-height;
|
2015-11-11 01:35:08 +03:00
|
|
|
&.floating-label {
|
|
|
|
top: @label-as-placeholder-top; // place the floating label to look like a placeholder with input padding
|
|
|
|
font-size: @placeholder-font-size; // as placeholder (full size)
|
2015-11-11 18:29:35 +03:00
|
|
|
line-height: @line-height;
|
2015-11-11 01:35:08 +03:00
|
|
|
}
|
2015-11-11 18:29:35 +03:00
|
|
|
|
|
|
|
//border: 1px solid;
|
2015-11-11 01:35:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// sizing of focused/open/labels
|
|
|
|
&.is-focused,
|
|
|
|
&:not(.is-empty) {
|
|
|
|
label.control-label.floating-label {
|
|
|
|
top: @label-as-placeholder-top - (@placeholder-font-size + @vertical-padding);
|
|
|
|
font-size: @static-font-size;
|
2015-11-11 18:29:35 +03:00
|
|
|
line-height: @static-line-height;
|
2015-11-11 01:35:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-07 01:46:05 +03:00
|
|
|
.form-group {
|
|
|
|
position: relative;
|
|
|
|
|
2015-11-11 01:35:08 +03:00
|
|
|
// ----
|
|
|
|
// Placeholders and and floating-labels should look the same
|
|
|
|
.form-control {
|
|
|
|
.material-placeholder({
|
|
|
|
color: @input-placeholder-color;
|
|
|
|
font-weight: normal;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-11 00:32:06 +03:00
|
|
|
// -----
|
2015-11-10 19:26:00 +03:00
|
|
|
// Labels
|
2015-11-11 00:32:06 +03:00
|
|
|
//
|
|
|
|
// Reference http://www.google.com/design/spec/components/text-fields.html
|
|
|
|
// MDL implementation: http://www.getmdl.io/components/index.html#textfields-section
|
|
|
|
|
2015-11-10 22:36:15 +03:00
|
|
|
label.control-label { // static label
|
|
|
|
|
|
|
|
// same label properties as form-group placeholder. could be shared with a ruleset but makes sass conversion painful
|
|
|
|
color: @input-placeholder-color;
|
2015-11-07 01:46:05 +03:00
|
|
|
font-weight: normal;
|
2015-11-10 19:26:00 +03:00
|
|
|
margin: 16px 0 0 0; // std and lg
|
2015-11-11 00:32:06 +03:00
|
|
|
|
|
|
|
&.floating-label {
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
left: 0px;
|
|
|
|
transition: 0.3s ease all;
|
|
|
|
}
|
2015-11-10 19:26:00 +03:00
|
|
|
}
|
2015-11-10 22:36:15 +03:00
|
|
|
.variations(~" label.control-label", color, @input-placeholder-color); // default label color variations
|
|
|
|
.variations(~".is-focused label.control-label", color, @input-default); // focused label color variations
|
2015-11-10 19:26:00 +03:00
|
|
|
|
2015-11-11 01:35:08 +03:00
|
|
|
// default floating size/location
|
2015-11-11 18:29:35 +03:00
|
|
|
.form-group-size-variant(@md-input-font-size-base, @md-input-padding-base-vertical, @md-input-line-height-base, @md-label-as-placeholder-shim-base);
|
2015-11-11 00:32:06 +03:00
|
|
|
|
2015-11-11 01:35:08 +03:00
|
|
|
// sm floating size/location
|
2015-11-10 19:26:00 +03:00
|
|
|
&.form-group-sm {
|
2015-11-11 18:29:35 +03:00
|
|
|
.form-group-size-variant(@md-input-font-size-small, @md-input-padding-small-vertical, @md-input-line-height-small, @md-label-as-placeholder-shim-small);
|
2015-11-10 19:26:00 +03:00
|
|
|
}
|
|
|
|
|
2015-11-11 01:35:08 +03:00
|
|
|
// lg floating size/location
|
2015-11-10 19:26:00 +03:00
|
|
|
&.form-group-lg {
|
2015-11-11 18:29:35 +03:00
|
|
|
.form-group-size-variant(@md-input-font-size-large, @md-input-padding-large-vertical, @md-input-line-height-large, @md-label-as-placeholder-shim-large);
|
2015-11-07 01:46:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Hints
|
2015-11-11 19:35:32 +03:00
|
|
|
.help-block {
|
2015-11-07 01:46:05 +03:00
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-11-10 19:26:00 +03:00
|
|
|
&.is-focused {
|
2015-11-11 19:35:32 +03:00
|
|
|
.help-block {
|
2015-11-07 01:46:05 +03:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-10 20:52:15 +03:00
|
|
|
// SASS conversion note: please mirror any content change in _mixins-shared.scss bg-img-variations-content
|
|
|
|
.generic-variations(~".is-focused .form-control", @primary, {
|
|
|
|
background-image: linear-gradient(@material-color, @material-color), linear-gradient(@input-underline-color, @input-underline-color);
|
|
|
|
});
|
|
|
|
|
2015-11-07 01:46:05 +03:00
|
|
|
.form-group-validation-state(has-warning, @input-warning);
|
|
|
|
.form-group-validation-state(has-error, @input-danger);
|
|
|
|
.form-group-validation-state(has-success, @input-success);
|
|
|
|
.form-group-validation-state(has-info, @input-info);
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
resize: none;
|
|
|
|
}
|
|
|
|
textarea ~ .form-control-highlight {
|
|
|
|
margin-top: -11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
select ~ .material-input:after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fix for OS X
|
|
|
|
select {
|
|
|
|
appearance: none;
|
|
|
|
}
|
2015-11-10 20:52:15 +03:00
|
|
|
}
|
2015-11-06 23:20:23 +03:00
|
|
|
|
2015-11-10 20:52:15 +03:00
|
|
|
select.form-control {
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
.form-group.is-focused & {
|
|
|
|
box-shadow: none;
|
|
|
|
border-color: #757575;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[multiple] {
|
|
|
|
&,
|
|
|
|
.form-group.is-focused & {
|
|
|
|
height: 85px;
|
|
|
|
}
|
|
|
|
}
|
2015-11-07 01:46:05 +03:00
|
|
|
}
|
|
|
|
|
2014-08-18 18:25:33 +04:00
|
|
|
.input-group {
|
2015-11-06 19:30:05 +03:00
|
|
|
.form-group {
|
2014-12-04 12:42:54 +03:00
|
|
|
.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
|
|
|
}
|
|
|
|
|
2014-09-18 12:40:57 +04:00
|
|
|
// Input files (kinda hack)
|
2015-11-06 19:30:05 +03:00
|
|
|
.form-group 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
|
|
|
}
|
2015-11-06 22:17:17 +03:00
|
|
|
|
|
|
|
// Ugly override of Bootstrap border
|
|
|
|
fieldset[disabled] .form-control:disabled,
|
|
|
|
.form-group .form-control:disabled,
|
|
|
|
.form-control:disabled,
|
|
|
|
fieldset[disabled] .form-control:focus:disabled,
|
|
|
|
.form-group .form-control:focus:disabled,
|
|
|
|
.form-control:focus:disabled,
|
2015-11-10 19:26:00 +03:00
|
|
|
.form-group.is-focused fieldset[disabled] .form-control:disabled,
|
|
|
|
.form-group.is-focused .form-group .form-control:disabled,
|
|
|
|
.form-group.is-focused .form-control:disabled {
|
2015-11-06 22:17:17 +03:00
|
|
|
border: 0;
|
|
|
|
}
|