Sha256: d102a4dd0ae16fab8869d4bf708c32c6c8e84bc447c90cd8a6329484575780ea

Contents?: true

Size: 787 Bytes

Versions: 2

Compression:

Stored size: 787 Bytes

Contents

@mixin mdb-label-color-toggle-focus(){
  // override bootstrap focus and keep all the standard color (could be multiple radios in the form group)
  .form-group.is-focused & {
    color: $mdb-label-color;

    // on focus just darken the specific labels, do not turn them to the brand-primary
    &:hover,
    &:focus {
      color: $mdb-label-color-toggle-focus;
    }

    // correct the above focus color for disabled items
    fieldset[disabled] & {
      color: $mdb-label-color;
    }
  }
}

.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;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rails-bootstrap-material-design-0.5.10.1 app/assets/stylesheets/bootstrap-material-design/_form.scss
rails-bootstrap-material-design-0.5.10 app/assets/stylesheets/bootstrap-material-design/_form.scss