blob: 9f05fd92cdd8d2696a1678e58551ae329df37f37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Details in https://github.com/refined-github/refined-github/pull/4728/files */
/* stylelint-disable-next-line media-feature-name-no-vendor-prefix -- It's the only cross-browser media query */
@media (-webkit-min-device-pixel-ratio: 2) {
[rgh-emphasize-draft-pr-label] .js-issue-row :is(
/* Repo PR lists */
[aria-label='Open draft pull request'],
/* Global PR lists */
[aria-label='Draft Pull Request']
) svg {
stroke: var(--color-fg-muted);
stroke-width: 1.2px;
color: var(--rgh-background) !important;
paint-order: stroke;
overflow: visible !important;
}
}
|