From 8f9a8b6fceb0659b87ff95fba4307909f78b9f03 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 07 Jun 2013 03:58:59 -0400
Subject: [PATCH] Fix decorated select width in Firefox
---
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 a53a943..6f9d30d 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -242,7 +242,8 @@
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)
--
Gitblit v1.9.1