Sha256: d17162c37aa9ebddb71fa40776cfe9126982717c973968904f9efb38a2d96b9a

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

// Range
//
// Style range inputs the same across browsers. Vendor-specific rules for pseudo
// elements cannot be mixed. As such, there are no shared styles for focus or
// active states on prefixed selectors.

.form-range {
  &:focus {
    box-shadow: none;

    // Pseudo-elements must be split across multiple rulesets to have an effect.
    // No box-shadow() mixin for focus accessibility.
    &::-webkit-slider-thumb {
      box-shadow: none;
    }
    &::-moz-range-thumb {
      box-shadow: none;
    }
    &::-ms-thumb {
      box-shadow: none;
    }
  }

  &::-moz-focus-outer {
    border: 0;
  }

  &::-webkit-slider-thumb {
    margin-top: $form-range-webkit-slider-thumb-margin-top; // Webkit specific
    box-shadow: none;
    appearance: none;
  }

  &::-webkit-slider-runnable-track {
    height: $form-range-webkit-slider-runnable-track-height;
    border-radius: 0;
    box-shadow: none;
  }

  &::-moz-range-thumb {
    box-shadow: none;
    appearance: none;
  }

  &::-moz-range-track {
    box-shadow: none;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-rubin-collab-theme-0.1.1 _third_party/mdb-ui-kit/src/scss/free/forms/_form-range.scss