Change sidebar menu item color in R Shiny
谁能告诉我标签名称来改变蓝线的颜色(参考Shiny Dashboard中menuItem中的图像。这是改变侧边栏菜单项bg颜色的代码。
1
2 3 4 |
.skin-blue .main-sidebar .sidebar .sidebar-menu .active a{
background-color: rgb(107,194,0); color: rgb(255,255,255);font-weight: bold;font-size: 18px; } |
同样,希望自定义蓝线的颜色。
编辑:添加完整代码 – 除蓝线外,所有其他部件颜色均已自定义。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
library(shiny) library(shinydashboard) ui <- dashboardPage( dashboardHeader( dashboardSidebar( sidebarMenu( ), tags$head(tags$style(HTML(‘ /* logo when hovered */ .skin-blue .main-header .logo:hover { /* navbar (rest of the header) */ /* main sidebar */ # /* main body */ /* active selected tab in the sidebarmenu */ /* other links in the sidebarmenu */ /* other links in the sidebarmenu when hovered */ /* toggle button color */ /* toggle button when hovered */ # ‘))) )) server <- shinyServer(function(input, output, session) { }) shinyApp(ui, server) |
可以使用以下 CSS 更改颜色
1
2 3 |
.skin-blue .sidebar-menu > li.active > a {
border-left-color: #ff0000; } |
请注意,如果您更改仪表板的皮肤主题,您可能还需要在此处更改 CSS,因为它引用了
1
2 3 4 |
.skin-blue .sidebar-menu > li.active > a,
.skin-blue .sidebar-menu > li:hover > a { border-left-color: #ff0000; } |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269231.html