summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-06-30 09:20:18 +0200
committerAleksander Machniak <alec@alec.pl>2012-06-30 09:50:39 +0200
commitfc84ca1f0cd4684697adecb406fcb5c347d91807 (patch)
treec37bc0ae8483d94f56b84373e60f009d3ef8d863
parent479579f971503aa68f06463850752195c397bc0e (diff)
Decorated select width fix is also needed for IE and Safari
-rw-r--r--skins/larry/ui.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index bf4580eb1..9fb41e6c0 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -193,9 +193,8 @@ function rcube_mail_ui()
})
.parent().css('position', 'relative');
- // re-set original select width to fix click action and options width in Chrome
- if (bw.chrome)
- select.width(new_select.width());
+ // re-set original select width to fix click action and options width in some browsers
+ select.width(new_select.width());
});
$(document.body)