fix(modals): modify border-color with background-color to remove unstyled line

This commit is contained in:
Jason Dreyzehner 2016-10-18 20:23:24 -04:00
commit debff3e8b9
4 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<ion-modal-view ng-controller="customAmountController"> <ion-modal-view ng-controller="customAmountController">
<ion-header-bar align-title="center" class="tab-bar" ng-style="{'background-color':color}"> <ion-header-bar align-title="center" class="tab-bar" ng-style="{'background-color':color, 'border-color': color}">
<div class="left-small"> <div class="left-small">
<a ng-click="cancel()" class="p10"> <a ng-click="cancel()" class="p10">
<span class="text-close" translate>Close</span> <span class="text-close" translate>Close</span>

View file

@ -1,5 +1,5 @@
<ion-modal-view ng-controller="payproController"> <ion-modal-view ng-controller="payproController">
<ion-header-bar align-title="center" class="bar-royal" ng-style="{'background-color': color}"> <ion-header-bar align-title="center" class="bar-royal" ng-style="{'background-color': color, 'border-color': color}">
<button class="button button-clear" ng-click="cancel()"> <button class="button button-clear" ng-click="cancel()">
{{'Close' | translate}} {{'Close' | translate}}
</button> </button>

View file

@ -1,5 +1,5 @@
<ion-modal-view> <ion-modal-view>
<ion-header-bar align-title="center" class="bar-royal" ng-style="{'background-color':color}"> <ion-header-bar align-title="center" class="bar-royal" ng-style="{'background-color':color, 'border-color': color}">
<button class="button button-clear" ng-click="close()"> <button class="button button-clear" ng-click="close()">
Close Close
</button> </button>

View file

@ -1,5 +1,5 @@
<ion-modal-view ng-controller="txDetailsController" ng-init="init()" id="tx-details"> <ion-modal-view ng-controller="txDetailsController" ng-init="init()" id="tx-details">
<ion-header-bar align-title="center" class="bar-royal" ng-style="{'background-color': color}"> <ion-header-bar align-title="center" class="bar-royal" ng-style="{'background-color': color, 'border-color': color}">
<button class="button button-clear" ng-click="cancel()"> <button class="button button-clear" ng-click="cancel()">
{{'Close' | translate}} {{'Close' | translate}}
</button> </button>