diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-04 23:39:45 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-04 23:39:45 +0200 |
commit | 77fad166e30e5fd225495c6c78f525d0ce27c7b3 (patch) | |
tree | 7a8d8883e0cfe2c62f837fb4da629b5094c2e3c4 /skins/larry/ui.js | |
parent | b1f30d873d52e15162b1ea5b8f3b57d96e926cdf (diff) |
Some last layout changes for Larry: move search box to the right, visually connect message list footer to the list
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r-- | skins/larry/ui.js | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index d0dbc6c67..884ee55be 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -108,7 +108,7 @@ function rcube_mail_ui() $('#mailthreadmode').addClass(rcmail.env.threading ? 'selected' : '').click(function(e){ switch_view_mode('thread'); return false }); mailviewsplit = new rcube_splitter({ id:'mailviewsplitter', p1:'#mailview-top', p2:'#mailview-bottom', - orientation:'h', relative:true, start:310, min:150, size:0, offset:-18 }); + orientation:'h', relative:true, start:310, min:150, size:6, offset:-18 }); if (previewframe) mailviewsplit.init(); @@ -178,21 +178,24 @@ function rcube_mail_ui() if ($('option:selected', this).val() != '') title = $('option:selected', this).text(); - var new_select = $('<a class="menuselector"><span class="handle">' + title + '</span></a>') + var overlay = $('<a class="menuselector"><span class="handle">' + title + '</span></a>') .css('position', 'absolute') .offset(select.position()) .insertAfter(select); - new_select.children().width(width).height(height).css('line-height', (height - 1) + 'px'); + overlay.children().width(width).height(height).css('line-height', (height - 1) + 'px'); select.change(function() { var val = $('option:selected', this).text(); $(this).next().children().html(val); - }) - .parent().css('position', 'relative'); + }); + + var parent = select.parent(); + if (parent.css('position') != 'absolute') + parent.css('position', 'relative'); // re-set original select width to fix click action and options width in some browsers - select.width(new_select.width()); + select.width(overlay.width()); }); $(document.body) @@ -311,7 +314,7 @@ function rcube_mail_ui() function resize_leftcol(splitter) { - if (splitter) + if (0&&splitter) $('#quicksearchbar input').css('width', (splitter.pos - 70) + 'px'); } @@ -447,7 +450,7 @@ function rcube_mail_ui() button.removeClass().addClass(visible ? 'enabled' : 'closed'); if (visible) { - $('#mailview-top').css({ bottom:'auto' }); + $('#mailview-top').removeClass('fullheight').css({ bottom:'auto' }); $('#mailview-bottom').css({ height:'auto' }); rcmail.env.contentframe = 'messagecontframe'; @@ -466,7 +469,7 @@ function rcube_mail_ui() rcmail.env.contentframe = null; rcmail.show_contentframe(false); - $('#mailview-top').css({ height:'auto', bottom:'28px' }); + $('#mailview-top').addClass('fullheight').css({ height:'auto', bottom:'28px' }); $('#mailview-bottom').css({ top:'auto', height:'26px' }); if (mailviewsplit.handle) |