super-tab-button {
? &:not(.selected) {
? ? ion-icon,
? ? span:not(.badge) {
? ? ? opacity: 0.45!important; // I want my unselected tabs to be semi-transparent.
? ? ? color: color($colors, black); // I'm using ionic color variables, but you could set the color here like #999
? ? }
? }
? &.selected {
? ? ion-icon {
? ? ? color: color($colors, black); // change color of selected tab icon
? ? }
? ? span:not(.badge) {
? ? ? color: color($colors, primary); // 選中之后的顏色
? ? }
? }