diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-09-21 18:25:19 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-09-21 18:25:19 +0200 |
commit | 3d4d6b562d77c7f644708a6bfa7bf97c84b117dc (patch) | |
tree | 5a92fcc25b8cfaa0ae4780c3d3bdd256377d6114 | |
parent | c9f399f5a7cd0f5e2fced05cb3f277091fb8542d (diff) | |
download | sonarqube-3d4d6b562d77c7f644708a6bfa7bf97c84b117dc.tar.gz sonarqube-3d4d6b562d77c7f644708a6bfa7bf97c84b117dc.zip |
Fix height of password inputs
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index fa9cf6cb609..b628cbeffd2 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -2374,6 +2374,7 @@ select.medium-width { .form-footer input { margin-right: 10px; } -input[type=text] { +input[type=text],input[type=password] { height: 20px; + padding: 0 5px; } |