From bbde86cfb8087f9d0c70b15e52bf2972d76595ab 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 303a0d1f7..f4397ccff 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;