From 6004f00560b219f79758e386cb907b01fc318e77 Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Wed, 23 Jul 2014 20:48:33 +0200 Subject: [PATCH] neutral active state for non-ticket tasks #130 --- app/assets/stylesheets/zzz.css.erb | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/zzz.css.erb b/app/assets/stylesheets/zzz.css.erb index 5325c7400..5ccf69615 100644 --- a/app/assets/stylesheets/zzz.css.erb +++ b/app/assets/stylesheets/zzz.css.erb @@ -877,7 +877,8 @@ ol.tabs li { background-position: 0 -115px; } - .icon-switch:hover .organisation.icon { + .icon-switch:hover .organisation.icon, + .task.active .organisation.icon { background-position: 0 -128px; } @@ -887,7 +888,8 @@ ol.tabs li { background-position: -14px -115px; } - .icon-switch:hover .user.icon { + .icon-switch:hover .user.icon, + .task.active .user.icon { background-position: -14px -128px; } @@ -1406,7 +1408,7 @@ footer { border-bottom: 1px solid rgba(240, 250, 255, .05); } - .navbar-nav > li.active a { + .navigation .nav > li.active > a { background: #389ed9; } @@ -1469,6 +1471,10 @@ footer { background: #26272e; } + .task.active { + background: #389ed9; + } + .task.active .name { color: white; }