diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-09 10:00:13 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-09 10:00:13 +0200 |
commit | ae389180219ac80f8217e1171297d5a156f5e5be (patch) | |
tree | dac6e545ceeb960b4650cf05a7cc33f3e6569b1d | |
parent | 2a4a8e849680a21f5c57313b02d0d27b4714d555 (diff) | |
download | sonarqube-ae389180219ac80f8217e1171297d5a156f5e5be.tar.gz sonarqube-ae389180219ac80f8217e1171297d5a156f5e5be.zip |
SONAR-4474 Improve css deisgn
3 files changed, 6 insertions, 6 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations.html.erb index 14d5fbdb12f..b99e8a975e5 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations.html.erb @@ -15,7 +15,7 @@ </li> <% end %> <% if @issues_result.issues && !@issues_result.issues.empty? %> - <li> + <li class="last"> <a id="bulk-change" href="<%= url_for params.merge({:action => 'bulk_change_form'}) -%>" class="link-action open-modal"><%= message('bulk_change') -%></a> </li> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations_ajax.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations_ajax.html.erb index a88664d2cad..80ef9f1059d 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations_ajax.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/_operations_ajax.html.erb @@ -1,10 +1,12 @@ <% if logged_in? && @issues_result.issues && !@issues_result.issues.empty? %> - <div id="issue-filters-operations" class="line-block marginbottom10"> + <div class="line-block marginbottom10"> + <div id="issue-filters-operations" style="padding-right: 5px; padding-top: 5px;"> <ul class="operations"> - <li> + <li class="last"> <a id="bulk-change" href="<%= url_for params.merge({:controller => 'issues', :action => 'bulk_change_form'}) -%>" class="link-action open-modal"><%= message('bulk_change') -%></a> </li> </ul> + </div> </div> <% end %> diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 1a8bc63a54e..293b558ff63 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -623,9 +623,7 @@ ul.operations { list-style-type: none; margin: 0; background-color: #EFEFEF; - border-left: 1px solid #cdcdcd; - border-bottom: 1px solid #cdcdcd; - border-top: 1px solid #cdcdcd; + border: 1px solid #cdcdcd; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; |