From 140e8103b05b68f9bb4f49bff58238a3d5711bcb Mon Sep 17 00:00:00 2001 From: cflakes Date: Tue, 13 Apr 2010 22:22:00 +0000 Subject: [PATCH] Small fix to default skin's tables. Very long words in td cells are still not being wrapped, but that's not something browsers support right now, so users will have to deal with it. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1909 726aef4b-f618-498e-8847-2d620e286838 --- webskins/_default_/pub/_default_.css | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/webskins/_default_/pub/_default_.css b/webskins/_default_/pub/_default_.css index ab3b7c60..e81cfede 100644 --- a/webskins/_default_/pub/_default_.css +++ b/webskins/_default_/pub/_default_.css @@ -70,7 +70,7 @@ h1 { #main { padding: 0 20px 20px 20px; font-size: 90%; - width: 700px; + width: 680px; } #menu { @@ -190,14 +190,6 @@ h3 { overflow: hidden; } -.toptable table { - max-width: 670px; -} - -.toptable td { - word-wrap: break-word; -} - .section { clear: both; } @@ -360,3 +352,7 @@ td.mod_name, margin-bottom: 10px; border-bottom: 1px solid #aaa; } + +td { + word-wrap: break-word; +}