summaryrefslogtreecommitdiffstats
path: root/web_src/css/repo/issue-label.css
blob: 9b4b144a0090d610e0551e7ff50dc3185a42beab (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
.issue-label-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.issue-label-list .item {
  border-bottom: 1px solid var(--color-secondary);
  display: flex;
  padding: 1em 0;
  margin: 0;
}

.issue-label-list .item:first-child {
  padding-top: 0;
}

.issue-label-list .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.issue-label-list .item .label-title {
  width: 33%;
}

.issue-label-list .item .label-issues {
  width: 33%;
}

.issue-label-list .item .label-operation {
  width: 33%;
}

.issue-label-list .item a {
  font-size: 12px;
  padding-right: 10px;
  color: var(--color-text-light);
}

.issue-label-list .item.org-label {
  opacity: 0.7;
}

.label-operation .label {
  height: fit-content;
}

.archived-label-hint {
  float: right;
  margin: -12px;
}