I am looking for a way to have five tabs in a view that extends the Ext.TabPanel and where all tabs should have there own $active-color.
My wishes are that the first tab, when active, is red and all the "selected" items in that panel, could be a list or other things, should have the same active-color as the tab. Then the second tab should have blue as its color, the third green and so on.
Is there a lean way to do this? to change the active-color for all I can set $active-color in the sass file, but this will effect all tabs and I want to control every tab individually.
You should give each tab it's own cls and then in your SASS manually use the active class name within each cls. You can't use just the variable, you need to do this manually.
Thanks for the help!
I have tried to find how to set the active color (not the $ative-color) via a sass class but can't find the correct selector for it. Do you know what selector it is that I should bee looking for?