diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-06-17 12:29:27 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-06-17 12:29:27 +0200 |
commit | 079d3a554f771ea1dcf272d7298feef46c7c7343 (patch) | |
tree | e9511ec4318b1d82a20f26c8894702f9b4ac9e5c | |
parent | 20e22fa4c3c5532b276c9b0c99630587031b0b79 (diff) | |
download | sonarqube-079d3a554f771ea1dcf272d7298feef46c7c7343.tar.gz sonarqube-079d3a554f771ea1dcf272d7298feef46c7c7343.zip |
SONAR-6507 apply ui feedback
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/views/account/index.html.erb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/account/index.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/account/index.html.erb index dd0cd994586..412bd704e06 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/account/index.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/account/index.html.erb @@ -1,8 +1,8 @@ <div class="page"> - <div class="pull-left big-spacer-right abs-width-240 text-center"> + <div class="pull-left big-spacer-right abs-width-240"> <div class="panel panel-white"> - <div> + <div class="text-center"> <% if configuration('sonar.lf.enableGravatar', 'true') == 'true' %> <div class="js-avatar big-spacer-bottom"></div> <% end %> @@ -32,8 +32,9 @@ </div> <% if User.editable_password? %> - <div class="big-spacer-top"> - <button id="account-change-password-trigger" class="open-modal" href="<%= url_for :action => 'change_password_form' %>"> + <div class="big-spacer-top text-center"> + <button id="account-change-password-trigger" class="open-modal block-button" + href="<%= url_for :action => 'change_password_form' %>"> <i class="icon-lock"></i> <%= message('my_profile.password.title') -%> </button> </div> |