Sha256: 8b9eef78fa99b2e69ccd3312fba47e31da6f68fcf7aed81ff26aebcb7f033fbc

Contents?: true

Size: 1.39 KB

Versions: 224

Compression:

Stored size: 1.39 KB

Contents

@mixin caret-down() {
  border-top: $caret-width solid;
  border-right: $caret-width solid transparent;
  border-bottom: 0;
  border-left: $caret-width solid transparent;
}

@mixin caret-up() {
  border-top: 0;
  border-right: $caret-width solid transparent;
  border-bottom: $caret-width solid;
  border-left: $caret-width solid transparent;
}

@mixin caret-right() {
  border-top: $caret-width solid transparent;
  border-right: 0;
  border-bottom: $caret-width solid transparent;
  border-left: $caret-width solid;
}

@mixin caret-left() {
  border-top: $caret-width solid transparent;
  border-right: $caret-width solid;
  border-bottom: $caret-width solid transparent;
}

@mixin caret($direction: down) {
  @if $enable-caret {
    &::after {
      display: inline-block;
      margin-left: $caret-spacing;
      vertical-align: $caret-vertical-align;
      content: "";
      @if $direction == down {
        @include caret-down();
      } @else if $direction == up {
        @include caret-up();
      } @else if $direction == right {
        @include caret-right();
      }
    }

    @if $direction == left {
      &::after {
        display: none;
      }

      &::before {
        display: inline-block;
        margin-right: $caret-spacing;
        vertical-align: $caret-vertical-align;
        content: "";
        @include caret-left();
      }
    }

    &:empty::after {
      margin-left: 0;
    }
  }
}

Version data entries

224 entries across 224 versions & 15 rubygems

Version Path
devops4lib-jekyll-theme-conference-0.0.1 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.6.6 _sass/bootstrap/mixins/_caret.scss
bootstrap-4.6.2.1 assets/stylesheets/bootstrap/mixins/_caret.scss
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/bootstrap-4.6.2/assets/stylesheets/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.6.5 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.6.4 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.6.3 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.6.2 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.6.1 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-centos-0.9.20221031122647 _sass/bootstrap/mixins/_caret.scss
bootstrap-4.6.2 assets/stylesheets/bootstrap/mixins/_caret.scss
nex-bootstrap-4.6.3 assets/stylesheets/bootstrap/mixins/_caret.scss
jekyll-theme-centos-0.9.20220805132206 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.6.0 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-centos-0.9.20220227231551 _sass/bootstrap/mixins/_caret.scss
viniBaxter-desk_front-300.0.12 lib/viniBaxter/sass/desk_front/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.5.0 _sass/bootstrap/mixins/_caret.scss
viniBaxter-desk_front-300.0.11 lib/viniBaxter/sass/desk_front/bootstrap/mixins/_caret.scss
jekyll-theme-conference-3.4.1 _sass/bootstrap/mixins/_caret.scss
jekyll-theme-centos-0.9.20220212202853 _sass/bootstrap/mixins/_caret.scss