Sha256: 5cfe3b394d3da256d4303f9c8c8aea0f7ec94058d5e03a67d32cca8d04d25844

Contents?: true

Size: 1.46 KB

Versions: 3

Compression:

Stored size: 1.46 KB

Contents

.dropdown-menu {
  &:before, &:after {
    content: '';
    display: inline-block;
    position: absolute;
  }

  &:before {
    top: -$dropdown-arrow-outer-width;
    left: 0.75rem;

    border-left: $dropdown-arrow-width solid transparent;
    border-right: $dropdown-arrow-width solid transparent;
    border-bottom: $dropdown-arrow-width solid var(--#{$prefix}dropdown-border-color);
  }

  &:after {
    top: -$dropdown-arrow-width;
    left: 0.75rem;

    margin-left: -1px;
    margin-right: 0;

    border-left: $dropdown-arrow-outer-width solid transparent;
    border-right: $dropdown-arrow-outer-width solid transparent;
    border-bottom: $dropdown-arrow-outer-width solid var(--#{$prefix}dropdown-bg);
  }

  &.dropdown-menu-end {
    &:before {
      left: auto;
      right: 0.75rem;
    }

    &:after {
      left: auto;
      right: 0.75rem;

      margin-left: 0;
      margin-right: -1px;
    }
  }

  .dropup & {
    &:before {
      top: auto;
      bottom: -$dropdown-arrow-outer-width;

      border-bottom: 0;
      border-top: $dropdown-arrow-width solid var(--#{$prefix}dropdown-border-color);
    }

    &:after {
      top: auto;
      bottom: -$dropdown-arrow-width;

      border-bottom: 0;
      border-top: $dropdown-arrow-outer-width solid var(--bs-dropdown-bg);
    }
  }

  @include media-breakpoint-down(md) {
    --#{$prefix}dropdown-font-size: 0.75rem;
    --#{$prefix}dropdown-padding-y: 0.375rem;
    --#{$prefix}dropdown-item-padding-x: 0.75rem;
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
trestle-0.10.1 frontend/css/components/_dropdown.scss
trestle-0.10.0 frontend/css/components/_dropdown.scss
trestle-0.10.0.pre2 frontend/css/components/_dropdown.scss