Dont make the page turn arrows red on click

This commit is contained in:
Kovid Goyal 2020-08-31 08:38:48 +05:30
parent bfa1fbba6f
commit 452e46c248
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -53,7 +53,7 @@ add_extra_css(def():
ans += build_rule(sel + ':hover > .not-arrow', display='none') ans += build_rule(sel + ':hover > .not-arrow', display='none')
ans += build_rule(sel + ':active > .not-arrow', display='none') ans += build_rule(sel + ':active > .not-arrow', display='none')
ans += build_rule(sel + ':hover > .arrow', display='block') ans += build_rule(sel + ':hover > .arrow', display='block')
ans += build_rule(sel + ':active > .arrow', color=get_color('window-hover-foreground'), display='block', transform='scale(2)') ans += build_rule(sel + ':active > .arrow', display='block', transform='scale(2)')
return ans return ans
) )