From 602c89fc12b21870ff9ed81a4c06ac025945eb83 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 9 Oct 2008 23:48:24 +0000 Subject: [PATCH] Restrict favicons to 16x16 in completions. --- skin/liberator.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/skin/liberator.css b/skin/liberator.css index 648ecbf5..74b7c9a7 100644 --- a/skin/liberator.css +++ b/skin/liberator.css @@ -76,8 +76,9 @@ the terms of any one of the MPL, the GPL or the LGPL. .compitem-td-span { height: 1.5em; display: block; } .compitem[selected=true] { background-color: yellow; } -.compitem > .favicon { width: 16px; } -.compitem > .completion { width: 45%; overflow: hidden; } +.compitem > .favicon { width: 16px; } +.favicon > img { max-width: 16px, max-height: 16px} +.compitem > .completion { width: 45%; overflow: hidden; } .compitem > .description { color: gray; } .extra-info { color: gray; }