From 53bdfc1151acf518256b98d63faf0b096b2b7907 Mon Sep 17 00:00:00 2001 From: leigh-mil Date: Tue, 30 Apr 2019 13:46:43 -0400 Subject: [PATCH] Add link to team settings --- styles/sections/_application_edit.scss | 7 +++++++ templates/fragments/applications/edit_environments.html | 1 + 2 files changed, 8 insertions(+) diff --git a/styles/sections/_application_edit.scss b/styles/sections/_application_edit.scss index 20bb3485..c11c2f87 100644 --- a/styles/sections/_application_edit.scss +++ b/styles/sections/_application_edit.scss @@ -18,6 +18,12 @@ } } +.app-team-settings-link { + font-size: $small-font-size; + font-weight: $font-normal; + padding-left: $gap * 2; +} + .environment-role { padding: $gap * 3; @@ -49,6 +55,7 @@ .environment-role__no-user { margin: $gap; padding: ($gap / 2) $gap; + font-weight: $font-normal; } } } diff --git a/templates/fragments/applications/edit_environments.html b/templates/fragments/applications/edit_environments.html index 46c8afdf..3532ff1e 100644 --- a/templates/fragments/applications/edit_environments.html +++ b/templates/fragments/applications/edit_environments.html @@ -88,6 +88,7 @@ {% call ToggleSection(section_name="members") %} + {% for role, members in members_by_role.items() %} {{ RolePanel(users=members, role=role) }} {% endfor %}