From fd3ab5e22ee051750dbf44c826b07c2d18108c28 Mon Sep 17 00:00:00 2001 From: gorhill Date: Wed, 25 Feb 2015 07:26:13 -0500 Subject: [PATCH] this fixes #882: added visual cue --- src/css/popup.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/css/popup.css b/src/css/popup.css index 127677b0c..c453a8552 100644 --- a/src/css/popup.css +++ b/src/css/popup.css @@ -201,7 +201,7 @@ body.dirty #refresh:hover { } #firewallContainer > div:nth-of-type(1) > span { height: 18px; - line-height: 18px; + line-height: 20px; } #firewallContainer > div:nth-of-type(1) > span:nth-of-type(1) { cursor: pointer; @@ -230,6 +230,14 @@ body.dirty #refresh:hover { #firewallContainer > div.isDomain > span:nth-of-type(1) { font-weight: bold; } +#firewallContainer > div:nth-of-type(1) > span:nth-of-type(1):before { + color: #aaa; + content: '\2012'; + padding-right: 0.25em; + } +#firewallContainer.minimized > div:nth-of-type(1) > span:nth-of-type(1):before { + content: '+'; + } #firewallContainer.minimized > div.isDomain > span:nth-of-type(3) { display: none; }