我正在改變離子複選框內複選標記的顏色。複選框有白色背景,複選標記爲白色,以便勾選黑色而不是白色。這是我迄今爲止更改離子複選框內的複選標記顏色
.checkbox-icon::before {
background-color: white !important;
}
.checkbox-icon::after {
color: black !important;
}
<ion-item ng-repeat="list in modal.item.modifier_lists | orderBy: 'ordinal'"
ng-if="list.modifier_options[0].name">
<div ng-if="list.modifier_options.length === 1"
class="row">
<div class="col">
<ion-checkbox ng-model="list.modifier_options[0].selected"
ng-checked="list.modifier_options[0].selected"
class="button-orange checkbox-stable">
<span class="pull-right">{{list.modifier_options[0].name}}</span>
</ion-checkbox>
</div>
</div>
</ion-item>
根據https://ionicframework.com/docs/api/components/checkbox/Checkbox/您在'.checkbox-inner'上更改'border-color' –
'.checkbox-inner'我必須添加此類到html或是它內置的離子複選框@MichaelCoker –
對不起,我不知道。我從未使用離子。如果你有一個工作演示,複選框呈現,我可以告訴你什麼CSS改變。所以我去了離子網站看看他們是否有演示。我可以做的最好:) –