fresh (version 0.1.0)

bs_vars_pills: Bootstrap CSS pills variables

Description

Those variables can be used to customize pills (e.g. shiny:tabsetPanel in Bootstrap and Bootswatch themes.

Usage

bs_vars_pills(border_radius = NULL, active_link_hover_bg = NULL,
  active_link_hover_color = NULL)

Arguments

border_radius

Rounded corner of elements.

active_link_hover_bg

Background color when selected.

active_link_hover_color

Text color when selected.

Value

a list that can be used in create_theme.

Examples

Run this code
# NOT RUN {
bs_vars_pills(
  border_radius = "100px",
  active_link_hover_bg = "#DF3A01",
  active_link_hover_color = "#FFF"
)

if (interactive()) {
  library(shiny)
  library(fresh)

  ui <- fluidPage(
    use_theme(
      create_theme(
        theme = "default",
        bs_vars_pills(
          border_radius = "100px",
          active_link_hover_bg = "#DF3A01",
          active_link_hover_color = "#FFF"
        ),
        output_file = NULL
      )
    ),
    tabsetPanel(
      type = "pills",
      tabPanel("Plot", plotOutput("plot")),
      tabPanel("Summary", verbatimTextOutput("summary")),
      tabPanel("Table", tableOutput("table"))
    )
  )

  server <- function(input, output, session) {

  }

  shinyApp(ui, server)
}
# }

Run the code above in your browser using DataCamp Workspace