diff options
author | alecpl <alec@alec.pl> | 2010-07-24 18:23:02 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-07-24 18:23:02 +0000 |
commit | 559de22891cd0db786e36be12ffea26a7f7eeb89 (patch) | |
tree | a841d91c47fc0debf44386181a1defb857462304 /skins | |
parent | 904809459d8cd0e92f63fb2f50ab5f6bd1b9493e (diff) |
- Fix column name wrapping on folders list (#1486861)
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/settings.css | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/skins/default/settings.css b/skins/default/settings.css index 38f3332f6..876a4b731 100644 --- a/skins/default/settings.css +++ b/skins/default/settings.css @@ -126,17 +126,15 @@ span.tablink-selected a #subscription-table thead td.name { - width: 360px; + width: 95%; } -#subscription-table thead td.msgcount +#subscription-table thead td.msgcount, +#subscription-table thead td.subscribed, +#subscription-table thead td.threaded { - width: 90px; -} - -#subscription-table thead td.subscribed -{ - width: 90px; + white-space: nowrap; + min-width: 50px; } #subscription-table tbody td.subscribed, @@ -155,7 +153,7 @@ span.tablink-selected a #subscription-table td.name input { font: inherit; - width: 240px; + width: 90%; } #identity-frame |