From 452e46c2485d6b03d6f33652ca8d991bcb3873a7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 31 Aug 2020 08:38:48 +0530 Subject: [PATCH] Dont make the page turn arrows red on click --- src/pyj/read_book/view.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/view.pyj b/src/pyj/read_book/view.pyj index 126d73d29b..fcb2c66f24 100644 --- a/src/pyj/read_book/view.pyj +++ b/src/pyj/read_book/view.pyj @@ -53,7 +53,7 @@ add_extra_css(def(): ans += build_rule(sel + ':hover > .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 + ':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 )