From 1f1a5fcb8ca9337a100e5dee9212352e935f7fd9 Mon Sep 17 00:00:00 2001 From: Jonathan Kingston Date: Mon, 13 Feb 2017 16:07:00 +0000 Subject: [PATCH] Making all favicons the same size even if there isn't one. Making non clickable links in the tab list greyed out. Fixes #147 --- webextension/css/popup.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/webextension/css/popup.css b/webextension/css/popup.css index 6b3c88d..6262c4c 100644 --- a/webextension/css/popup.css +++ b/webextension/css/popup.css @@ -93,6 +93,11 @@ table { max-inline-size: 16px; } +.icon[src=""] { + inline-size: 16px; + visibility: hidden; +} + table.unstriped tbody tr { background-color: #fefefe; border-block-end: 1px solid #f1f1f1; @@ -330,6 +335,10 @@ table.unstriped tbody tr { margin-block-end: 8px; } +.container-info-tab-row:not(.clickable) { + opacity: 0.3; +} + .container-info-tab-title { font-size: 12px; max-inline-size: 13em;