Sha256: 330a076560a758ea2bb35d060dae024c6a910b0d209f0eb75ea9cdd3c5af76a8

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

.dropdown-menu {
  margin-top: 8px;
  font-size: 13px;

  box-shadow: $dropdown-shadow;

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

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

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

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

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

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

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

  .dropup & {
    margin-top: 0;
    margin-bottom: 8px;

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

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

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

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

.dropdown-header {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
trestle-0.8.13 app/assets/stylesheets/trestle/components/_dropdown.scss
trestle-0.8.12 app/assets/stylesheets/trestle/components/_dropdown.scss