Skip to content
Snippets Groups Projects
Commit 8ee734c4 authored by AndiMajore's avatar AndiMajore
Browse files

fixed footer button styles

parent 5e71a29e
No related branches found
No related tags found
No related merge requests found
...@@ -172,49 +172,58 @@ ...@@ -172,49 +172,58 @@
> >
<div class="network-footer-toolbar-inner-container"> <div class="network-footer-toolbar-inner-container">
<ng-container *ngIf="myConfig.showFooterButtonScreenshot"> <ng-container *ngIf="myConfig.showFooterButtonScreenshot">
<button <div
(click)="toImage()"
class=" class="
button footer-buttons footer-buttons
is-primary is-rounded
has-tooltip
network-footer-toolbar-element network-footer-toolbar-element
" "
pTooltip="Take a screenshot of the current network."
[ngClass]="{ 'button-small': smallStyle }"
[tooltipStyleClass]="'drgstn drgstn-tooltip'"
tooltipPosition="top"
> >
<button
(click)="toImage()"
class="
button
is-primary is-rounded
has-tooltip
"
pTooltip="Take a screenshot of the current network."
[ngClass]="{ 'button-small': smallStyle }"
[tooltipStyleClass]="'drgstn drgstn-tooltip'"
tooltipPosition="top"
>
<span class="icon"> <span class="icon">
<i class="fas fa-camera" aria-hidden="true"></i> <i class="fas fa-camera" aria-hidden="true"></i>
</span> </span>
<span [ngClass]="{ 'text-normal': smallStyle }" <span [ngClass]="{ 'text-normal': smallStyle }"
>Screenshot</span >Screenshot</span
> >
</button> </button>
</div>
</ng-container> </ng-container>
<ng-container *ngIf="myConfig.showFooterButtonExportGraphml"> <ng-container *ngIf="myConfig.showFooterButtonExportGraphml">
<button <div
(click)="graphmlLink()"
class=" class="
button footer-buttons footer-buttons
is-primary is-rounded network-footer-toolbar-element"
has-tooltip
network-footer-toolbar-element
"
[ngClass]="{ 'button-small': smallStyle }"
pTooltip="Export this network as .graphml file."
[tooltipStyleClass]="'drgstn drgstn-tooltip'"
tooltipPosition="top"
> >
<button
(click)="graphmlLink()"
class="button
is-primary is-rounded
has-tooltip"
[ngClass]="{ 'button-small': smallStyle }"
pTooltip="Export this network as .graphml file."
[tooltipStyleClass]="'drgstn drgstn-tooltip'"
tooltipPosition="top"
>
<span class="icon"> <span class="icon">
<i class="fas fa-download" aria-hidden="true"></i> <i class="fas fa-download" aria-hidden="true"></i>
</span> </span>
<span [ngClass]="{ 'text-normal': smallStyle }" <span [ngClass]="{ 'text-normal': smallStyle }"
>.graphml</span >.graphml</span
> >
</button> </button>
</div>
</ng-container> </ng-container>
<ng-container *ngIf="myConfig.showFooterButtonExpression"> <ng-container *ngIf="myConfig.showFooterButtonExpression">
...@@ -242,8 +251,7 @@ ...@@ -242,8 +251,7 @@
<span <span
*ngIf="!selectedTissue" *ngIf="!selectedTissue"
[ngClass]="{ 'text-small': smallStyle }" [ngClass]="{ 'text-small': smallStyle }"
>Tissue</span >Tissue</span>
>
<span *ngIf="selectedTissue">{{ <span *ngIf="selectedTissue">{{
selectedTissue.name selectedTissue.name
}}</span> }}</span>
...@@ -281,7 +289,6 @@ ...@@ -281,7 +289,6 @@
</div> </div>
</div> </div>
</ng-container> </ng-container>
<app-toggle <app-toggle
class="footer-buttons network-footer-toolbar-element" class="footer-buttons network-footer-toolbar-element"
textOn="Drugs" textOn="Drugs"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment