summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/selects.scss
blob: 98083fbc72af2183686eec5026ed172e41ff144e (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
42
43
44
45
46
47
48
49
50
.group-result {
  .group-image {
    float: left;
  }

  .group-name {
    font-weight: $gl-font-weight-bold;
  }

  .group-path {
    color: $gray-300;
  }
}

.project-result {
  .project-name {
    font-weight: $gl-font-weight-bold;
  }

  .project-path {
    color: $gray-300;
  }
}

.user-result {
  min-height: 24px;
  display: flex;
  align-items: center;

  .user-image {
    float: left;
  }

  &.no-username {
    .user-name {
      line-height: 24px;
    }
  }
}

.approvers-select {
  .dropdown-menu {
    @include gl-w-full;
    @include gl-max-w-none;
  }

  .gl-dropdown-item-check-icon {
    @include gl-display-none;
  }
}