diff options
author | gorhill <rhill@raymondhill.net> | 2015-02-25 07:26:13 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-02-25 07:26:13 -0500 |
commit | fd3ab5e22ee051750dbf44c826b07c2d18108c28 (patch) | |
tree | 909edf9dbcd1e2fd58c4d4db58c6f108cc0f97d4 /src/css | |
parent | b3511a5b920ddc3aff2c85054ad8e1bf0b91f860 (diff) | |
download | uBlock-fd3ab5e22ee051750dbf44c826b07c2d18108c28.zip uBlock-fd3ab5e22ee051750dbf44c826b07c2d18108c28.tar.gz uBlock-fd3ab5e22ee051750dbf44c826b07c2d18108c28.tar.bz2 |
this fixes #882: added visual cue
Diffstat (limited to 'src/css')
-rw-r--r-- | src/css/popup.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/css/popup.css b/src/css/popup.css index 127677b..c453a85 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; } |