From fc84ca1f0cd4684697adecb406fcb5c347d91807 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sat, 30 Jun 2012 03:50:39 -0400
Subject: [PATCH] Decorated select width fix is also needed for IE and Safari
---
skins/larry/ui.js | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index bf4580e..9fb41e6 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -193,9 +193,8 @@
})
.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)
--
Gitblit v1.9.1