From dc5b83d188737c1ce18909f185669a0a0f1c1f4a Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 12 Sep 2008 11:30:07 -0400 Subject: [PATCH] Hack away css border for Safari only (#1485339) --- skins/default/settings.css | 75 +++++++++++++++++++++++++++++-------- 1 files changed, 59 insertions(+), 16 deletions(-) diff --git a/skins/default/settings.css b/skins/default/settings.css index c172576..7538d0e 100644 --- a/skins/default/settings.css +++ b/skins/default/settings.css @@ -49,7 +49,7 @@ position: absolute; top: 95px; left: 20px; - width: 550px; + width: 600px; border: 1px solid #999999; } @@ -69,23 +69,29 @@ #folder-manager { - width: 500px; - bottom: 120px; + width: 600px; + bottom: 140px; overflow: auto; border: 1px solid #999999; - height: expression((parseInt(document.documentElement.clientHeight)-215)+'px'); + height: expression((parseInt(document.documentElement.clientHeight)-235)+'px'); +} + +#folder-manager.droptarget +{ + border: 1px solid #CC3333; + background-color: #FFFFA6; } #identities-table { - width: 500px; + width: 600px; border: 1px solid #999999; background-color: #F9F9F9; } #identities-table tbody td { - cursor: pointer; + cursor: default; } #identity-frame @@ -98,7 +104,7 @@ #identity-details { margin-top: 30px; - width: 500px; + width: 600px; border: 1px solid #999999; } @@ -113,8 +119,8 @@ #bottomboxes { position: absolute; - width: 500px; - height: 100px; + width: 600px; + height: 120px; left: 20px; bottom: 20px; } @@ -136,7 +142,7 @@ div.settingsbox { - width: 500px; + width: 600px; margin-top: 20px; margin-bottom: 20px; border: 1px solid #999999; @@ -151,24 +157,61 @@ #subscription-table { width: 100%; - table-layout: fixed; } #subscription-table tbody td { + height: 20px; padding-left: 6px; - padding-right: 20px; + padding-right: 10px; white-space: nowrap; border-bottom: 1px solid #EBEBEB; background-color: #F9F9F9; + cursor: pointer; } -#subscription-table td.name +#subscription-table tr.virtual td { - width: 280px; + color: #666; } -#subscription-table td.subscribed +#subscription-table tr.selected td, +#subscription-table tr.selected td a { - width: 80px; + color: #FFFFFF; + background-color: #CC3333; } + +#subscription-table tr.droptarget td, +#subscription-table tr.droptarget td a +{ + background-color: #FFFFA6; +} + +#subscription-table thead td.name +{ + width: 250px; +} + +#subscription-table thead td.msgcount +{ + width: 90px; +} + +#subscription-table thead td.subscribed +{ + width: 90px; +} + +fieldset +{ + margin-bottom: 0.5em; + border: 1px solid #999999; + padding: 4px 8px 9px 8px; +} + +legend +{ + color: #999999; +} + \ No newline at end of file -- Gitblit v1.9.1