From b51ff02aff86600ffe14bf23fe8570463fa4dc6b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 5 Feb 2014 19:00:29 +0100 Subject: [PATCH] Vector: text-indent workaround for Firefox 27 bug Bug: 60900 Change-Id: I751a603d5886f72b8fbd8211564cedc424ea8d82 --- skins/vector/components/search.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skins/vector/components/search.less b/skins/vector/components/search.less index a0eb658607..ec0b2fae7f 100644 --- a/skins/vector/components/search.less +++ b/skins/vector/components/search.less @@ -90,7 +90,8 @@ div#simpleSearch { height: 100%; cursor: pointer; /* Hide button text and replace it with the image. */ - text-indent: 100%; + /* This would be 100% if not for Firefox shenanigans (bug 60900). */ + text-indent: 200%; /* Needed to make IE6 respect the text-indent. */ line-height: 1; /* Opera 12 on RTL flips the text in a funny way without this. */ -- 2.20.1