summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/components/ref_selector.scss
blob: 970a7b967ee4a4ada2fd81de77c75795d3d73347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.ref-selector {
  & &-dropdown-content {
    // Setting a max height is necessary to allow the dropdown's content
    // to control where and how scrollbars appear.
    // This content is limited to the max-height of the dropdown
    // ($dropdown-max-height-lg) minus the additional padding
    // on the top and bottom (2 * $gl-padding-8)
    max-height: $dropdown-max-height-lg - 2 * $gl-padding-8;
  }

  .dropdown-menu.show {
    // Make the dropdown a little wider and longer than usual
    // since it contains quite a bit of content.
    width: 20rem;
    max-height: $dropdown-max-height-lg;
  }
}