From dcc61b656f0ae5572de7f22b19f6501828785400 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lievremont Date: Tue, 3 Jun 2014 16:44:23 +0200 Subject: [PATCH] Fix vertical alignment of button labels in Firefox --- sonar-server/src/main/less/ui.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sonar-server/src/main/less/ui.less b/sonar-server/src/main/less/ui.less index 35189a55382..5ae0eebeeec 100644 --- a/sonar-server/src/main/less/ui.less +++ b/sonar-server/src/main/less/ui.less @@ -39,6 +39,12 @@ select, input, button, textarea { font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; } +/*Remove button padding in FF*/ +select::-moz-focus-inner, input::-moz-focus-inner, button::-moz-focus-inner { + border: 0; + padding: 0; +} + /* * Common */ -- 2.39.5