adminlte_global: AdminLTE CSS global variables

Description Usage Arguments Value Examples

View source: R/vars-adminlte.R

Description

Those variables can be used to customize global settings in shinydashboard.

Usage

1
adminlte_global(content_bg = NULL, box_bg = NULL, info_box_bg = NULL)

Arguments

content_bg

Background color of the body.

box_bg

Default background color for boxes.

info_box_bg

Default background color for info boxes.

Value

a list that can be used in create_theme.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if (interactive()) {
  library(shiny)
  library(shinydashboard)

  ui <- dashboardPage(
    header = dashboardHeader(title = "My dashboard"),
    sidebar = dashboardSidebar(),
    body = dashboardBody(

      use_theme(create_theme(
        adminlte_global(
          content_bg = "#FAAC58"
        )
      ))
    )
  )

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

  }

  shinyApp(ui, server)
}

Example output



fresh documentation built on July 2, 2020, 1:59 a.m.