Skip to content

Commit

Permalink
Revert "last inlines"
Browse files Browse the repository at this point in the history
This reverts commit 7b576e3.
  • Loading branch information
Polkas committed Jul 28, 2022
1 parent b978304 commit 281ac1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions R/verbatim_popup.R
Original file line number Diff line number Diff line change
Expand Up @@ -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()),
),
Expand Down
10 changes: 4 additions & 6 deletions R/white_small_well.R
Original file line number Diff line number Diff line change
Expand Up @@ -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;",
...
)
}

0 comments on commit 281ac1d

Please sign in to comment.