Skip to content

Commit

Permalink
- Fix Firefox left-rigth scrollbar.
Browse files Browse the repository at this point in the history
Thanks to xet7 !

Closes #2137
  • Loading branch information
xet7 committed Jan 28, 2019
1 parent 3c2de2a commit 74cf9e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/components/swimlanes/swimlanes.styl
Expand Up @@ -54,9 +54,13 @@
flex-direction: row
height: 100%

// Firefox fix for cards behind swimlane to overflow-y
// https://github.com/wekan/wekan/pull/2132/commits/f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb
// and enable Firefox left-right scroll https://github.com/wekan/wekan/issues/2137
@-moz-document url-prefix() {
.list-group {
overflow: hidden;
overflow-y: hidden;
overflow: -moz-scrollbars-vertical;
}
}

Expand Down

0 comments on commit 74cf9e2

Please sign in to comment.