Welcome to mirror list, hosted at ThFree Co, Russian Federation.

selects.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f3286cef1d9afe220a293810785de8fd1c17403 (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
51
52
53
54
55
56
.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 {
  width: calc(70% - #{$gl-spacing-scale-5});

  .gl-new-dropdown-toggle {
    width: 100%;
  }

  .dropdown-menu {
    width: 100%;
    @include gl-max-w-none;
  }

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