diff options
author | thomascube <thomas@roundcube.net> | 2012-01-20 15:46:15 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-20 15:46:15 +0000 |
commit | 071c78c3a4f344f1005c8be8ba895a91452de6b9 (patch) | |
tree | 0d63f416cd9d6dc1f9b7e1dd2686e21ec28a3d4d /skins/larry/settings.css | |
parent | 0b179e0847f5108f31567bc004a61044ebd1aca3 (diff) |
Fine tuning Larry styles + browser specific css quirks
Diffstat (limited to 'skins/larry/settings.css')
-rw-r--r-- | skins/larry/settings.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/skins/larry/settings.css b/skins/larry/settings.css index 8de91d877..1d99b7599 100644 --- a/skins/larry/settings.css +++ b/skins/larry/settings.css @@ -1,7 +1,7 @@ /** * Roundcube webmail styles for the Settings section * - * Copyright (c) 2011, The Roundcube Dev Team + * Copyright (c) 2012, The Roundcube Dev Team * Screendesign by FLINT / Büro für Gestaltung, bueroflint.com * * The contents are subject to the Creative Commons Attribution-ShareAlike @@ -184,13 +184,24 @@ bottom: 0; } +#subscription-table { + table-layout: fixed; +} + #subscription-table tr.root td { font-size: 5%; height: 5px; padding: 2px; } +#subscription-table td.name { + width: 85%; + overflow: hidden; + text-overflow: ellipsis; +} + #subscription-table td.subscribed { + min-width: 30px; padding: 3px 12px 3px 3px; text-align: right; } @@ -199,8 +210,16 @@ width: 5em; } +.webkit #pluginlist td.version { + width: 6em; +} + #pluginlist td.license, #pluginlist td.source { width: 8em; } +.webkit #pluginlist td.license, +.webkit #pluginlist td.source { + width: 9em; +} |