gpt4 book ai didi

javascript - 如何在 ionic 中自定义 ionic 选择弹出高度

转载 作者:行者123 更新时间:2023-11-28 19:16:16 27 4
gpt4 key购买 nike

我正在尝试覆盖 divmax-height,它使用 interfaceOptions 对弹出窗口中的元素进行分组。属性,但到目前为止我还没有运气,这是我到目前为止所拥有的:

 customOptions: Record<string, string> = {
header: this.translate.instant('mobile.giving.deductionStartDateHeader'),
cssClass: 'ion-select-max-height'
};
.ion-select-max-height {
.alert-radio-group {
max-height: 100%!important;
}
}
<ion-select [interfaceOptions]="customOptions" [formControlName]="fields.deductionStartDate">
<ion-select-option *ngFor='let date of company.possibleDeductionDates | slice:0:6' [value]="date">
{{ date | date:'mediumDate' }}
</ion-select-option>
</ion-select>

如何在不覆盖全局类的情况下更改具有类 .alert-radio-groupdiv 的最大高度?

enter image description here

最佳答案

如果我在我创建的类前面使用 ng-deep 传递给 cssClass 属性,那么它会覆盖我想在弹出窗口中修改的类:

::ng-deep .ion-select-max-height {
.alert-radio-group {
max-height: 100%;
}
}

我仍在学习 Angular 样式,但我读到 ng-deep 所做的是将样式强制到子组件,我看到 ion-alert 是注入(inject)到 DOM 中,所以我猜它是一个子组件

关于javascript - 如何在 ionic 中自定义 ionic 选择弹出高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58241018/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com