Я следовал вашей инструкции по обновлению размера и цвета шрифта маркера, но это также привело к изменению размера и цвета шрифта моего menusubitem в боковой панели, пожалуйста, посоветуйте, как решить эту проблему. Я просмотрел все страницы Google, не нашел аналогичного решения, спасибо
Я пытался разместить стиль тегов сверху и внутри, а также не работал.
shinyUI<- ( dashboardPage( skin = "red",
dashboardHeader(title = "QCA", dropdownMenuOutput("msgoutput")),
dashboardSidebar(
textInput("text", "Text"),
sidebarMenu(
menuItem(" Induction", tabName = "Induction"),
menuItem(" QCA KPI", tabName = "summary"),
menuItem("Client Account Service-- Site", tabName = "cas_bsl"),
menuItem("Client Account Service-- Site", tabName = "cas_ba" ),
menuItem("Debt Lodgement", tabName = "dl",badgeLabel = "coming soon", badgeColor = "green"),
menuItem("CBRS", tabName = "cbrs",badgeLabel = "Coming soon", badgeColor = "green")
)),
dashboardBody(
tabItems(
tabItem( tabName = "Induction",
fluidPage(
h2(" QCA Dashboard", align = 'Center'),
hr(),
h4("QCA Dashboard is reporting tool specific to the Service Delivery enviroment. This is an online self-service
data visulization and discovery tool that is interactive and intuitive to the mind of the user. All important information
has been collated into a centralized database to provide instant information in the forms of charts and tables."),
hr(),
h4( "The dashboard is reporting tool for Business Units Directors, Leaders and Support Officers. The data is sourced from QA portal.
Current is trial version. "),
hr(),
hr(),
tags$div(tags$ul(
tags$li(tags$span("Summary "), tags$style("{font-size:36px;}")),
hr(),
tags$li(tags$span("Client Account Service")),
hr(),
tags$li(tags$span("Debt Lodgement")),
hr(),
tags$li(tags$span("CBRS"))))
))
,