Răsfoiți Sursa

- Fix Firefox left-rigth scrollbar.

Thanks to xet7 !

Closes #2137
Lauri Ojansivu 6 ani în urmă
părinte
comite
74cf9e2573
1 a modificat fișierele cu 5 adăugiri și 1 ștergeri
  1. 5 1
      client/components/swimlanes/swimlanes.styl

+ 5 - 1
client/components/swimlanes/swimlanes.styl

@@ -54,9 +54,13 @@
   flex-direction: row
   flex-direction: row
   height: 100%
   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() {
 @-moz-document url-prefix() {
   .list-group {
   .list-group {
-    overflow: hidden;
+    overflow-y: hidden;
+    overflow: -moz-scrollbars-vertical;
   }
   }
 }
 }