summaryrefslogtreecommitdiffstats
path: root/client/components
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-01-28 02:50:25 +0200
committerLauri Ojansivu <x@xet7.org>2019-01-28 02:50:25 +0200
commit74cf9e2573ed3821adc3230aa419febfb5275e07 (patch)
tree9cd7e2a771f782f9cb57ac8d3456ed9d722b3f46 /client/components
parent3c2de2a38de1a5e640c36ddcce1681e3fcb5b7ab (diff)
downloadwekan-74cf9e2573ed3821adc3230aa419febfb5275e07.tar.gz
wekan-74cf9e2573ed3821adc3230aa419febfb5275e07.tar.bz2
wekan-74cf9e2573ed3821adc3230aa419febfb5275e07.zip
- Fix Firefox left-rigth scrollbar.
Thanks to xet7 ! Closes #2137
Diffstat (limited to 'client/components')
-rw-r--r--client/components/swimlanes/swimlanes.styl6
1 files changed, 5 insertions, 1 deletions
diff --git a/client/components/swimlanes/swimlanes.styl b/client/components/swimlanes/swimlanes.styl
index 754d7210..9abf2820 100644
--- a/client/components/swimlanes/swimlanes.styl
+++ b/client/components/swimlanes/swimlanes.styl
@@ -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;
}
}