diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-08-14 10:39:05 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-08-14 10:39:05 +0200 |
commit | 0fddf7a6a23f4940fcd4c2c3b646cc4d3c01db8b (patch) | |
tree | 38f04789a961c2a970f79568e0c8be931b67bcd0 /skins/larry/ui.js | |
parent | 06fdaf88cb1a355e445294beba4a89d0209ac71e (diff) |
Place folder namespace selector above search box. Adjust height after box is visible and real heights can be computed
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r-- | skins/larry/ui.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 7b08aeadd..153abdc21 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -541,7 +541,7 @@ function rcube_mail_ui() var title = $('.boxtitle', container), box = $('.listsearchbox', container), dir = box.is(':visible') ? -1 : 1, - height = 34 + ($('select', box).length ? 24 : 0); + height = 34 + ($('select', box).length ? 22 : 0); box.slideToggle({ duration: 160, @@ -553,6 +553,8 @@ function rcube_mail_ui() box.toggleClass('expanded'); if (box.is(':visible')) { box.find('input[type=text]').focus(); + height = 34 + ($('select', box).length ? $('select', box).outerHeight() + 4 : 0); + $('.scroller', container).css('top', (title.outerHeight() + height) + 'px'); } else { $('a.reset', box).click(); |