【发布时间】:2015-09-08 09:38:37
【问题描述】:
如何在闪亮的仪表板中为 tabItem 中的框更改字体系列?
我已经在dashboardBody 中包含了一些css 编码,改变了颜色和字体系列,但这仅链接到主标题:
body <- dashboardBody(
tags$head(tags$style(HTML('
.skin-blue .main-header .logo {
font-family: "Calibri";
font-weight: bold;
font-size: 28px;
background-color: #003D76;
}
.skin-blue .main-header .navbar {
background-color: #0082D1;
}
'))),
非常感谢您的帮助。
tabItem 的开头如下:
tabItems(
tabItem(tabName = "dashboard",
fluidRow(
box(
title = strong("GPIM Liquidity Risk"), status = "primary", solidHeader = TRUE, width = 8,
img(src = "gpim-signet.png", height = 80, width = 130),
【问题讨论】:
标签: css r shiny shinydashboard