mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 04:07:55 +03:00
200 lines
5.4 KiB
SCSS
200 lines
5.4 KiB
SCSS
form {
|
|
// ensure enough room at the bottom of any form to display a one-line mdb-help
|
|
margin-bottom: ($mdb-help-size-ratio * $font-size-base) * $line-height;
|
|
|
|
// reverse the above for navbars (no help expected in a navbar form)
|
|
.navbar & {
|
|
margin: 0;
|
|
|
|
.mdb-form-group {
|
|
display: inline-block;
|
|
padding-top: 0;
|
|
}
|
|
|
|
.btn {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// -----
|
|
// Inputs
|
|
//
|
|
// Reference http://www.google.com/design/spec/components/text-fields.html
|
|
// MDL implementation: http://www.getmdl.io/components/index.html#textfields-section
|
|
.form-control {
|
|
// 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-btn-border-width solid $input-border-color;
|
|
}
|
|
|
|
@include mdb-disabled() {
|
|
border-bottom: $input-btn-border-width dotted $input-border-color;
|
|
}
|
|
}
|
|
|
|
// Focus underline animation =================================
|
|
.mdb-form-control-decorator {
|
|
position: relative;
|
|
top: (-1 * $input-btn-border-width); // move the top up enough to overlay the border from the input
|
|
display: block;
|
|
&::before,
|
|
&::after {
|
|
position: absolute;
|
|
width: 0;
|
|
height: $input-btn-border-width + 1;
|
|
content: "";
|
|
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%;
|
|
}
|
|
}
|
|
|
|
// End: Focus underline animation =================================
|
|
|
|
// Help blocks (not in v4)
|
|
// position: absolute approach - uses no vertical space and there is no form jumping, but text wrapping - not so good.
|
|
// FIXME: width/wrapping isn't automatic and overflows occur. What are some solutions?
|
|
//
|
|
.mdb-help {
|
|
position: absolute;
|
|
display: none;
|
|
font-size: 80%;
|
|
font-weight: normal;
|
|
@extend .text-muted;
|
|
|
|
.mdb-form-group.is-focused & {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
// -----
|
|
// State coloring: default, success, info, warning, danger
|
|
//
|
|
@include mdb-selection-color();
|
|
@include mdb-form-color($mdb-label-color, $mdb-label-color-focus, $input-border-color);
|
|
|
|
.has-success {
|
|
@include mdb-form-color($brand-success, $brand-success, $brand-success);
|
|
}
|
|
|
|
.has-info {
|
|
@include mdb-form-color($brand-info, $brand-info, $brand-info);
|
|
}
|
|
|
|
.has-warning {
|
|
@include mdb-form-color($brand-warning, $brand-warning, $brand-warning);
|
|
}
|
|
|
|
.has-danger {
|
|
@include mdb-form-color($brand-danger, $brand-danger, $brand-danger);
|
|
}
|
|
|
|
// 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"), color, $mdb-input-placeholder-color); // default label color variations
|
|
|
|
// Whereas .form-group adds structure, mdb-form-group just needs to make sure we have enough padding for our labels to work. That's the only purpose.
|
|
.mdb-form-group {
|
|
position: relative;
|
|
|
|
// -----
|
|
// Labels
|
|
//
|
|
// Reference http://www.google.com/design/spec/components/text-fields.html
|
|
// MDL implementation: http://www.getmdl.io/components/index.html#textfields-section
|
|
[class^='mdb-label'],
|
|
[class*=' mdb-label'] {
|
|
position: absolute;
|
|
pointer-events: none;
|
|
transition: 0.3s ease all;
|
|
|
|
// hint to browser for optimization
|
|
&.mdb-label-floating {
|
|
will-change: left, top, contents; // TODO: evaluate effectiveness - looking for community feedback
|
|
}
|
|
}
|
|
|
|
// hide label-placeholders when the field is filled
|
|
&.is-filled .mdb-label-placeholder {
|
|
display: none;
|
|
}
|
|
|
|
// default floating size/location with an mdb-form-group
|
|
@include mdb-form-size-variant($font-size-base, $mdb-label-top-margin-base, $input-padding-y, $mdb-form-line-height, "mdb-form-group default");
|
|
|
|
// sm floating size/location
|
|
&.mdb-form-group-sm {
|
|
@include mdb-form-size-variant($font-size-sm, $mdb-label-top-margin-sm, $input-padding-y-sm, $mdb-form-line-height-sm, "mdb-form-group sm");
|
|
}
|
|
|
|
// lg floating size/location
|
|
&.mdb-form-group-lg {
|
|
@include mdb-form-size-variant($font-size-lg, $mdb-label-top-margin-lg, $input-padding-y-lg, $mdb-form-line-height-sm, "mdb-form-group lg");
|
|
}
|
|
}
|
|
|
|
// FIXME: remove the following, I don't think it is necessary any longer and just adds more rules that are already matched above.
|
|
// default floating size/location without a form-group (will skip form-group styles, and just render default sizing variation)
|
|
//@include mdb-form-size-variant($font-size-base, $mdb-label-top-margin-base, $input-padding-y, $line-height, $mdb-label-as-placeholder-shim-base);
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
// Input files - hide actual input - requires specific markup in the sample.
|
|
//.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;
|
|
//}
|
|
|
|
//
|
|
//
|
|
//.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 {
|
|
// margin: 0;
|
|
// }
|
|
//}
|