diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-24 18:23:02 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-24 18:23:02 +0000 |
| commit | f68e26107e7165309335ea63cfb28410fb30800b (patch) | |
| tree | a7a5eecf8863190ed0ee632c3d9fcdc4f50269bd | |
| parent | e85a2601ec7c982affc753dca6c582c68987c412 (diff) | |
- Fix column name wrapping on folders list (#1486861)
git-svn-id: https://svn.roundcube.net/trunk@3820 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/settings.css | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/roundcubemail/skins/default/settings.css b/roundcubemail/skins/default/settings.css index 38f3332f6..876a4b731 100644 --- a/roundcubemail/skins/default/settings.css +++ b/roundcubemail/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 |
