diff options
author | Andrea Leone <gitlab@andrealeone.xyz> | 2018-09-24 16:54:43 +0000 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.m.gray@gmail.com> | 2018-09-24 16:54:43 +0000 |
commit | ab241b84edc41fea10bcf00903f81f780c1e801f (patch) | |
tree | 1dbac66493d8f714a5fcb2677778866a01b7a4e0 /app | |
parent | a7633d4a084f3009d53a7f4db4e30cdf49ed599a (diff) | |
download | gitlab-ce-ab241b84edc41fea10bcf00903f81f780c1e801f.tar.gz |
Resolve "Collapsed open and closed sections in boards styling is broken"
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/pages/boards.scss | 10 |
1 files changed, 9 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; } } |