White text on Survival bsModal
jasdumas opened this issue · 2 comments
jasdumas commented
gdancik commented
This is because of the font color specified by the CSS code. Specifically, the following code in mainPanel.R sets the font color to white in several places (including the bsModal table):
tags$style(type = "text/css",
".well{color: white; background-color: black}"
),
If you comment this out, the font color for the table will be black.
I initially added this to change the background color and font for the sidebarPanel. Several elements in Shiny seem to depend on the "well" class, so this CSS code effects several of them.
jasdumas commented
Ok - the most recent commit addresses this for the time being!