ionic super-tas插件修改select 颜色

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); // 选中之后的颜色

    }

  }

你可能感兴趣的:(ionic super-tas插件修改select 颜色)