2016-03-21 17:56:51 +03:00
@mixin bmd-disabled () {
2016-01-26 21:12:48 +03:00
fieldset [ disabled ] [ disabled ] & ,
& . disabled ,
& : disabled ,
& [ disabled ] {
2017-08-11 17:59:31 +03:00
@content ;
2016-01-26 21:12:48 +03:00
}
}
2016-03-21 17:56:51 +03:00
@mixin bmd-selection-color () {
2016-01-26 21:12:48 +03:00
. radio label ,
. radio-inline ,
. checkbox label ,
. checkbox-inline ,
. switch label {
// override bootstrap focus and keep all the standard color (could be multiple radios in the form group)
2016-03-28 23:18:19 +03:00
//color: $bmd-label-color;
2016-01-26 21:12:48 +03:00
& ,
. is-focused & {
// form-group focus could change multiple checkboxes/radios, disable that change by using the same color as non-form-group is-focused
2016-03-28 23:18:19 +03:00
color : $bmd-label-color ;
2016-01-26 21:12:48 +03:00
// on focus just darken the specific labels, do not turn them to the brand-primary
@include hover-focus-active () {
//&:hover,
//&:focus {
2016-03-28 23:18:19 +03:00
color : $bmd-label-color-inner-focus ;
2016-01-26 21:12:48 +03:00
}
// correct the above focus color for disabled items
2017-08-11 17:59:31 +03:00
label : has ( input [ type = radio ][ disabled ]) ,
// css 4 which is unlikely to work for a while, but no other pure css way.
label : has ( input [ type = checkbox ][ disabled ]) ,
// css 4
2016-01-26 21:12:48 +03:00
fieldset [ disabled ] & {
& ,
& : hover ,
& : focus {
2016-03-28 23:18:19 +03:00
color : $bmd-label-color ;
2016-01-26 21:12:48 +03:00
}
}
}
}
// Style for disabled inputs OLD, use color approach with opacity built in, see radios
//fieldset[disabled] &,
//fieldset[disabled] & input[type=checkbox],
//input[type=checkbox][disabled]:not(:checked) ~ .checkbox-decorator .check::before,
//input[type=checkbox][disabled]:not(:checked) ~ .checkbox-decorator .check,
2016-03-21 17:56:51 +03:00
//input[type=checkbox][disabled] + .bmd-radio-outer-circle {
2016-01-26 21:12:48 +03:00
// opacity: 0.5;
//}
}
2016-03-21 17:56:51 +03:00
@mixin bmd-radio-color ( $color ) {
2016-08-05 13:44:27 +03:00
& : : after {
2016-01-26 21:12:48 +03:00
border-color : $color ;
}
2016-08-05 13:44:27 +03:00
& : : before {
background-color : $color ;
}
2016-01-26 21:12:48 +03:00
}
2016-03-21 17:56:51 +03:00
@mixin bmd-form-color ( $label-color , $label-color-focus , $border-color ) {
[ class ^ = ' bmd-label ' ] ,
[ class * = ' bmd-label ' ] {
2016-01-26 21:12:48 +03:00
color : $label-color ;
}
// override BS and keep the border-color normal/grey so that overlaid focus animation draws attention
. form-control {
2016-01-26 23:37:28 +03:00
// underline animation color on focus
2017-08-11 17:59:31 +03:00
$underline-background-image : linear-gradient (
to top ,
$ label-color-focus 2px ,
fade-out ( $ label-color-focus , 1 ) 2px
) ,
linear-gradient (
to top ,
$ input-border-color 1px ,
fade-out ( $ input-border-color , 1 ) 1px
) ;
$underline-background-image-invalid : linear-gradient (
to top ,
$ bmd-invalid-underline 2px ,
fade-out ( $ bmd-invalid-underline , 1 ) 2px
) ,
linear-gradient (
to top ,
$ input-border-color 1px ,
fade-out ( $ input-border-color , 1 ) 1px
) ;
$underline-background-image-readonly : linear-gradient (
to top ,
$ bmd-readonly-underline 1px ,
fade-out ( $ bmd-readonly-underline , 1 ) 1px
) ,
linear-gradient (
to top ,
$ input-border-color 1px ,
fade-out ( $ input-border-color , 1 ) 1px
) ;
$underline-background-image-disabled : linear-gradient (
to right ,
$ input-border-color 0 % ,
$ input-border-color 30 % ,
transparent 30 % ,
transparent 100 %
) ;
2016-01-26 23:37:28 +03:00
// bg image is always there, we just need to reveal it
& ,
. is-focused & {
background-image : $underline-background-image ;
}
2016-08-03 01:51:17 +03:00
& : invalid {
background-image : $underline-background-image-invalid ;
}
& : read-only {
background-image : $underline-background-image-readonly ;
}
@include bmd-disabled () {
background-image : $underline-background-image-disabled ;
background-repeat : repeat-x ;
background-size : 3 px 1 px ;
}
2016-01-26 23:37:28 +03:00
// allow underline focus image and validation images to coexist
& . form-control-success {
& ,
. is-focused & {
2016-02-08 22:42:01 +03:00
background-image : $underline-background-image , $form-icon-success ;
2016-01-26 23:37:28 +03:00
}
}
& . form-control-warning {
& ,
. is-focused & {
2016-02-08 22:42:01 +03:00
background-image : $underline-background-image , $form-icon-warning ;
2016-01-26 23:37:28 +03:00
}
}
& . form-control-danger {
& ,
. is-focused & {
2016-02-08 22:42:01 +03:00
background-image : $underline-background-image , $form-icon-danger ;
2016-01-26 23:37:28 +03:00
}
}
2016-01-26 21:12:48 +03:00
}
2017-08-11 17:59:31 +03:00
. is-focused ,
// may or may not be a form-group or bmd-form-group
2016-01-26 21:12:48 +03:00
& . is-focused {
// on focus set borders and labels to the validation color
// Use the BS provided mixin for the bulk of the color
2017-08-11 17:59:31 +03:00
@include form-validation-state ( " valid " , $label-color ) ;
2016-01-26 21:12:48 +03:00
2016-03-21 17:56:51 +03:00
[ class ^ = ' bmd-label ' ] ,
[ class * = ' bmd-label ' ] {
2016-01-26 21:12:48 +03:00
color : $label-color-focus ;
}
2016-03-21 17:56:51 +03:00
. bmd-label-placeholder {
2016-01-26 21:12:48 +03:00
color : $label-color ; // keep the placeholder color
}
// Set the border and box shadow on specific inputs to match
. form-control {
border-color : $border-color ;
}
// Set validation states also for addons
2016-04-30 00:03:40 +03:00
//.input-group-addon {
// border-color: $border-color;
//}
2016-01-26 21:12:48 +03:00
2016-03-21 17:56:51 +03:00
. bmd-help {
2016-03-28 23:18:19 +03:00
color : $bmd-label-color-inner-focus ;
2016-01-26 21:12:48 +03:00
}
}
}
// must be broken out for reuse - webkit selector breaks firefox
2016-03-21 17:56:51 +03:00
@mixin bmd-label-static ( $label-top , $static-font-size ) {
2016-01-26 21:12:48 +03:00
top : $label-top ;
left : 0 ;
// must repeat because the previous (more generic) selectors
font-size : $static-font-size ;
}
2016-03-21 17:56:51 +03:00
@mixin bmd-form-size-variant ( $font-size , $label-top-margin , $variant-padding-y , $variant-line-height , $form-group-context : null ) {
2017-08-11 17:59:31 +03:00
$variant-input-height : (
( $ font-size * $ variant-line-height ) + ( $ variant-padding-y * 2 )
) ;
2016-03-28 23:18:19 +03:00
$static-font-size : ( $bmd-bmd-label-static-size-ratio * $font-size ) ;
$help-font-size : ( $bmd-help-size-ratio * $font-size ) ;
2016-01-26 21:12:48 +03:00
$label-static-top : $label-top-margin ;
2017-08-11 17:59:31 +03:00
$label-placeholder-top : $label-top-margin + $static-font-size +
$ variant-padding-y ;
2016-01-26 21:12:48 +03:00
//@debug "font-size: #{$font-size} static-font-size: #{$static-font-size} help-font-size: #{$help-font-size} form-group-context: #{$form-group-context} ";
//Label height: 72dp
//Padding above label text: 16dp
//Padding between label and input text: 8dp
//Padding below input text (including divider): 16dp
//Padding below text divider: 8dp
@if $form-group-context {
2016-03-21 17:56:51 +03:00
// Create a space at the top of the bmd-form-group for the label.
2016-01-26 21:12:48 +03:00
// The label is absolutely positioned, so we use top padding to make space. This padding extends over the label down to the top of the input (padding).
padding-top : ( $label-top-margin + $static-font-size ) ;
// note: bottom-margin of this is determined by $spacer. @see _spacer.scss
//margin-bottom: (1.5 * $help-font-size);
}
2016-01-29 20:50:26 +03:00
// TODO: remove this when known stable. https://github.com/FezVrasta/bootstrap-material-design/issues/849
//@else {
//
// // for radios and checkboxes without a form-group, add some extra vertical spacing to pad down so that
// // any help text above is not encroached upon, or so that it appears more evenly spaced vs form-groups
// .radio,
// label.radio-inline,
// .checkbox,
// label.checkbox-inline,
// .switch {
// padding-top: $spacer-y;
// }
//}
2016-01-26 21:12:48 +03:00
// Set all line-heights preferably to 1 so that we can space out everything manually without additional added space
// from the default line-height of 1.5
. form-control ,
label ,
input : : placeholder {
line-height : $variant-line-height ;
}
. radio label ,
label . radio-inline ,
. checkbox label ,
label . checkbox-inline ,
. switch label {
2016-02-05 19:41:42 +03:00
line-height : $line-height-base ; // keep the same line height for radios and checkboxes
2016-01-26 21:12:48 +03:00
}
2016-03-21 17:56:51 +03:00
// Note: this may be inside or outside a form-group, may be .bmd-form-group.bmd-form-group-sm or .bmd-form-group.bmd-form-group-lg
2016-01-26 21:12:48 +03:00
input : : placeholder {
font-size : $font-size ;
}
// generic labels used anywhere in the form
. checkbox label ,
. radio label ,
label {
font-size : $font-size ;
}
// floating/placeholder default (no focus)
2016-03-21 17:56:51 +03:00
. bmd-label-floating ,
. bmd-label-placeholder {
2016-01-26 21:12:48 +03:00
//@debug "top: #{$label-as-placeholder-top}";
top : $label-placeholder-top ; // place the floating label to look like a placeholder with input padding
}
// floating focused/filled will look like static
& . is-focused ,
. is-focused ,
& . is-filled ,
. is-filled {
2016-03-21 17:56:51 +03:00
. bmd-label-floating {
@include bmd-label-static ( $label-static-top , $static-font-size ) ;
2016-01-26 21:12:48 +03:00
}
}
// static
2016-03-21 17:56:51 +03:00
. bmd-label-static {
@include bmd-label-static ( $label-static-top , $static-font-size ) ;
2016-01-26 21:12:48 +03:00
}
// #559 Fix for webkit/chrome autofill - rule must be separate because it breaks firefox otherwise #731
2016-03-21 17:56:51 +03:00
//input:-webkit-autofill ~ .bmd-label-floating { FIXME: confirm that the autofill js generation of change event makes this unnecessary
// @include bmd-label-static($label-top, $static-font-size, $static-line-height);
2016-01-26 21:12:48 +03:00
//}
2016-03-21 17:56:51 +03:00
. bmd-help {
2016-01-26 21:12:48 +03:00
margin-top : 0 ; // allow the input margin to set-off the top of the help-block
font-size : $help-font-size ;
}
2016-01-26 23:37:28 +03:00
// validation icon placement
. form-control {
& . form-control-success ,
& . form-control-warning ,
& . form-control-danger {
2016-02-08 22:42:01 +03:00
$icon-bg-size : ( $variant-input-height * .5 ) ( $variant-input-height * .5 ) ;
2016-03-28 23:18:19 +03:00
background-size : $bmd-form-control-bg-size , $icon-bg-size ;
2016-01-26 23:37:28 +03:00
& ,
& : focus ,
2016-03-21 17:56:51 +03:00
. bmd-form-group . is-focused & {
2016-01-26 23:37:28 +03:00
padding-right : ( $input-padding-x * 3 ) ;
2016-03-28 23:18:19 +03:00
background-repeat : $bmd-form-control-bg-repeat-y , no-repeat ;
2017-08-11 17:59:31 +03:00
background-position : $bmd-form-control-bg-position ,
center right ( $ variant-input-height * . 25 ) ;
2016-01-26 23:37:28 +03:00
}
& : focus ,
2016-03-21 17:56:51 +03:00
. bmd-form-group . is-focused & {
2016-03-28 23:18:19 +03:00
background-size : $bmd-form-control-bg-size-active , $icon-bg-size ;
2016-01-26 23:37:28 +03:00
}
}
}
2016-01-26 21:12:48 +03:00
}