summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/selects.scss
blob: ea741af918c51baa8d07963478d90d8637266582 (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
.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;
    }
  }
}