blob: 9a9cd032e3739cb0f785156b2f0d9e2baf3b1707 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Hide only when the dropdown is closed */
.rgh-hide-watch-and-fork-count details:not([open]) .btn-with-count[title^='Fork your own'],
.rgh-hide-watch-and-fork-count [action='/notifications/subscribe'] details:not([open]) .btn-with-count {
border-radius: 0.25em; /* Matches GitHub's default */
}
.rgh-hide-watch-and-fork-count details:not([open]) + .social-count[href$='/network/members'],
.rgh-hide-watch-and-fork-count details:not([open]) + .social-count[href$='/watchers'] {
display: none;
}
/* Bring the counts above the lightbox, to make them clickable */
.rgh-hide-watch-and-fork-count details[open] + .social-count[href$='/network/members'],
.rgh-hide-watch-and-fork-count details[open] + .social-count[href$='/watchers'] {
position: relative;
z-index: 100;
}
|