3
以下CSS樣式對應閃亮儀表板中的菜單圖標。我想改變它。我在體內嘗試了tags$head(tags$style..
,但沒有奏效。有任何想法嗎?更改閃亮儀表板中的菜單圖標
.main-header .sidebar-toggle:before {
content: "\f0c9";
}
以下CSS樣式對應閃亮儀表板中的菜單圖標。我想改變它。我在體內嘗試了tags$head(tags$style..
,但沒有奏效。有任何想法嗎?更改閃亮儀表板中的菜單圖標
.main-header .sidebar-toggle:before {
content: "\f0c9";
}
你需要躲避\
:
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
tags$head(tags$style(HTML('
.main-header .sidebar-toggle:before {
content: "\\f0c7";}')))
)
)
server <- function(input, output) { }
shinyApp(ui, server)
我也通常在包裝中的CSS的HTML,以防止其他HTML字符轉義。