[Trunk|Library]: Add margin on modal ok and cancel button.

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@56024 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2019-06-07 10:25:10 +00:00
parent f079122f18
commit c94bfdb928
1 changed files with 2 additions and 2 deletions

View File

@ -20,12 +20,12 @@ import {Component, ViewEncapsulation, ElementRef, EventEmitter, Output, Input} f
<button class="uk-button uk-button-default" (click)="ok()">{{okButtonText}}</button>
</span>
<span [hidden]=!cancelButton>
<button class="uk-button uk-button-default" (click)="cancel()">{{cancelButtonText}}</button>
<button class="uk-button uk-button-default uk-margin-small-left" (click)="cancel()">{{cancelButtonText}}</button>
</span>
</div>
<div *ngIf="!okButtonLeft" class="uk-text-right" [hidden]=!alertFooter>
<span [hidden]=!cancelButton>
<button class="uk-button uk-button-default" (click)="cancel()">{{cancelButtonText}}</button>
<button class="uk-button uk-button-default uk-margin-small-right" (click)="cancel()">{{cancelButtonText}}</button>
</span>
<span [hidden]=!okButton >
<button *ngIf="okDisabled" class="uk-button uk-button-default" disabled>{{okButtonText}}</button>