blob: 0142f8ad0e327be746d9307b0f20d157ea8a0e99 (
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
39
40
41
42
43
44
45
|
/* Move labels in the Issue/PR list below the title */
[rgh-align-issue-labels] .js-issue-row .min-width-0 {
display: flex;
flex-wrap: wrap;
}
/* Labels */
[rgh-align-issue-labels] .js-issue-row .min-width-0 > .lh-default {
order: 1;
}
[rgh-align-issue-labels] .js-issue-row .min-width-0 .text-small {
flex-basis: 100%; /* #4949 */
}
/* Build status */
[rgh-align-issue-labels] .js-issue-row .d-inline-block.mr-1 {
margin-left: 4px;
}
/* Issue details line */
[rgh-align-issue-labels] .js-issue-row .mt-1.text-small.color-fg-muted {
flex-basis: 100%;
}
/* Title */
[rgh-align-issue-labels] .js-issue-row .h4 {
max-width: 100%; /* #1518 */
}
[rgh-align-issue-labels] .js-issue-row .IssueLabel {
margin-top: 4px;
font-size: 11px !important;
}
/*
# Test URLs
https://github.com/pulls
https://github.com/bmish/eslint-doc-generator/pulls
https://github.com/bmish/eslint-doc-generator/issues
https://github.com/bmish/eslint-doc-generator/milestone/1
*/
|