我放置了一个ion-select
带有警报界面,当用户单击该元素时,将出现一个警报以选择联系人,我想更改该警报按钮的颜色以及检查点,但我不能。在 ionic 文档中,它说要使用 ion-alert 的 css,但这也不起作用。我试过使用 global.scss 并且没有任何变化。
注意我还有其他可以正常工作的警报,我可以更改除此ion-select
警报之外的所有内容。我附上了图片以便于理解。
<ion-item lines="full">
<ion-label>Guests</ion-label>
<ion-select mode="ios" ok-text="Invite" cancel-text="Cancel" multiple="true" interface="alert" [ngModel]="listOfGuests" (ionChange)="selectedGuests($event)">
<ion-select-option *ngFor="let contact of contacts" [value]="contact" >{{ contact.userName }}</ion-select-option>
</ion-select>
</ion-item>