我通过编辑css文件成功更改了闪亮的仪表板界面中的文本大小。
或者我使用以下结构:
div(DTOutput(outputId = "table"), style = "font-size:85%"))
但是,我找不到闪亮的模态的节点名称。 是否可以通过.css以闪亮的模式更改文本大小?
答案 0 :(得分:1)
您是否正在寻找类似的东西?
shinyApp(
+ ui = basicPage(
+ actionButton("show", "Show modal dialog")
+ ),
+ server = function(input, output) {
+ observeEvent(input$show, {
+ showModal(modalDialog(
+ title = "Important message",
+ div("This is an important message!", style="font-size:160%")
+ ))
+ })
+ }
+ )
ModalDialog
以IU元素作为其第一个参数。这似乎与其他闪亮元素所接受的论点相同。比较例如:?siderbarPanel
和?modalDialog
。因此,如果您可以在应用程序主体中进行操作,则可能可以在模式中进行。
例如,我在工具栏中插入了侧边栏布局:
shinyApp(
ui = basicPage(
actionButton("show", "Show modal dialog")
),
server = function(input, output) {
observeEvent(input$show, {
showModal(modalDialog(
sidebarLayout(sidebarPanel("yeah"),mainPanel("cool"))
))
})
}
)