From d4834bc6c7edd95cb92899fa2ae005f7bb24af90 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Fri, 6 Jan 2012 15:06:21 +0000 Subject: [PATCH] web: fix font in loaded html When dynamically loading the content panels in the details panel they would sometimes look quite bad since the only font they have been told to use is verdana. Fix this why using the same as extjs. --- deluge/ui/web/css/deluge.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/web/css/deluge.css b/deluge/ui/web/css/deluge.css index c1da56f2e..968406634 100644 --- a/deluge/ui/web/css/deluge.css +++ b/deluge/ui/web/css/deluge.css @@ -1,5 +1,5 @@ html, body { - font: normal 0.8em verdana; + font: normal 11px arial, tahoma, helvetica, sans-serif; margin: 0; padding: 0; border: 0 none;