From 9266fce009d5a7d9e829ddcac69cd5b20b3216db Mon Sep 17 00:00:00 2001 From: Chris Lawton <chris.lawton@torchbox.com> Date: Mon, 6 Aug 2018 15:11:43 +0100 Subject: [PATCH] change sidebar buttons class so it's more meaningful --- .../templates/funds/applicationsubmission_admin_detail.html | 2 +- opentech/apply/funds/templates/funds/includes/actions.html | 2 +- opentech/static_src/src/sass/apply/components/_wrapper.scss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opentech/apply/funds/templates/funds/applicationsubmission_admin_detail.html b/opentech/apply/funds/templates/funds/applicationsubmission_admin_detail.html index 67ef27440..de100c8b4 100644 --- a/opentech/apply/funds/templates/funds/applicationsubmission_admin_detail.html +++ b/opentech/apply/funds/templates/funds/applicationsubmission_admin_detail.html @@ -18,7 +18,7 @@ {% include 'funds/includes/review_table.html' %} - <div class="wrapper wrapper--button-container"> + <div class="wrapper wrapper--sidebar-buttons"> {% include 'review/includes/review_button.html' with submission=object class="button--half-width" %} {% if request.user.is_apply_staff and object.reviews.exists %} <a href="{% url 'apply:submissions:reviews:list' submission_pk=object.id %}" class="button button--white button--half-width">View all</a> diff --git a/opentech/apply/funds/templates/funds/includes/actions.html b/opentech/apply/funds/templates/funds/includes/actions.html index 0132d0936..b66583a84 100644 --- a/opentech/apply/funds/templates/funds/includes/actions.html +++ b/opentech/apply/funds/templates/funds/includes/actions.html @@ -7,7 +7,7 @@ <a data-fancybox data-src="#update-status" class="button button--primary button--full-width {% if progress_form.should_show %}is-not-disabled{% else %}is-disabled{% endif %}" href="#">Update status</a> <p class="sidebar__separator">Assign</p> - <div class="wrapper wrapper--button-container"> + <div class="wrapper wrapper--sidebar-buttons"> <a data-fancybox data-src="#update-reviewers" class="button button--half-width button--white" href="#">Reviewers</a> <a data-fancybox data-src="#assign-lead" class="button button--half-width button--white" href="#">Lead</a> </div> diff --git a/opentech/static_src/src/sass/apply/components/_wrapper.scss b/opentech/static_src/src/sass/apply/components/_wrapper.scss index c80d2378e..15ddac1fa 100644 --- a/opentech/static_src/src/sass/apply/components/_wrapper.scss +++ b/opentech/static_src/src/sass/apply/components/_wrapper.scss @@ -222,7 +222,7 @@ } } - &--button-container { + &--sidebar-buttons { display: flex; justify-content: space-between; margin-bottom: 20px; -- GitLab