Reputation: 50
I want to know, Is there any way to change the Style sheets of the extension library DOJO Tab container control?
Thanks & regards,
Yogesh Kashid
Upvotes: 1
Views: 562
Reputation: 30960
The best way to change the Style sheets of the extension library DOJO Tab container control is to create and use an own css resource. This way you can change every single table part's look and it would be valid for all DOJO Tab container controls in your application.
.dijitTabContainerTopNone { color: red; }
3 . Add the my.css class to your theme
<theme extends="oneuiv2.1"> <resource> <content-type>text/css</content-type> <href>my.css</href> </resource> </theme>
Upvotes: 1