blob: 90a4ef8c811eb6fdc6efb0508ae2e17d0042f164 (
plain) (
blame)
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
|
/* Show approvals count in PR list */
.js-issue-row
.color-fg-muted
[href$='#partial-pull-merging'][aria-label*='approval'] {
font-size: 0;
color: transparent !important;
}
.js-issue-row
.color-fg-muted
[href$='#partial-pull-merging'][aria-label*='approval']::before {
all: unset;
content: attr(aria-label);
display: inline-block !important;
color: var(--rgh-green);
font-size: 12px;
}
.js-issue-row
.color-fg-muted
[href$='#partial-pull-merging'][aria-label*='changes'] {
color: var(--rgh-red) !important;
}
/* Disable now-duplicate tooltip */
.js-issue-row
.color-fg-muted
[href$='#partial-pull-merging'][aria-label*='approval']::after {
content: none;
}
/*
Test URLs:
https://github.com/refined-github/sandbox/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc+review
*/
|