blob: 10fc8ffc31199db3bd884d4dfb951667fa0fa4d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Hovering the line will highlight the first direction button, unless you hover the buttons directly */
.rgh-extend-diff-expander
.js-expandable-line:hover
:is(
.blob-num:not(:hover) .directional-expander:first-child,
.blob-num:not(:hover) + .blob-code
) {
color: var(--color-state-hover-primary-text, #fff);
background: var(--color-state-hover-primary-bg, #0366d6);
border-color: var(--color-state-hover-primary-border, #0366d6);
cursor: pointer;
}
|