2015-11-21 15:36:20 +03:00
|
|
|
// must be broken out for reuse - webkit selector breaks firefox
|
2015-12-07 20:40:42 +03:00
|
|
|
@mixin label-static($label-top, $static-font-size, $static-line-height) {
|
2015-11-21 15:36:20 +03:00
|
|
|
label.control-label {
|
|
|
|
top: $label-top;
|
|
|
|
left: 0;
|
|
|
|
// must repeat because the selector above is more specific than the general label sizing
|
2015-12-07 20:40:42 +03:00
|
|
|
//font-size: $static-font-size;
|
|
|
|
//line-height: $static-line-height;
|
2015-11-21 15:36:20 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-07 20:40:42 +03:00
|
|
|
@mixin label-size-variant($placeholder-font-size, $vertical-padding, $line-height, $static-font-size, $static-line-height, $help-block-font-size) {
|
2015-12-09 04:09:56 +03:00
|
|
|
//.form-control {
|
|
|
|
// @include material-placeholder {
|
|
|
|
// font-size: $placeholder-font-size;
|
|
|
|
// line-height: $line-height;
|
|
|
|
// font-weight: 400;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// // margin-bottom must be specified to give help-block vertical space.
|
|
|
|
// // $see also form-group padding-bottom (and size variants) re: collapsible margins. These work together.
|
|
|
|
// margin-bottom: $vertical-padding;
|
|
|
|
//}
|
2015-11-22 00:36:03 +03:00
|
|
|
|
|
|
|
// generic labels used anywhere in the form (not control-label)
|
|
|
|
.checkbox label,
|
|
|
|
.radio label,
|
|
|
|
label {
|
2015-12-07 20:40:42 +03:00
|
|
|
//font-size: $placeholder-font-size;
|
|
|
|
//line-height: $line-height;
|
|
|
|
//font-weight: 400;
|
2015-11-22 00:36:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// smaller focused or static size
|
|
|
|
label.control-label {
|
2015-12-07 20:40:42 +03:00
|
|
|
//font-size: $static-font-size;
|
|
|
|
//line-height: $static-line-height;
|
|
|
|
//margin: 16px 0 0 0; // std and lg
|
2015-11-22 00:36:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.help-block {
|
2015-12-07 20:40:42 +03:00
|
|
|
//margin-top: 0; // allow the input margin to set-off the top of the help-block
|
|
|
|
//font-size: $help-block-font-size;
|
2015-11-22 00:36:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-09 04:09:56 +03:00
|
|
|
@mixin mdb-form-color($label-color, $border-color) {
|
|
|
|
// Use the BS provided mixin for the bulk of the color
|
|
|
|
@include form-control-validation($label-color);
|
2015-11-07 01:46:05 +03:00
|
|
|
|
2015-12-09 04:09:56 +03:00
|
|
|
// Set the border and box shadow on specific inputs to match
|
|
|
|
.form-control {
|
|
|
|
border-color: $border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set validation states also for addons
|
|
|
|
.input-group-addon {
|
|
|
|
border-color: $border-color;
|
|
|
|
}
|
2015-12-07 21:16:09 +03:00
|
|
|
|
2015-12-09 04:09:56 +03:00
|
|
|
label {
|
|
|
|
color: $label-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin mdb-form-control-validation($name, $color) {
|
|
|
|
// e.g. has-danger
|
|
|
|
&.has-#{$name} {
|
|
|
|
|
|
|
|
// override BS and keep the border-color normal/grey so that focus animation draws attention
|
|
|
|
.form-control {
|
|
|
|
border-color: $input-border-color;
|
2015-11-07 01:46:05 +03:00
|
|
|
}
|
2015-12-09 02:59:07 +03:00
|
|
|
|
|
|
|
&.is-focused {
|
2015-12-09 04:09:56 +03:00
|
|
|
// on focus set borders and labels to the validation color
|
|
|
|
@include mdb-form-color($color, $color);
|
|
|
|
|
|
|
|
// underline animation color on focus
|
|
|
|
.mdb-form-control-decorator {
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
@include gradient-vertical($color, $input-border-color);
|
|
|
|
}
|
2015-12-09 02:59:07 +03:00
|
|
|
}
|
2015-11-07 01:46:05 +03:00
|
|
|
}
|
2015-11-06 22:17:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-07 20:40:42 +03:00
|
|
|
@mixin mdb-form-group-size-variant($parent, $placeholder-font-size, $label-top-margin, $vertical-padding, $line-height, $label-as-placeholder-shim) {
|
2015-11-21 19:37:35 +03:00
|
|
|
$static-font-size: ceil(($mdb-label-static-size-ratio * $placeholder-font-size)) !default;
|
|
|
|
$static-line-height: ($mdb-label-static-size-ratio * $line-height) !default;
|
2015-11-17 21:02:44 +03:00
|
|
|
|
|
|
|
$label-as-placeholder-top: -1 * ($vertical-padding + $label-as-placeholder-shim) !default;
|
2015-11-18 23:20:12 +03:00
|
|
|
$label-top: $label-as-placeholder-top - ($placeholder-font-size + $vertical-padding) !default;
|
2015-11-17 21:02:44 +03:00
|
|
|
|
2015-11-21 19:37:35 +03:00
|
|
|
$help-block-font-size: ceil(($mdb-help-block-size-ratio * $placeholder-font-size)) !default;
|
|
|
|
$help-block-line-height: ($mdb-help-block-size-ratio * $line-height) !default;
|
2015-11-11 01:35:08 +03:00
|
|
|
|
2015-11-22 00:36:03 +03:00
|
|
|
// this is outside a form-group
|
|
|
|
@if not $parent {
|
|
|
|
@include label-size-variant($placeholder-font-size, $vertical-padding, $line-height, $static-font-size, $static-line-height, $help-block-font-size);
|
2015-12-07 22:34:46 +03:00
|
|
|
} @else {
|
2015-12-07 20:40:42 +03:00
|
|
|
// this is inside a form-group, may be .mdb-form-group.mdb-form-group-sm or .mdb-form-group.mdb-form-group-lg
|
2015-11-22 00:36:03 +03:00
|
|
|
#{$parent} {
|
|
|
|
@include label-size-variant($placeholder-font-size, $vertical-padding, $line-height, $static-font-size, $static-line-height, $help-block-font-size);
|
|
|
|
|
|
|
|
// form-group padding-bottom
|
|
|
|
// upon collapsing margins, the largest margin is honored which collapses the form-control margin-bottom,
|
|
|
|
// so the form-control margin-bottom must also be expressed as form-group padding
|
2015-12-07 20:40:42 +03:00
|
|
|
//padding-bottom: $vertical-padding;
|
2015-11-22 00:36:03 +03:00
|
|
|
|
2015-11-26 03:19:13 +03:00
|
|
|
// FIXME: need to avoid top margin http://v4-alpha.getbootstrap.com/content/reboot/#approach
|
2015-11-22 00:36:03 +03:00
|
|
|
// form-group margin-top must be large enough for the label and the label's top padding since label is absolutely positioned
|
2015-12-07 20:40:42 +03:00
|
|
|
//margin: ($label-top-margin + $static-font-size) 0 0 0; // old, try padding below
|
|
|
|
//padding-top: ($label-top-margin + $static-font-size);
|
2015-11-22 00:36:03 +03:00
|
|
|
|
|
|
|
// larger labels as placeholders
|
|
|
|
&.label-floating,
|
|
|
|
&.label-placeholder {
|
|
|
|
label.control-label {
|
|
|
|
top: $label-as-placeholder-top; // place the floating label to look like a placeholder with input padding
|
2015-12-07 20:40:42 +03:00
|
|
|
//font-size: $placeholder-font-size;
|
|
|
|
//line-height: $line-height;
|
2015-11-22 00:36:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// static, focused, or autofill floating labels
|
|
|
|
&.label-static,
|
|
|
|
&.label-floating.is-focused,
|
|
|
|
&.label-floating:not(.is-empty) {
|
|
|
|
@include label-static($label-top, $static-font-size, $static-line-height);
|
|
|
|
}
|
|
|
|
// #559 Fix for webkit/chrome autofill - rule must be separate because it breaks firefox otherwise #731
|
|
|
|
&.label-floating input.form-control:-webkit-autofill ~ label.control-label {
|
|
|
|
@include label-static($label-top, $static-font-size, $static-line-height);
|
|
|
|
}
|
2015-11-11 01:35:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-09 04:09:56 +03:00
|
|
|
@include mdb-form-color($mdb-label-color, $input-border-color);
|
|
|
|
@include mdb-form-control-validation(warning, $brand-warning);
|
|
|
|
@include mdb-form-control-validation(danger, $brand-danger);
|
|
|
|
@include mdb-form-control-validation(success, $brand-success);
|
|
|
|
@include mdb-form-control-validation(info, $brand-info);
|
|
|
|
|
2015-11-22 00:36:03 +03:00
|
|
|
// -----
|
|
|
|
// Inputs
|
|
|
|
//
|
|
|
|
// Reference http://www.google.com/design/spec/components/text-fields.html
|
|
|
|
// MDL implementation: http://www.getmdl.io/components/index.html#textfields-section
|
2015-12-07 22:34:46 +03:00
|
|
|
.form-control {
|
2015-12-09 02:59:07 +03:00
|
|
|
// The border bottom should be static in all states, the decorator will be animated over this.
|
|
|
|
&,
|
|
|
|
&:focus,
|
|
|
|
.mdb-form-group.is-focused & {
|
|
|
|
border: 0;
|
|
|
|
border-bottom: $input-border-width solid $input-border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
|
|
|
border-bottom: $input-border-width dotted $input-border-color;
|
|
|
|
}
|
|
|
|
}
|
2015-12-07 20:40:42 +03:00
|
|
|
|
2015-12-09 03:11:42 +03:00
|
|
|
// Focus underline animation =================================
|
2015-12-09 02:59:07 +03:00
|
|
|
.mdb-form-control-decorator {
|
|
|
|
position: relative;
|
|
|
|
top: (-1 * $input-border-width); // move the top up enough to overlay the border from the input
|
|
|
|
display: block;
|
2015-12-09 03:11:42 +03:00
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: $input-border-width;
|
|
|
|
content: "";
|
2015-12-09 04:09:56 +03:00
|
|
|
@include gradient-vertical($brand-primary, $input-border-color);
|
2015-12-09 03:11:42 +03:00
|
|
|
transition: 0.3s ease all;
|
|
|
|
|
|
|
|
// focused state - it transitions the width of each (before and after) to 50% creating the center out effect
|
|
|
|
.form-control:focus ~ &,
|
|
|
|
.mdb-form-group.is-focused .form-control ~ & {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&::before {
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
right: 50%;
|
2015-11-18 23:20:12 +03:00
|
|
|
}
|
2015-11-22 00:36:03 +03:00
|
|
|
}
|
2015-12-09 04:09:56 +03:00
|
|
|
|
|
|
|
// End: Focus underline animation =================================
|
2015-11-18 23:20:12 +03:00
|
|
|
|
2015-11-22 00:36:03 +03:00
|
|
|
// -----
|
2015-12-07 20:40:42 +03:00
|
|
|
// Labels with mdb-form-group signalled state
|
2015-11-22 00:36:03 +03:00
|
|
|
//
|
|
|
|
// Reference http://www.google.com/design/spec/components/text-fields.html
|
|
|
|
// MDL implementation: http://www.getmdl.io/components/index.html#textfields-section
|
|
|
|
//.variations(unquote(" label.control-label"), color, $mdb-input-placeholder-color); // default label color variations
|
2015-11-18 23:20:12 +03:00
|
|
|
|
2015-12-07 20:40:42 +03:00
|
|
|
.mdb-form-group {
|
2015-12-09 02:59:07 +03:00
|
|
|
position: relative;
|
2015-11-11 01:35:08 +03:00
|
|
|
|
|
|
|
// -----
|
2015-11-22 00:36:03 +03:00
|
|
|
// Labels with form-group signalled state
|
2015-11-11 01:35:08 +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-18 23:20:12 +03:00
|
|
|
&.label-static,
|
|
|
|
&.label-placeholder,
|
|
|
|
&.label-floating {
|
|
|
|
label.control-label {
|
2015-12-07 20:40:42 +03:00
|
|
|
//position: absolute;
|
|
|
|
//pointer-events: none;
|
|
|
|
//transition: 0.3s ease all;
|
2015-11-18 23:20:12 +03:00
|
|
|
}
|
|
|
|
}
|
2015-11-10 22:36:15 +03:00
|
|
|
|
2015-11-25 01:34:17 +03:00
|
|
|
// hint to browser for optimization
|
|
|
|
// TODO: evaluate effectiveness - looking for community feedback
|
|
|
|
&.label-floating label.control-label {
|
2015-12-07 20:40:42 +03:00
|
|
|
//will-change: left, top, contents;
|
2015-11-25 01:34:17 +03:00
|
|
|
}
|
|
|
|
|
2015-11-18 23:20:12 +03:00
|
|
|
// hide label-placeholders when the field is not empty
|
2015-12-07 20:40:42 +03:00
|
|
|
&.label-placeholder:not(.is-empty) {
|
|
|
|
label.control-label {
|
2015-11-18 23:20:12 +03:00
|
|
|
display: none;
|
2015-11-11 01:35:08 +03:00
|
|
|
}
|
2015-11-10 22:36:15 +03:00
|
|
|
}
|
2015-11-18 23:20:12 +03:00
|
|
|
|
2015-11-22 00:36:03 +03:00
|
|
|
// Help blocks - position: absolute approach - uses no vertical space, text wrapping - not so good.
|
2015-11-17 21:02:44 +03:00
|
|
|
.help-block {
|
2015-12-07 20:40:42 +03:00
|
|
|
//position: absolute; // do not use position: absolute because width/wrapping isn't automatic and overflows occur
|
|
|
|
//display: none;
|
2015-11-07 01:46:05 +03:00
|
|
|
}
|
2015-11-06 23:20:23 +03:00
|
|
|
|
2015-11-22 00:36:03 +03:00
|
|
|
// form-group is-focused display
|
2015-11-10 22:36:15 +03:00
|
|
|
&.is-focused {
|
2015-11-22 00:36:03 +03:00
|
|
|
|
|
|
|
label,
|
|
|
|
label.control-label {
|
|
|
|
color: $brand-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.label-placeholder {
|
|
|
|
label,
|
|
|
|
label.control-label {
|
2015-12-07 20:40:42 +03:00
|
|
|
//color: $mdb-input-placeholder-color;
|
2015-11-22 00:36:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-09 05:25:35 +03:00
|
|
|
//.help-block {
|
|
|
|
// display: block;
|
|
|
|
//}
|
2015-11-02 23:39:13 +03:00
|
|
|
}
|
|
|
|
|
2015-12-09 05:25:35 +03:00
|
|
|
//textarea {
|
|
|
|
// resize: none;
|
|
|
|
//}
|
|
|
|
}
|
2015-11-18 23:20:12 +03:00
|
|
|
|
2015-12-09 05:25:35 +03:00
|
|
|
select {
|
|
|
|
&,
|
|
|
|
&.form-control {
|
|
|
|
// Use vendor prefixes as `appearance` isn't part of the CSS spec. OSX doesn't obey the border-radius: 0 without this.
|
|
|
|
-moz-appearance: none;
|
|
|
|
-webkit-appearance: none;
|
2015-11-02 23:39:13 +03:00
|
|
|
}
|
2015-11-10 22:36:15 +03:00
|
|
|
}
|
2014-10-03 15:58:24 +04:00
|
|
|
|
2015-11-22 00:36:03 +03:00
|
|
|
// default floating size/location without a form-group (will skip form-group styles, and just render default sizing variation)
|
2015-12-07 20:40:42 +03:00
|
|
|
@include mdb-form-group-size-variant(null, $font-size-base, $mdb-label-top-margin-base, $mdb-input-padding-y-base, $line-height, $mdb-label-as-placeholder-shim-base);
|
2015-11-22 00:36:03 +03:00
|
|
|
|
|
|
|
// default floating size/location with a form-group (need margin etc from a default form-group)
|
2015-12-07 20:40:42 +03:00
|
|
|
@include mdb-form-group-size-variant(unquote(".mdb-form-group"), $font-size-base, $mdb-label-top-margin-base, $mdb-input-padding-y-base, $line-height, $mdb-label-as-placeholder-shim-base);
|
2015-11-22 00:36:03 +03:00
|
|
|
|
|
|
|
// sm floating size/location
|
2015-12-07 20:40:42 +03:00
|
|
|
@include mdb-form-group-size-variant(unquote(".mdb-form-group.mdb-form-group-sm"), $font-size-sm, $mdb-label-top-margin-sm, $mdb-input-padding-y-sm, $line-height-sm, $mdb-label-as-placeholder-shim-sm);
|
2015-11-22 00:36:03 +03:00
|
|
|
|
|
|
|
// lg floating size/location
|
2015-12-07 20:40:42 +03:00
|
|
|
@include mdb-form-group-size-variant(unquote(".mdb-form-group.mdb-form-group-lg"), $font-size-lg, $mdb-label-top-margin-lg, $mdb-input-padding-y-lg, $line-height-lg, $mdb-label-as-placeholder-shim-lg);
|
2015-11-22 00:36:03 +03:00
|
|
|
|
2015-11-07 01:46:05 +03:00
|
|
|
|
2015-11-18 23:20:12 +03:00
|
|
|
// Input files - hide actual input - requires specific markup in the sample.
|
2015-12-07 20:40:42 +03:00
|
|
|
//.mdb-form-group input[type=file] {
|
|
|
|
// opacity: 0;
|
|
|
|
// position: absolute;
|
|
|
|
// top: 0;
|
|
|
|
// right: 0;
|
|
|
|
// bottom: 0;
|
|
|
|
// left: 0;
|
|
|
|
// width: 100%;
|
|
|
|
// height: 100%;
|
|
|
|
// z-index: 100;
|
|
|
|
//}
|
|
|
|
|
|
|
|
// I don't think this was in use...
|
|
|
|
//legend {
|
|
|
|
// border-bottom: 0;
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//.form-horizontal {
|
|
|
|
//
|
|
|
|
// // Consistent vertical alignment of radios and checkboxes
|
|
|
|
// .radio,
|
|
|
|
// .checkbox,
|
|
|
|
// .radio-inline,
|
|
|
|
// .checkbox-inline {
|
|
|
|
// padding-top: 0;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// .radio {
|
|
|
|
// margin-bottom: 10px;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// label {
|
|
|
|
// text-align: right;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// label.control-label {
|
|
|
|
// margin: 0;
|
|
|
|
// }
|
|
|
|
//}
|