summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/vendors/tribute.scss
blob: 65f3d1b6199751fb06877cf267c10a9c6b0d253a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.tribute-container {
  background: $white;
  border: 1px solid $gray-100;
  border-radius: $border-radius-base;
  box-shadow: 0 0 5px $issue-boards-card-shadow;
  color: $black;
  margin-top: $gl-padding-12;
  max-height: 200px;
  min-width: 120px;
  overflow-y: auto;
  z-index: 11110 !important;

  ul {
    list-style: none;
    margin-bottom: 0;
    padding: $gl-padding-8 1px;
  }

  li {
    cursor: pointer;
    padding: $gl-padding-8 $gl-padding;
    white-space: nowrap;

    small {
      color: $gray-500;
    }

    &.highlight {
      background-color: $gray-darker;

      .avatar {
        @include disable-all-animation;
        border: 1px solid $white;
      }

      small {
        color: inherit;
      }
    }
  }
}