From b1426e4b9cef4828fa8f1ca47f8a5121bcfe90e1 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 4 Feb 2014 18:17:51 +0600 Subject: [PATCH] New Issues Page: change color of cancel links --- .../views/issues/templates/_issue_detail_assign_form.hbs.erb | 2 +- .../issues/templates/_issue_detail_comment_form.hbs.erb | 2 +- .../views/issues/templates/_issue_detail_plan_form.hbs.erb | 2 +- .../issues/templates/_issue_detail_set_severity_form.hbs.erb | 2 +- sonar-server/src/main/webapp/stylesheets/style.css | 5 +++++ 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_assign_form.hbs.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_assign_form.hbs.erb index e1f9941126f..24378e8cd25 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_assign_form.hbs.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_assign_form.hbs.erb @@ -4,7 +4,7 @@ - <%= message('cancel') -%> + <%= message('cancel') -%> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_comment_form.hbs.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_comment_form.hbs.erb index 1d9f7de5dd7..78ce1af9e76 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_comment_form.hbs.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_comment_form.hbs.erb @@ -9,7 +9,7 @@ - <%= message('cancel') -%> + <%= message('cancel') -%> <%= render :partial => 'markdown/tips' -%> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_plan_form.hbs.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_plan_form.hbs.erb index 98206179d76..ad9a299449f 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_plan_form.hbs.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_plan_form.hbs.erb @@ -18,5 +18,5 @@ <%= message('issue.plan.error.plan_must_be_created_first_for_other') -%> <% end %> {{/if}} - <%= message('cancel') -%> + <%= message('cancel') -%> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_set_severity_form.hbs.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_set_severity_form.hbs.erb index 7e164a5bfd2..cba491c8916 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_set_severity_form.hbs.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail_set_severity_form.hbs.erb @@ -9,7 +9,7 @@ - <%= message('cancel') -%> + <%= message('cancel') -%> diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 3161c74182c..4b82297f612 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -2129,6 +2129,11 @@ table.nowrap td.small, td.nowrap.small, th.nowrap.small { background: #FFFBCC; } +.action { + text-decoration: underline; + cursor: pointer; +} + /* Used on links which are located inside a dense text place or in tables */ /* in order to rapidly identify them */ .link-action { -- 2.39.5