How to change the background color of the Shiny Dashboard Body

后端 未结 1 1364
陌清茗
陌清茗 2021-02-03 12:14

I cannot get the scope to change the background color of the shiny dashboard\'s body. I do not want to use outside CSS because it is not supported in the Shiny server which I\'m

相关标签:
1条回答
  • 2021-02-03 12:14

    Ok, ideally I would like you to use dashboardthemes package https://github.com/nik01010/dashboardthemes, where you can create your own themes with ease, however you can css the .content-wrapper like so:

    rm(list = ls())
    library(shinydashboard)
    library(shiny)
    library(DT)
    library(shinyWidgets)
    library(dplyr)
    ui=shinyUI(
      dashboardPage(
        dashboardHeader(
          title = "Example of a long title that needs more space",
          titleWidth = 450
        ),
        dashboardSidebar( sidebarMenu(
          menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard")),
          menuItem("Widgets", icon = icon("th"), tabName = "widgets",
                   badgeLabel = "new", badgeColor = "green")
        )),
        dashboardBody(
    
          tags$head(tags$style(HTML('
                                    /* logo */
                                    .skin-blue .main-header .logo {
                                    background-color: #f4b943;
                                    }
    
                                    /* logo when hovered */
                                    .skin-blue .main-header .logo:hover {
                                    background-color: #f4b943;
                                    }
    
                                    /* navbar (rest of the header) */
                                    .skin-blue .main-header .navbar {
                                    background-color: #f4b943;
                                    }
    
                                    /* main sidebar */
                                    .skin-blue .main-sidebar {
                                    background-color: #f4b943;
                                    }
    
                                    /* active selected tab in the sidebarmenu */
                                    .skin-blue .main-sidebar .sidebar .sidebar-menu .active a{
                                    background-color: #ff0000;
                                    }
    
                                    /* other links in the sidebarmenu */
                                    .skin-blue .main-sidebar .sidebar .sidebar-menu a{
                                    background-color: #00ff00;
                                    color: #000000;
                                    }
    
                                    /* other links in the sidebarmenu when hovered */
                                    .skin-blue .main-sidebar .sidebar .sidebar-menu a:hover{
                                    background-color: #ff69b4;
                                    }
                                    /* toggle button when hovered  */
                                    .skin-blue .main-header .navbar .sidebar-toggle:hover{
                                    background-color: #ff69b4;
                                    }
    
                                    /* body */
                                    .content-wrapper, .right-side {
                                    background-color: #7da2d1;
                                    }
    
                                    ')))
          )
    
    
          )
          )
    server=shinyServer(function(input,output,session){})
    shinyApp(ui,server)
    

    0 讨论(0)
提交回复
热议问题