When trying to use CSS like:
.tabs dd.disabled a, .tabs .tab-title.disabled a {
background-color: transparent;
color: #c0c0c0; }
My tabs are properly disabled navigation-wise. But they are not disabled visually. In order to get this to work I had to modify the templates to add the "disabled" property to the ng-class because there were only entries for "active".
When trying to use CSS like: .tabs dd.disabled a, .tabs .tab-title.disabled a { background-color: transparent; color: #c0c0c0; }
My tabs are properly disabled navigation-wise. But they are not disabled visually. In order to get this to work I had to modify the templates to add the "disabled" property to the ng-class because there were only entries for "active".
This PR fixes it: https://github.com/pineconellc/angular-foundation/pull/293