Sha256: 39138b76c0828f8acd87b308de6706a40a840a449b7a8d292c7216b0c545aa91

Contents?: true

Size: 786 Bytes

Versions: 3

Compression:

Stored size: 786 Bytes

Contents

// Hover mixin and `$enable-hover-media-query` are deprecated.
//
// Originally added during our alphas and maintained during betas, this mixin was
// designed to prevent `:hover` stickiness on iOS-an issue where hover styles
// would persist after initial touch.
//
// For backward compatibility, we've kept these mixins and updated them to
// always return their regular pseudo-classes instead of a shimmed media query.
//
// Issue: https://github.com/twbs/bootstrap/issues/25195

@mixin hover {
  &:hover { @content; }
}

@mixin hover-focus {
  &:hover,
  &:focus {
    @content;
  }
}

@mixin plain-hover-focus {
  &,
  &:hover,
  &:focus {
    @content;
  }
}

@mixin hover-focus-active {
  &:hover,
  &:focus,
  &:active {
    @content;
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mancalledmountain-theme-0.1.2 _sass/vendors/bootstrap/mixins/_hover.scss
mancalledmountain-theme-0.1.1 _sass/vendors/bootstrap/mixins/_hover.scss
mancalledmountain-theme-0.1.0 _sass/vendors/bootstrap/mixins/_hover.scss