I'm trying to change the tab style for tabBox
in shinydashboard
. I was able to change the background of the tabs that aren't selected, but I can't change the background of the tab that is selected or the text that appears in each tab. This is what I added to a custom.css file to change the unselected tab backgrounds:
.nav-tabs {
background-color: #006747;
}
I tried stuff like .nav-tabs .active
but I couldn't get anything to work.
Also if anybody knows how to change the small colored sliver that appears next to your selected tab, that would be appreciated also.