From c07ca791d4fcbb0ac4e99d9780be3f6e68aab1dc Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 15 Jan 2014 14:58:32 -0700 Subject: [PATCH] Use slightly darker background color rather than glow to indicate focus --- stylesheets/panes.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stylesheets/panes.less b/stylesheets/panes.less index e2098bc..f3e502c 100644 --- a/stylesheets/panes.less +++ b/stylesheets/panes.less @@ -10,10 +10,10 @@ .panes { .pane { - background-color: @app-background-color; + background-color: lighten(@app-background-color, 4%); - &:focus .item-views { - box-shadow: inset 0 0 7px #6aa5e9; + &:focus { + background-color: @app-background-color; } }