diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-05 19:20:52 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-05 19:23:09 +0200 |
commit | 3a8633cdc3c2b07450f25a5f1d23c310d492a9dd (patch) | |
tree | 860dcf7475e963fdbccb00f1889ea97cc09076e4 /skins/larry/ui.js | |
parent | ae2e88bc0e0883b750fb614f3c95e7c3f6200b63 (diff) |
Move splitter between the boxes of message list and message preview
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r-- | skins/larry/ui.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 7c66e01ae..4872a1004 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -110,7 +110,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:6, offset:-18 }); + orientation:'h', relative:true, start:310, min:150, size:12, offset:4 }); if (previewframe) mailviewsplit.init(); @@ -173,7 +173,7 @@ function rcube_mail_ui() } var select = $(this), - height = Math.max(select.height(), 24) - 2, + height = Math.max(select.height(), 26) - 2, width = select.width() - 22, title = $('option', this).first().text(); @@ -316,8 +316,7 @@ function rcube_mail_ui() function resize_leftcol(splitter) { - if (0&&splitter) - $('#quicksearchbar input').css('width', (splitter.pos - 70) + 'px'); + // STUB } |