diff options
author | thomascube <thomas@roundcube.net> | 2011-02-09 10:51:50 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-02-09 10:51:50 +0000 |
commit | b46e5b7407940499964d8a553c3eada05850f29d (patch) | |
tree | 882ffd6820097107176c1ba2e8341c0313f18ec2 /skins | |
parent | 98cb0f179206843ceaa87df6bfb3d1da045ed8ad (diff) |
Apply more bugfixes from trunk for 0.5.1
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/common.css | 10 | ||||
-rw-r--r-- | skins/default/functions.js | 2 | ||||
-rw-r--r-- | skins/default/mail.css | 2 |
3 files changed, 11 insertions, 3 deletions
diff --git a/skins/default/common.css b/skins/default/common.css index 4a45c60b7..2257ad4ec 100644 --- a/skins/default/common.css +++ b/skins/default/common.css @@ -9,7 +9,7 @@ body body.iframe { - margin: 0px; + margin: 20px 0 0 0; background-color: #FFF; } @@ -254,6 +254,14 @@ img float: right; } +body.iframe .boxtitle +{ + position: fixed; + top: 0; + left: 0; + width: 100%; +} + .boxcontent { padding: 15px 10px 10px 10px; diff --git a/skins/default/functions.js b/skins/default/functions.js index 00e97fd1a..3e06a54d4 100644 --- a/skins/default/functions.js +++ b/skins/default/functions.js @@ -49,7 +49,7 @@ function rcube_init_tabs(id, current) // create a tab a = $('<a>').text(legend.text()).attr('href', '#'); tab = $('<span>').attr({'id': 'tab'+idx, 'class': 'tablink'}) - .click(function() { return rcube_show_tab(id, idx); }) + .click(function() { rcube_show_tab(id, idx); return false }) // remove legend legend.remove(); diff --git a/skins/default/mail.css b/skins/default/mail.css index b5dfb80d0..b5630e342 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -1002,7 +1002,7 @@ td span.branch div.l3 div.messageheaderbox { - margin: 6px 8px 0px 8px; + margin: -14px 8px 0px 8px; border: 1px solid #ccc; } |