在Shiny R中更改字体大小和颜色不起作用?

时间:2016-07-26 20:45:35

标签: shiny shiny-server shinydashboard shinyjs

我正在尝试使用下面的代码(在ui.r中)更改ID为test_type的siderbarPanel的字体大小和颜色,但它不起作用?

tags$head(tags$style("#test_type{color: red; font-size: 20px; font-style: italic; }" ) )

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我假设您要更改ui中输入字段元素的颜色和字体。你可以这样做:

sidebarPanel(
    tags$head(tags$style(type="text/css", 
              ".test_type {color: red;
                           font-size: 20px; 
                           font-style: italic;}"
                        )
             ),
    div(class="test_type",
       textInput(inputId="ti1", label="Text Input 1", value = "test"))
)

但是如果您想要自定义sidebarPanel本身,请检查

R shiny - background of sidebar panel