LukeMurphey / splunk-dashboard-tabs-example

An example of the use of tabs on a Splunk dashboard. #splunk
MIT License
21 stars 11 forks source link

Styles for tabs in dark mode #5

Open fredclown opened 1 year ago

fredclown commented 1 year ago

Here are some styles that will change the tab colors if the dashboard is in dark mode.

.dashboard-panel[class*="dashboardPanel---pages-dark"] ul.nav-tabs {
    background-color: #3c444d;
}

.dashboard-panel[class*="dashboardPanel---pages-dark"] ul.nav-tabs li a {
    color: #c3cbd4;
}

.dashboard-panel[class*="dashboardPanel---pages-dark"] ul.nav-tabs li.active a {
    color: #ffffff;
}
fredclown commented 1 year ago

I created a pull request for this if you find it useful.