diff options
author | thomascube <thomas@roundcube.net> | 2012-02-29 14:41:48 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-02-29 14:41:48 +0000 |
commit | 737fbe3b6622c870fc02fea167e39bbebebb8eaf (patch) | |
tree | 65a8ecda0b72444ade14470e2cb2c11077c5bcc1 /skins/larry/ui.js | |
parent | 38dc510b2dba02dba5a60fbc00947aac4fd24aab (diff) |
More styles for decorated selects
Diffstat (limited to 'skins/larry/ui.js')
-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 5e1218639..d7ef9ae0c 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -186,9 +186,10 @@ function rcube_mail_ui() }); $('<a class="menuselector dropdownselector"><span class="handle">' + title + '</span></a>') + .css('position', 'absolute') .offset(select.position()) .insertAfter(select) - .children().width(select.width() - 5); + .children().width(select.outerWidth() - 40); select.parent().css('position', 'relative'); }); |