summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/sidebar.scss
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-04-05 21:08:46 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-05 21:08:46 +0000
commit6cdb39a9ef2d9a3008ce2b4aeb5dacb86e0a1c2b (patch)
tree46a8685ab2511e6eaf06d2d751617b71c52e78a5 /app/assets/stylesheets/framework/sidebar.scss
parentbc3187f6d968f954c7998b66a6595273f9ecf5e1 (diff)
downloadgitlab-ce-6cdb39a9ef2d9a3008ce2b4aeb5dacb86e0a1c2b.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/stylesheets/framework/sidebar.scss')
-rw-r--r--app/assets/stylesheets/framework/sidebar.scss32
1 files changed, 19 insertions, 13 deletions
diff --git a/app/assets/stylesheets/framework/sidebar.scss b/app/assets/stylesheets/framework/sidebar.scss
index b52d15f59bb..d270f802c56 100644
--- a/app/assets/stylesheets/framework/sidebar.scss
+++ b/app/assets/stylesheets/framework/sidebar.scss
@@ -227,22 +227,28 @@
margin-right: -$gl-spacing-scale-2;
}
-.reviewer-attention-grid,
-.assignee-attention-grid {
- grid-template-columns: min-content 1fr min-content;
+.assignee-grid {
+ grid-template-areas: ' attention user';
+ grid-template-columns: min-content 1fr;
}
-/* TODO: These are non-standardized classes, and should be moved into gitlab-ui
- Please see: https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1780
-*/
-.gl-grid-column-1 {
- grid-column: 1;
-}
+.reviewer-grid {
+ grid-template-areas: ' user approval rerequest';
+ grid-template-columns: 1fr min-content min-content;
-.gl-grid-row-1 {
- grid-row: 1;
+ &.attention-requests {
+ grid-template-areas: ' attention user approval';
+ grid-template-columns: min-content 1fr min-content;
+ }
}
-.gl-grid-column-2 {
- grid-column: 2;
+.assignee-grid,
+.reviewer-grid {
+ [data-css-area='attention'] {
+ grid-area: attention;
+ }
+
+ [data-css-area='user'] {
+ grid-area: user;
+ }
}