Sha256: 2d593f4289231be7841314cf71dab4f31f6055da9f0df2a79e79c8e9c8753627

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

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

  &:before {
    top: -$dropdown-arrow-outer-width;
    left: 12px;

    border-left: $dropdown-arrow-width solid transparent;
    border-right: $dropdown-arrow-width solid transparent;
    border-bottom: $dropdown-arrow-width solid $dropdown-border-color;
  }

  &:after {
    top: -$dropdown-arrow-width;
    left: 11px;

    border-left: $dropdown-arrow-outer-width solid transparent;
    border-right: $dropdown-arrow-outer-width solid transparent;
    border-bottom: $dropdown-arrow-outer-width solid $dropdown-bg;
  }

  &.dropdown-menu-end {
    &:before {
      left: auto;
      right: 12px;
    }

    &:after {
      left: auto;
      right: 11px;
    }
  }

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

      border-bottom: 0;
      border-top: $dropdown-arrow-width solid $dropdown-border-color;
    }

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

      border-bottom: 0;
      border-top: $dropdown-arrow-outer-width solid $dropdown-bg;
    }
  }
}

.dropdown-menu-dark {
  &:before {
    border-bottom-color: $dropdown-dark-border-color;
  }

  &:after {
    border-bottom-color: $dropdown-dark-bg;
  }

  .dropup & {
    &:before {
      border-top-color: $dropdown-dark-border-color;
    }

    &:after {
      border-top-color: $dropdown-dark-bg;
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

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