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:
authorAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-05-31 14:31:10 +0300
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-05-31 14:31:10 +0300
commitf1cf1be43bb1e4d5f358a2897d7d881ae521507c (patch)
treee167754358bcca611b7f14e9ceb36187ac4c85b4
parent41cce06958ed74a5390f9d76e3b2f58656b40994 (diff)
parent9cd57e73b7517a3f405b266adc7c3d7a2cc5213c (diff)
Merge branch '62432-fix-participants-wrapping' into 'master'
Fix participants list padding Closes #62432 See merge request gitlab-org/gitlab-ce!28873
-rw-r--r--app/assets/stylesheets/pages/issuable.scss6
-rw-r--r--changelogs/unreleased/62432-fix-participants-wrapping.yml5
2 files changed, 7 insertions, 4 deletions
diff --git a/app/assets/stylesheets/pages/issuable.scss b/app/assets/stylesheets/pages/issuable.scss
index 04c66006027..4ba74d34664 100644
--- a/app/assets/stylesheets/pages/issuable.scss
+++ b/app/assets/stylesheets/pages/issuable.scss
@@ -218,7 +218,7 @@
.title {
color: $gl-text-color;
- margin-bottom: 10px;
+ margin-bottom: $gl-padding-8;
line-height: 1;
.avatar {
@@ -604,7 +604,6 @@
.participants-list {
display: flex;
flex-wrap: wrap;
- margin: -7px;
}
.user-list {
@@ -614,7 +613,7 @@
.participants-author {
display: inline-block;
- padding: 7px;
+ padding: 0 $gl-padding-8 $gl-padding-8 0;
&:nth-of-type(7n) {
padding-right: 0;
@@ -641,7 +640,6 @@
.participants-more,
.user-list-more {
- margin-top: 5px;
margin-left: 5px;
a,
diff --git a/changelogs/unreleased/62432-fix-participants-wrapping.yml b/changelogs/unreleased/62432-fix-participants-wrapping.yml
new file mode 100644
index 00000000000..a7e4bd372de
--- /dev/null
+++ b/changelogs/unreleased/62432-fix-participants-wrapping.yml
@@ -0,0 +1,5 @@
+---
+title: Fix participants list wrapping
+merge_request: 28873
+author:
+type: fixed