I am trying to make a shiny app which has an absolute panel over a map- and I want it to be semi transparent grey so that you can still see the map underneath but it's still clear enough to read what's in the panel. Have seen online that it is to do with changing the HTML options, but need some help on what that would be! I've included a basic example below, thanks for any help!
ui <- bootstrapPage(absolutePanel(id = "controls", class = "panel panel-default",
top = 75, left = 55, width = 250, fixed=TRUE,
draggable = TRUE, height = "auto",
tags$i(h6("Test Panel"))))
server = function(input, output, session) {}
shinyApp(ui, server)