diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2013-12-05 14:39:23 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2013-12-05 14:39:30 +0600 |
commit | adaf950e6040f83ee0a279d470c34702056dce92 (patch) | |
tree | 5cc1417b25740c15c17e51b7ec6d978aff016f12 | |
parent | 7e63f87a902d2090654bb9aa26791f3f8283981d (diff) | |
download | sonarqube-adaf950e6040f83ee0a279d470c34702056dce92.tar.gz sonarqube-adaf950e6040f83ee0a279d470c34702056dce92.zip |
SONAR-4838 A scroll bar is sometimes displayed on modal window on Linux
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index ffb9673bbfc..c7830f16dce 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -2299,6 +2299,12 @@ ul.modal-head-metadata li { margin-bottom: 10px; } +.modal-field input[type=text], +.modal-field input[type=password], +.modal-field textarea { + width: 250px; +} + .modal-foot { text-align: right; padding: 2px 10px; |