summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/sidebar.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/sidebar.scss')
-rw-r--r--app/assets/stylesheets/framework/sidebar.scss26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/sidebar.scss b/app/assets/stylesheets/framework/sidebar.scss
index e77971d5280..d270f802c56 100644
--- a/app/assets/stylesheets/framework/sidebar.scss
+++ b/app/assets/stylesheets/framework/sidebar.scss
@@ -226,3 +226,29 @@
.edit-link {
margin-right: -$gl-spacing-scale-2;
}
+
+.assignee-grid {
+ grid-template-areas: ' attention user';
+ grid-template-columns: min-content 1fr;
+}
+
+.reviewer-grid {
+ grid-template-areas: ' user approval rerequest';
+ grid-template-columns: 1fr min-content min-content;
+
+ &.attention-requests {
+ grid-template-areas: ' attention user approval';
+ grid-template-columns: min-content 1fr min-content;
+ }
+}
+
+.assignee-grid,
+.reviewer-grid {
+ [data-css-area='attention'] {
+ grid-area: attention;
+ }
+
+ [data-css-area='user'] {
+ grid-area: user;
+ }
+}