blob: b14cfb9c30e713d99c4b5d7766174b346bd7664f (
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
|
/**
!!!!!! Don't forget to add `[data-url]` selectors or else it will affect unrelated pages
.gh-header-title is to exclude the sticky header
*/
[data-url^='/refined-github/refined-github/issues/3543/show_partial'] :is(
.gh-header-meta, /* Issue details */
.gh-header-actions, /* "New issue" button */
.gh-header-title .color-fg-muted /* Issue number */
),
[data-url^='/refined-github/refined-github/issues/3543/show_partial?partial=issues%2Fsidebar'] /* Sidebar */ {
display: none !important;
}
@media (min-width: 768px) {
[data-url^='/refined-github/refined-github/issues/3543/show_partial']
.gh-header-title
.js-issue-title {
font-size: 5vw !important;
font-weight: 300;
}
}
|