diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-07 09:58:59 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-07 09:58:59 +0200 |
commit | 8f9a8b6fceb0659b87ff95fba4307909f78b9f03 (patch) | |
tree | b28ab0c23161ed8aa8b926fedaa0e8266d1f85f3 | |
parent | 76f4f7970d052b9f5c0de82f99024b9ab0100294 (diff) |
Fix decorated select width in Firefox
-rw-r--r-- | skins/larry/ui.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index a53a9437e..6f9d30daa 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -242,7 +242,8 @@ function rcube_mail_ui() parent.css('position', 'relative'); // re-set original select width to fix click action and options width in some browsers - select.width(overlay.width()); + if (!bw.mz) + select.width(overlay.width()); }); $(document.body) |