gpt4 book ai didi

r - 如何在 RStudio 中为 flex 仪表板选项卡的标签选择颜色?

转载 作者:行者123 更新时间:2023-12-04 09:44:43 26 4
gpt4 key购买 nike

我正在使用 flex 仪表板工具来创建仪表板。仪表板有几个选项卡。我想知道如何将颜色应用于选项卡的标题/名称/标签。谢谢!

以下是代码:

---
title: "A Template of Dashboard with Pages and Tabs"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
social: [ "twitter", "facebook", "menu" ]

---

<style>
body {
background-color: lightgray;
color: black;
}

.nav-tabs-custom > .nav-tabs > li.active {border-top-color: black; }


.tabset {
background-color: red;
border: 10px solid green !important;

}

</style>



## Column {data-width=120}



## Column {data-width=880 .tabset}


### Tab 1



### Tab 2


最佳答案

这可以像这样实现:

/* Set font color of inactive tab to green */
.nav-tabs-custom .nav-tabs > li > a {
color: green;
}

/* Set font color of active tab to red */
.nav-tabs-custom .nav-tabs > li.active > a {
color: red;
}

/* To set color on hover */
.nav-tabs-custom .nav-tabs > li.active > a:hover {
color: purple;
}

关于r - 如何在 RStudio 中为 flex 仪表板选项卡的标签选择颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62186641/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com