减少侧边框中闪亮的所有元素的字体
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了减少侧边框中闪亮的所有元素的字体相关的知识,希望对你有一定的参考价值。
下面是UI代码的一部分。我无法看到侧边栏中的所有选择输入,我怀疑,它无法进一步滚动,或者可能是侧边栏的字体大小必须减少。任何不同的方法可以实现解决问题吗?
dashboardPage(title = "title",
dashboardHeader(title="title1"
),
dashboardSidebar(tags$head(tags$style(html("
.selectize-input, .selectize-dropdown {
font-size:40%;
} }
"))),
radioButtons("filetype", "Select file type",choices=c("csv file","xlsx file")),
tags$div(title="Date format should be mm/dd/YYYY",fileInput("file1", "Upload Data File", accept = c("text/csv","text/comma-separated-values,text/plain",".csv",".xlsx",".xls"))),
uiOutput("col"),
uiOutput("covariate"),
uiOutput("dimensions1"),
uiOutput("levels1"),
uiOutput("dimensions2"),
uiOutput("level2"),
uiOutput("dimensions3"),
uiOutput("level3"),
uiOutput("dimensions4"),
uiOutput("level4")
),
dashboardBody(tags$head(
tags$style(HTML(".my_class {
font-weight: bold;
color:white;
}")
))
,uiOutput("All_tab_Display")
)
)
答案
您最好提供一个可重复的工作示例。测试这个,并通知我是否有帮助:
tags$head(
tags$style(HTML("
.sidebar { height: 90vh; overflow-y: auto; font-size: 10px;}
" )
)
)
以上是关于减少侧边框中闪亮的所有元素的字体的主要内容,如果未能解决你的问题,请参考以下文章