Sha256: a4206fbe9f37169063dedb7af2ec12b214a36a9053de0e5a96e8540cd46c0a50

Contents?: true

Size: 757 Bytes

Versions: 227

Compression:

Stored size: 757 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

227 entries across 227 versions & 17 rubygems

Version Path
jekyll-theme-centos-0.7.1 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.7.0 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.29 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.28 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.27 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.25 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.24 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.23 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.22 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.21 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.20 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.19 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.18 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.17 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.16 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.15 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.14 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.13 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.12 _sass/bootstrap/mixins/_hover.scss
jekyll-theme-centos-0.6.11 _sass/bootstrap/mixins/_hover.scss