I'm using many different checkboxGroupInput()
and radioButtons()
in my RShiny app, one code snippet looks like this:
checkboxGroupInput(inputId = "maDays", label = "Select Trading Days",
choices = c("Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday", "Sunday"),
selected = c("Monday", "Tuesday", "Wednesday", "Thursday",
"Friday"),
inline = TRUE),
radioButtons(inputId = "maTimeGran", label = "Select Time Granularity",
choices = c("Hourly" = "hour", "Daily" = "day",
"Weekly" = "week"),
selected = "day")
and gives:
Now my question is: How can I change the coloring of all my radioButtons and checkboxxes (the selected checkboxes or radiobuttons) with a css
-tag? My preferred color would be #007d3c
.
Aucun commentaire:
Enregistrer un commentaire