Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/sidebar.scss')
-rw-r--r--app/assets/stylesheets/framework/sidebar.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/sidebar.scss b/app/assets/stylesheets/framework/sidebar.scss
index e77971d5280..b52d15f59bb 100644
--- a/app/assets/stylesheets/framework/sidebar.scss
+++ b/app/assets/stylesheets/framework/sidebar.scss
@@ -226,3 +226,23 @@
.edit-link {
margin-right: -$gl-spacing-scale-2;
}
+
+.reviewer-attention-grid,
+.assignee-attention-grid {
+ grid-template-columns: min-content 1fr min-content;
+}
+
+/* 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;
+}
+
+.gl-grid-row-1 {
+ grid-row: 1;
+}
+
+.gl-grid-column-2 {
+ grid-column: 2;
+}