summaryrefslogtreecommitdiff
path: root/skins/larry/ui.js
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-08-14 10:39:05 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-08-14 10:39:05 +0200
commit0fddf7a6a23f4940fcd4c2c3b646cc4d3c01db8b (patch)
tree38f04789a961c2a970f79568e0c8be931b67bcd0 /skins/larry/ui.js
parent06fdaf88cb1a355e445294beba4a89d0209ac71e (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.js4
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();