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

filters.scss « generic « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd93a79722dd5a3b58aead122628b91c0e9b99fb (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
.filter-item {
  margin-right: 15px;
}

.issues-state-filters {
  li.active a {
    border-color: #DDD !important;

    &, &:hover, &:active, &.active {
      background: #f5f5f5 !important;
      border-bottom: 1px solid #f5f5f5 !important;
    }
  }
}

.issues-details-filters {
  font-size: 13px;
  background: #f5f5f5;
  margin: -10px 0;
  padding: 10px 15px;
  margin-top: -15px;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;

  .btn {
    font-size: 13px;
  }
}

@media (min-width: 800px)  {
  .issues-filters,
  .issues_bulk_update {
    select, .select2-container {
      width: 120px !important;
      display: inline-block;
    }
  }
}

@media (min-width: 1200px) {
  .issues-filters,
  .issues_bulk_update {
    select, .select2-container {
      width: 150px !important;
      display: inline-block;
    }
  }
}

.issues-filters,
.issues_bulk_update {
  .select2-container .select2-choice {
    color: #444 !important;
  }
}