summaryrefslogtreecommitdiff
path: root/skins/larry/ui.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-09-04 10:06:48 +0200
committerAleksander Machniak <alec@alec.pl>2012-09-04 10:06:48 +0200
commite8b9176031926532a764582812047281e4401352 (patch)
tree95ab93dfa0b64dc582b4b9adabb54337efd9dba1 /skins/larry/ui.js
parentaf276f21e5364eb65a56b64c3455bc284ff1e2f2 (diff)
Remove (too big) min-width on mail screen
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r--skins/larry/ui.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index 176c93b7d..57a1178eb 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -163,6 +163,12 @@ function rcube_mail_ui()
}
}
+ // set min-width to show all toolbar buttons
+ var screen = $('.minwidth');
+ if (screen.length) {
+ screen.css('min-width', $('.toolbar').width() + $('#quicksearchbar').parent().width() + 20);
+ }
+
// turn a group of fieldsets into tabs
$('.tabbed').each(function(idx, elem){ init_tabs(elem); })