Sha256: d3712f2c229d8a230826666a5abfe9ffdc795e884a054d72719cf06f1a1856ff

Contents?: true

Size: 1.01 KB

Versions: 29

Compression:

Stored size: 1.01 KB

Contents

// stylelint-disable indentation
@mixin hover {
  // TODO: re-enable along with mq4-hover-shim
//  @if $enable-hover-media-query {
//    // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover
//    // Currently shimmed by https://github.com/twbs/mq4-hover-shim
//    @media (hover: hover) {
//      &:hover { @content }
//    }
//  }
//  @else {
    &:hover { @content; }
//  }
}


@mixin hover-focus {
  @if $enable-hover-media-query {
    &:focus {
      @content;
    }
    @include hover { @content; }
  } @else {
    &:focus,
    &:hover {
      @content;
    }
  }
}

@mixin plain-hover-focus {
  @if $enable-hover-media-query {
    &,
    &:focus {
      @content;
    }
    @include hover { @content; }
  } @else {
    &,
    &:focus,
    &:hover {
      @content;
    }
  }
}

@mixin hover-focus-active {
  @if $enable-hover-media-query {
    &:focus,
    &:active {
      @content;
    }
    @include hover { @content; }
  } @else {
    &:focus,
    &:active,
    &:hover {
      @content;
    }
  }
}

Version data entries

29 entries across 27 versions & 6 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/bootstrap-css/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.4.3 spec/dummy/node_modules/bootstrap-css/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.4.2 spec/dummy/node_modules/bootstrap-css/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.3.35 node_modules/maxivak-bootstrap-css/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.3.35 spec/dummy/node_modules/maxivak-bootstrap-css/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.3.34 spec/dummy/node_modules/maxivak-bootstrap-css/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.3.34 node_modules/maxivak-bootstrap-css/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.3.30 spec/dummy/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.3.29 spec/dummy/node_modules/bootstrap/scss/mixins/_hover.scss
optimacms-0.3.23 spec/dummy/node_modules/bootstrap/scss/mixins/_hover.scss
card-1.93.7 mod/bootstrap/vendor/bootstrap/scss/mixins/_hover.scss
comfortable_mexican_sofa-2.0.9 app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_hover.scss
comfortable_mexican_sofa-2.0.8 app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_hover.scss
vv5-portfolio-0.1.4 _sass/bootstrap/bootstrap/mixins/_hover.scss
vv5-portfolio-0.1.3 _sass/bootstrap/bootstrap/mixins/_hover.scss
vv5-portfolio-0.1.2 _sass/bootstrap/bootstrap/mixins/_hover.scss
vv5-portfolio-0.1.1 _sass/bootstrap/bootstrap/mixins/_hover.scss
vv5-portfolio-0.1.0 _sass/bootstrap/bootstrap/mixins/_hover.scss
bootstrap-4.0.0.beta3 assets/stylesheets/bootstrap/mixins/_hover.scss
comfortable_mexican_sofa-2.0.7 app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_hover.scss