From 2ec1418db5e52312261e42c8e52b284831e87bd7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jonas=20Kr=C3=BCckel?= Date: Mon, 20 Dec 2010 21:08:51 +0100 Subject: [PATCH] Reduce left and right padding for the "Go" button Firefox keeps the text on a button centered if it overflows the content area but Webkit keeps the left edge fixed and pushes all the overflow to the right so reducing the padding improves the look in Webkit when the text is too long. --- public/stylesheets/common.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/stylesheets/common.css b/public/stylesheets/common.css index a04604c2e..8d86708af 100644 --- a/public/stylesheets/common.css +++ b/public/stylesheets/common.css @@ -225,6 +225,8 @@ hr { #search_field input[type="submit"] { width: 26px; + padding-left: 0px; + padding-right: 0px; } .search_help { -- 2.43.2