TabPanel stylesheets

I would like to be able to update the CSS of individual TabPanel buttons inside a Tabs object (the buttons that switch between the different tabs). but there is no “stylesheets” or “css_classes” attribute to bokeh.models.layouts.TabPanel.
The Tabs object has them, but not TabPanel.

What would be the CSS path to a specific tab if I need to use the Tabs object stylesheet? The selector for all tabs is:

div.bk-header div.bk-tab

Thanks !

Found a solution, we can use

.bk-tab:nth-child(x)

where x is the index of the tab to set a specific css for

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.