We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Was wondering if there are options to customize the description dialog, visually. Initially something basic, like making the dialog window wider.
The text was updated successfully, but these errors were encountered:
Hi, this can be done with some CSS. For example, to make the popover wider and have a black background:
library(shiny) library(cicerone) guide <- Cicerone$ new()$ step("one", "Try", "Try") ui <- fluidPage( use_cicerone(), tags$head( tags$style( HTML(" div#driver-popover-item { max-width: 800px; width: 800px; background-color: black; color: white } ") ) ), h1("Try", id = "one") ) server <- function(input, output){ guide$init()$start() } shinyApp(ui, server)
Sorry, something went wrong.
No branches or pull requests
Was wondering if there are options to customize the description dialog, visually.
Initially something basic, like making the dialog window wider.
The text was updated successfully, but these errors were encountered: