cpsievert / LDAvis

R package for web-based interactive topic model visualization.
Other
557 stars 131 forks source link

CSS conflict with ScatterD3 #96

Open Tixierae opened 5 years ago

Tixierae commented 5 years ago

LDAvis includes the following rule (at the top of the lda.css file):

path {
   fill: none;
   stroke: none;
}

which applies to all path SVG elements and removes their drawing and fill color. That makes the symbols in scatterD3's legend invisible (inside a Shiny app). Potentially this could create issues with other html widgets.

See issue there: https://github.com/juba/scatterD3/issues/77