From 48e72253d7cbbb5ee4936375a540e8c725880d09 Mon Sep 17 00:00:00 2001 From: simonbrandhof Date: Tue, 28 Sep 2010 12:12:09 +0000 Subject: [PATCH] fix alignement of icons in the CSS class "data2" --- sonar-server/src/main/webapp/stylesheets/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 9d728786e0e..93369b546f6 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -1453,7 +1453,10 @@ table.data2 > tfoot > tr > td { table.data2 td, table.data2 td a, table.data2 th, table.data2 th a { color: #444; } -table.data2 img, table.data2 input, table.data2 select { +table.data2 img { + vertical-align: text-bottom; +} +table.data2 input, table.data2 select { vertical-align: baseline; } .background-gray { -- 2.39.5