Diciamo che ho una semplice applicazione lucida e vorrei cambiare lo sfondo del pannello della barra laterale . Ho provato con css, ma sono riuscito solo a cambiare tutto lo sfondo. Mi potete aiutare?R lucido - sfondo del pannello della barra laterale
mio ui.R:
library(shiny)
shinyUI(fluidPage(
includeCSS("www/moj_styl.css"),
titlePanel("Hello Shiny!"),
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30)
),
mainPanel(
plotOutput("distPlot")
)
)
))
e la mia server.R:
library(shiny)
shinyServer(function(input, output) {
output$distPlot <- renderPlot({
x <- faithful[, 2] # Old Faithful Geyser data
bins <- seq(min(x), max(x), length.out = input$bins + 1)
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
})
e moj_styl.css:
body {
background-color: #dec4de;
}
body, label, input, button, select {
font-family: 'Arial';
}
Penso che questi siano i collegamenti che mi hanno portato alla mia soluzione: http://stackoverflow.com/questions/19777515/r-shiny-mainpanel-display-style-and-font; http://stackoverflow.com/questions/19798048/r-shiny-how-do-you-change-the-background-color-of-the-header – Benjamin
forse bello sapere che '[]' deve essere omesso e che puoi anche usare colori esadecimali come ad es '# 003399' – 5th