diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-23 12:22:46 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-23 12:22:46 +0200 |
commit | 12e69ce13dde67fbe4851b85bf50c1b21a5788e1 (patch) | |
tree | ab2400c0dcb71d5e1e097cb05f0ebf55663b9c8d /skins/larry/ui.js | |
parent | f255dd787c62b4910a5794ff1379cad80781e311 (diff) |
Fix lack of space between searchfiler and quicksearchbar in Larry skin (#1489158)
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r-- | skins/larry/ui.js | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 38d8539c7..ccc9cef67 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -221,6 +221,7 @@ function rcube_mail_ui() } var select = $(this), + parent = select.parent(), height = Math.max(select.height(), 26) - 2, width = select.width() - 22, title = $('option', this).first().text(); @@ -235,18 +236,15 @@ function rcube_mail_ui() 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); - }); - - 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 - if (!bw.mz) - select.width(overlay.width()); + select.width(overlay.width()) + .change(function() { + var val = $('option:selected', this).text(); + $(this).next().children().text(val); + }); }); $(document.body) |