修改2个离子选择的最后一项

时间:2018-07-06 12:58:19

标签: html css ionic-framework

我有一个ion-select元素,我的后两项(配置和配对)应该是按钮而不是单选按钮?

enter image description here

这是HTML

 <ion-select interface="popover" [ngModel]="selectedUser._id" (ngModelChange)="selectUser($event)" >
   <ion-option *ngFor="let user of users" [value]="user._id">
     <ion-content>{{ getUserName(user) }}</ion-option>
     <ion-option>Configuration</ion-option> 
     <ion-option>Pairing</ion-option>
 </ion-select>

1 个答案:

答案 0 :(得分:0)

找到了解决方案

.select-popover .item:nth-last-child(-n+2){
  ion-radio{
    opacity: 0;
  }
}

像魅力一样工作