jasdumas/shinyGEO

White text on Survival bsModal

jasdumas opened this issue · 2 comments

I don't get any other errors and I'm using the iris data set asa placeholder.

white-text-error

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.

Ok - the most recent commit addresses this for the time being!