add padding at the end of scroll

This commit is contained in:
Javier 2016-08-25 17:27:25 -03:00
commit 124194f522
2 changed files with 41 additions and 35 deletions

View file

@ -2,23 +2,23 @@
<ion-nav-bar class="bar-stable"> <ion-nav-bar class="bar-stable">
<ion-nav-title>Global Settings</ion-nav-title> <ion-nav-title>Global Settings</ion-nav-title>
</ion-nav-bar> </ion-nav-bar>
<ion-content ng-controller="tabSettingsController" ng-init="init()">
<div class="item item-divider"> <ion-content ng-controller="tabSettingsController" ng-init="init()">
</div>
<div class="list"> <div class="list">
<div class="item item-divider"></div>
<div class="item item-icon-left" ng-click="openAddressbookModal()"> <div class="item item-icon-left" ng-click="openAddressbookModal()">
<i class="icon ion-ios-book-outline"></i> <i class="icon ion-ios-book-outline"></i>
<span translate>Address Book</span> <span translate>Address Book</span>
</div> </div>
<div class="item item-icon-left" href ui-sref="settings.feedback"> <div class="item item-icon-left" href ui-sref="settings.feedback">
<i class="icon ion-ios-heart-outline"></i> <i class="icon ion-ios-heart-outline"></i>
<span translate>Feedback</span> <span translate>Feedback</span>
</div> </div>
</div>
<div class="item item-divider"> <div class="item item-divider">Preferences</div>
Preferences
</div>
<div class="list">
<div class="item item-icon-left" href ui-sref="settings.language"> <div class="item item-icon-left" href ui-sref="settings.language">
<i class="icon ion-ios-chatbubble-outline"></i> <i class="icon ion-ios-chatbubble-outline"></i>
<span translate>Language</span> <span translate>Language</span>
@ -26,6 +26,7 @@
{{currentLanguageName|translate}} {{currentLanguageName|translate}}
</span> </span>
</div> </div>
<div class="item item-icon-left" href ui-sref="settings.unit"> <div class="item item-icon-left" href ui-sref="settings.unit">
<i class="icon ion-ios-calculator-outline"></i> <i class="icon ion-ios-calculator-outline"></i>
<span translate>Unit</span> <span translate>Unit</span>
@ -33,6 +34,7 @@
{{unitName}} {{unitName}}
</span> </span>
</div> </div>
<div class="item item-icon-left" href ui-sref="settings.altCurrency"> <div class="item item-icon-left" href ui-sref="settings.altCurrency">
<i class="icon ion-social-usd-outline"></i> <i class="icon ion-social-usd-outline"></i>
<span translate>Alternative Currency</span> <span translate>Alternative Currency</span>
@ -40,6 +42,7 @@
{{selectedAlternative.name}} {{selectedAlternative.name}}
</span> </span>
</div> </div>
<div class="item item-icon-left" href ui-sref="settings.fee"> <div class="item item-icon-left" href ui-sref="settings.fee">
<i class="icon ion-ios-film-outline"></i> <i class="icon ion-ios-film-outline"></i>
<span translate>Bitcoin Network Fee Policy</span> <span translate>Bitcoin Network Fee Policy</span>
@ -47,39 +50,38 @@
{{feeOpts[currentFeeLevel]|translate}} {{feeOpts[currentFeeLevel]|translate}}
</span> </span>
</div> </div>
</div>
<div class="list" ng-show="usePushNotifications && PNEnabledByUser">
<div class="item item-divider">
Notifications
</div>
<ion-toggle ng-model="pushNotifications" toggle-class="toggle-balanced" ng-change="pushNotificationsChange()">
<span class="toggle-label" translate>Enable push notifications</span>
</ion-toggle>
<div ng-show="usePushNotifications && !PNEnabledByUser && isIOSApp">
<div translate>Push notifications for Copay are currently disabled. Enable them in the Settings app.</div>
<ul ng-click="openSettings()">
<li translate>Open Settings app</li>
</ul>
</div>
</div>
<div class="item item-divider">
Exchanges
</div>
<ion-toggle ng-show="!isWP" ng-model="glideraEnabled" toggle-class="toggle-balanced" ng-change="glideraChange()">
<span class="toggle-label" translate>Enable Glidera Service</span>
</ion-toggle>
<ion-toggle ng-show="!isWP" ng-model="coinbaseEnabled" toggle-class="toggle-balanced" ng-change="coinbaseChange()"> <div ng-show="usePushNotifications && PNEnabledByUser">
<span class="toggle-label" translate>Enable Coinbase Service</span> <div class="item item-divider">Notifications</div>
</ion-toggle>
</div> <ion-toggle ng-model="pushNotifications" toggle-class="toggle-balanced" ng-change="pushNotificationsChange()">
<div class="item item-divider"> <span class="toggle-label" translate>Enable push notifications</span>
Others </ion-toggle>
</div>
<div class="list"> <div ng-show="usePushNotifications && !PNEnabledByUser && isIOSApp">
<div translate>Push notifications for Copay are currently disabled. Enable them in the Settings app.</div>
<ul ng-click="openSettings()">
<li translate>Open Settings app</li>
</ul>
</div>
</div>
<div class="item item-divider">Exchanges</div>
<ion-toggle ng-show="!isWP" ng-model="glideraEnabled" toggle-class="toggle-balanced" ng-change="glideraChange()">
<span class="toggle-label" translate>Enable Glidera Service</span>
</ion-toggle>
<ion-toggle ng-show="!isWP" ng-model="coinbaseEnabled" toggle-class="toggle-balanced" ng-change="coinbaseChange()">
<span class="toggle-label" translate>Enable Coinbase Service</span>
</ion-toggle>
<div class="item item-divider">Others</div>
<ion-toggle ng-model="spendUnconfirmed" toggle-class="toggle-balanced" ng-change="spendUnconfirmedChange()"> <ion-toggle ng-model="spendUnconfirmed" toggle-class="toggle-balanced" ng-change="spendUnconfirmedChange()">
<span class="toggle-label" translate>Use Unconfirmed Funds</span> <span class="toggle-label" translate>Use Unconfirmed Funds</span>
</ion-toggle> </ion-toggle>
<div class="item item-icon-left" href ui-sref="settings.about"> <div class="item item-icon-left" href ui-sref="settings.about">
<i class="icon ion-ios-film-outline"></i> <i class="icon ion-ios-film-outline"></i>
<span translate>About Copay</span> <span translate>About Copay</span>

View file

@ -415,6 +415,10 @@ ul.wallet-selection.wallets {
} }
} }
.scroll {
padding-bottom: 35px;
}
// History // History
.updatingHistory { .updatingHistory {
div { div {