diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2019-01-26 17:37:43 +0100 |
---|---|---|
committer | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2019-01-26 17:38:51 +0100 |
commit | f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb (patch) | |
tree | f68014af8833de32c1790c046460ce7d60c6113d /client/components | |
parent | 850b34ce33e649440aa0786f739220a5a80baedc (diff) | |
download | wekan-f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb.tar.gz wekan-f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb.tar.bz2 wekan-f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb.zip |
ui: fix rendering issue on firefox
When a list have more cards that can fit in the screen, the members icons
are drawn on top of the swimlane below and the scrollbar is not available.
According to https://github.com/utatti/perfect-scrollbar the container
must have an `overflow: hidden` css style.
When changing the swimlane header from vertical to horizontal, dd88eb4cc19
broke this which led to this weird bug.
Diffstat (limited to 'client/components')
-rw-r--r-- | client/components/swimlanes/swimlanes.styl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/components/swimlanes/swimlanes.styl b/client/components/swimlanes/swimlanes.styl index e4e2cd3b..19613ad9 100644 --- a/client/components/swimlanes/swimlanes.styl +++ b/client/components/swimlanes/swimlanes.styl @@ -53,6 +53,7 @@ .list-group flex-direction: row height: 100% + overflow: hidden swimlane-color(background, color...) background: background !important |