diff --git a/R/verbatim_popup.R b/R/verbatim_popup.R index aaeea81c..54b019e9 100644 --- a/R/verbatim_popup.R +++ b/R/verbatim_popup.R @@ -104,15 +104,14 @@ button_click_observer <- function(click_event, copy_button_id, copied_area_id, m shiny::showModal( shiny::modalDialog( shiny::tagList( - include_css_files(pattern = "verbatim_popup"), shiny::tags$div( - class = "mb-4", shiny::actionButton( copy_button_id, "Copy to Clipboard", onclick = paste0("copyToClipboard('", copied_area_id, "')") ), - shiny::modalButton("Dismiss") + shiny::modalButton("Dismiss"), + style = "margin-bottom: 15px;" ), shiny::tags$pre(id = copied_area_id, modal_content()), ), diff --git a/R/white_small_well.R b/R/white_small_well.R index 1260dfb7..ec7014dc 100644 --- a/R/white_small_well.R +++ b/R/white_small_well.R @@ -15,11 +15,9 @@ #' #' white_small_well(shiny::htmlOutput("summary")) white_small_well <- function(...) { - shiny::tagList( - include_css_files(pattern = "custom"), - tags$div( - class = "well well-sm bg-white", - ... - ) + tags$div( + class = "well well-sm", + style = "background-color: white;", + ... ) }