homogenized lists
This commit is contained in:
parent
7c8b77413c
commit
ad6702b425
5 changed files with 10 additions and 4 deletions
|
|
@ -5,7 +5,7 @@
|
|||
<div class="content preferences" ng-controller="preferencesAltCurrencyController">
|
||||
<h4></h4>
|
||||
|
||||
<ion-radio class="line-b size-12" ng-repeat="altCurrency in altCurrencyList" ng-value="altCurrency" ng-model="currentCurrency"
|
||||
<ion-radio class="line-b size-12 radio-label" ng-repeat="altCurrency in altCurrencyList" ng-value="altCurrency" ng-model="currentCurrency"
|
||||
ng-click="save(altCurrency)">{{altCurrency.name}}
|
||||
</ion-radio>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<ion-radio class="size-12" ng-repeat="fee in prefFee.feeLevels.livenet" ng-value="fee.level" ng-model="data.currentFeeLevel"
|
||||
<ion-radio class="libe-b size-12 radio-label" ng-repeat="fee in prefFee.feeLevels.livenet" ng-value="fee.level" ng-model="data.currentFeeLevel"
|
||||
ng-click="prefFee.save(fee)">{{prefFee.feeOpts[fee.level]|translate}}
|
||||
</ion-radio>
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<div class="content preferences" ng-controller="preferencesLanguageController">
|
||||
<h4></h4>
|
||||
|
||||
<ion-radio class="line-b size-12" ng-repeat="lang in availableLanguages" ng-value="lang.isoCode" ng-model="currentLanguage"
|
||||
<ion-radio class="line-b size-12 radio-label" ng-repeat="lang in availableLanguages" ng-value="lang.isoCode" ng-model="currentLanguage"
|
||||
ng-click="save(lang.isoCode)">{{lang.name}}
|
||||
</ion-radio>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<div class="content preferences" ng-controller="preferencesUnitController">
|
||||
<h4></h4>
|
||||
|
||||
<ion-radio class="line-b size-12" ng-repeat="unit in unitList" ng-value="unit.code" ng-model="currentUnit"
|
||||
<ion-radio class="line-b size-12 radio-label" ng-repeat="unit in unitList" ng-value="unit.code" ng-model="currentUnit"
|
||||
ng-click="save(unit)">{{unit.shortName}}
|
||||
</ion-radio>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -20,6 +20,12 @@
|
|||
z-index: -1;
|
||||
}
|
||||
|
||||
.radio-label {
|
||||
text-transform: none;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.item-radio .radio-icon {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue