I'm curious as to why Tabs don't inherit CSS properties from their parent Panel? In this image you can see that the background colour of the panel within the tab has changed to a lovely blue, but the tab itself is stil the default dark blue:
I know I can edit the CSS properties of each individual tab via:
> inner > .navigation {
/* beautiful stylings go here */
}
...but I'm working on a project at the moment with dozens of tabs (some of them nested inside other tabs) and it would be great if I didn't have to edit them all individually. When added to the parent Panel, the above CSS doesn't get inherited either. Is this intended behaviour, or perhaps I'm missing some clever way of styling all my tabs?