updating list view styles throughout settings tab
This commit is contained in:
parent
e3bd63777c
commit
7973d3a75f
4 changed files with 19 additions and 10 deletions
|
|
@ -1,12 +1,14 @@
|
||||||
<ion-view>
|
<ion-view id="preferences-language" class="settings">
|
||||||
<ion-nav-bar class="bar-royal">
|
<ion-nav-bar class="bar-royal">
|
||||||
<ion-nav-back-button>
|
<ion-nav-back-button>
|
||||||
</ion-nav-back-button>
|
</ion-nav-back-button>
|
||||||
</ion-nav-bar>
|
</ion-nav-bar>
|
||||||
<ion-content ng-controller="preferencesLanguageController" ng-init="init()" >
|
<ion-content ng-controller="preferencesLanguageController" ng-init="init()" >
|
||||||
<ion-radio ng-repeat="lang in availableLanguages" ng-value="lang.isoCode" ng-model="currentLanguage"
|
<div class="list">
|
||||||
ng-click="save(lang.isoCode)">{{lang.name}}
|
<ion-radio ng-repeat="lang in availableLanguages" ng-value="lang.isoCode" ng-model="currentLanguage"
|
||||||
</ion-radio>
|
ng-click="save(lang.isoCode)">{{lang.name}}
|
||||||
|
</ion-radio>
|
||||||
|
</div>
|
||||||
<div class="padding">
|
<div class="padding">
|
||||||
<span translate>All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at</span>
|
<span translate>All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at</span>
|
||||||
<a ng-click="openExternalLink('https://crowdin.com/project/copay', '_system')">https://crowdin.com/project/copay</a>.
|
<a ng-click="openExternalLink('https://crowdin.com/project/copay', '_system')">https://crowdin.com/project/copay</a>.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<ion-view>
|
<ion-view class="settings">
|
||||||
<ion-nav-bar class="bar-royal">
|
<ion-nav-bar class="bar-royal">
|
||||||
<ion-nav-back-button>
|
<ion-nav-back-button>
|
||||||
</ion-nav-back-button>
|
</ion-nav-back-button>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<ion-view id="tab-settings">
|
<ion-view id="tab-settings" class="settings">
|
||||||
<ion-nav-bar class="bar-royal">
|
<ion-nav-bar class="bar-royal">
|
||||||
<ion-nav-title>{{'Global Settings' | translate}}</ion-nav-title>
|
<ion-nav-title>{{'Global Settings' | translate}}</ion-nav-title>
|
||||||
</ion-nav-bar>
|
</ion-nav-bar>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
.settings {
|
||||||
|
.item {
|
||||||
|
color: #444;
|
||||||
|
border-color: rgba(221, 221, 221, 0.3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#tab-settings {
|
#tab-settings {
|
||||||
.list {
|
.list {
|
||||||
.item {
|
.item {
|
||||||
|
|
@ -15,8 +22,8 @@
|
||||||
right: 0;
|
right: 0;
|
||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
&.item-divider{
|
&.item-divider {
|
||||||
color:rgba(74, 74, 74, .8);
|
color: rgba(74, 74, 74, .8);
|
||||||
}
|
}
|
||||||
&.item-heading {
|
&.item-heading {
|
||||||
&:before {
|
&:before {
|
||||||
|
|
@ -28,8 +35,8 @@
|
||||||
width: 0;
|
width: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.item-note{
|
.item-note {
|
||||||
color:rgb(58, 58, 58);
|
color: rgb(58, 58, 58);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue