summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2018-09-24 16:54:43 +0000
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2018-09-24 16:54:43 +0000
commit62dde35069e430101e52359fbdba3fa14720195d (patch)
tree1dbac66493d8f714a5fcb2677778866a01b7a4e0
parenta7633d4a084f3009d53a7f4db4e30cdf49ed599a (diff)
parentab241b84edc41fea10bcf00903f81f780c1e801f (diff)
downloadgitlab-ce-62dde35069e430101e52359fbdba3fa14720195d.tar.gz
Merge branch '51050-fix' into 'master'
Resolve "Collapsed open and closed sections in boards styling is broken" Closes #51050 See merge request gitlab-org/gitlab-ce!21868
-rw-r--r--app/assets/stylesheets/pages/boards.scss10
-rw-r--r--changelogs/unreleased/51050-fix.yml5
2 files changed, 14 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index 69d7de886b4..48db91a5786 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -136,15 +136,23 @@
right: 0;
bottom: 0;
left: 0;
+
+ button {
+ display: none;
+ }
}
.board-title {
padding: 0;
border-bottom: 0;
+ justify-content: center;
> span {
+ width: 100%;
+ margin-top: -12px;
display: block;
- transform: rotate(90deg) translate(35px, 10px);
+ transform: rotate(90deg) translate(35px, 0);
+ overflow: initial;
}
}
diff --git a/changelogs/unreleased/51050-fix.yml b/changelogs/unreleased/51050-fix.yml
new file mode 100644
index 00000000000..b58f9ae34f8
--- /dev/null
+++ b/changelogs/unreleased/51050-fix.yml
@@ -0,0 +1,5 @@
+---
+title: Fix broken styling when issue board is collapsed
+merge_request: 21868
+author: Andrea Leone
+type: fixed