to make it different per tab, you can change the sass shown and add a nth selector
.mx-tabcontainer {
&>.mx-tabcontainer-tabs {
li:nth-of-type(1) {
&.active>a,
&.active>a:hover,
&.active>a:focus {
background-color: red;
}
}
li:nth-of-type(2) {
&.active>a,
&.active>a:hover,
&.active>a:focus {
background-color: blue;
}
}
}
}
Hi Nathan, if you are familiar with editing style for your application via SASS, you can solve it this way:
.mx-tabcontainer {
&>.mx-tabcontainer-tabs {
li {
&.active>a,
&.active>a:hover,
&.active>a:focus {
background-color: #E6E6FA;
}
}
}
}
Hi Nathan,
In my project also we have same requirement.
Could you please let me know how to add the SCSS in the application.
Regards
Sreenivas