Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何更改materialSwitchShiny 应用程序中元素的颜色?我知道tags$style(...)可以在 ui.R 内部使用它来修改 CSS 样式,但我不知道这些元素的具体类名。
materialSwitch
tags$style(...)
我刚刚发现了如何更改活动 MaterialSwitch 按钮的颜色。只需将以下内容添加到您的 ui.R 文件中的 Shiny 应用程序中:
tags$style(type = "text/css", " .label-default {background-color: #1574D6;} "),
在此示例中,开关在激活时变为蓝色。