From c567ccbaffd7589f548e500d574d1f1d8434d938 Mon Sep 17 00:00:00 2001 From: r888888888 Date: Sun, 2 Aug 2015 18:34:29 -0700 Subject: [PATCH] fixes #1775: Selecting autocomplete entry with arrow keys changes its color to black --- app/assets/stylesheets/specific/posts.css.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/assets/stylesheets/specific/posts.css.scss b/app/assets/stylesheets/specific/posts.css.scss index 26311b123..4c6732143 100644 --- a/app/assets/stylesheets/specific/posts.css.scss +++ b/app/assets/stylesheets/specific/posts.css.scss @@ -143,7 +143,7 @@ a.blacklisted-active { } } -.category-0 a, a.tag-type-0 { +.category-0 a, a.tag-type-0, .ui-state-focus a.tag-type-0 { color: $link_color; &:hover { @@ -151,7 +151,7 @@ a.blacklisted-active { } } -.category-1 a, a.tag-type-1 { +.category-1 a, a.tag-type-1, .ui-state-focus a.tag-type-1 { color: #A00; &:hover { @@ -159,7 +159,7 @@ a.blacklisted-active { } } -.category-3 a, a.tag-type-3 { +.category-3 a, a.tag-type-3, .ui-state-focus a.tag-type-3 { color: #A0A; &:hover { @@ -167,7 +167,7 @@ a.blacklisted-active { } } -.category-4 a, a.tag-type-4 { +.category-4 a, a.tag-type-4, .ui-state-focus a.tag-type-4 { color: #0A0; &:hover { @@ -175,7 +175,7 @@ a.blacklisted-active { } } -.category-banned a, a.tag-type-banned { +.category-banned a, a.tag-type-banned,, .ui-state-focus a.tag-type-banned { color: black; background-color: red; }