Explorar el Código

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.
Benjamin Tissoires hace 7 años
padre
commit
f7c6b7fce2
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      client/components/swimlanes/swimlanes.styl

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

@@ -53,6 +53,7 @@
 .list-group
 .list-group
   flex-direction: row
   flex-direction: row
   height: 100%
   height: 100%
+  overflow: hidden
 
 
 swimlane-color(background, color...)
 swimlane-color(background, color...)
   background: background !important
   background: background !important