Skip to content
Snippets Groups Projects
Commit fc05eefd authored by Michael Hartung's avatar Michael Hartung
Browse files

screenshot button size in analysis

parent 137af606
No related branches found
No related tags found
No related merge requests found
......@@ -149,8 +149,8 @@
<div class="network-footer-toolbar-inner-container">
<ng-container *ngIf="myConfig.showFooterButtonScreenshot">
<button class="button is-primary is-rounded has-tooltip network-footer-toolbar-element footer-buttons"
<div *ngIf="myConfig.showFooterButtonScreenshot" class="network-footer-toolbar-element footer-buttons">
<button class="button is-primary is-rounded has-tooltip"
pTooltip="Take a screenshot of the current network."
[tooltipStyleClass]="'drgstn drgstn-tooltip'"
tooltipPosition="top"
......@@ -163,7 +163,7 @@
Screenshot
</span>
</button>
</ng-container>
</div>
<ng-container *ngIf="myConfig.showFooterButtonExportGraphml">
<app-download-button [nodeData]=nodeData [smallStyle]="smallStyle" [buttonId]="'analysis-download'"></app-download-button>
......@@ -265,10 +265,10 @@
</div>
<div class="content tab-content scrollable table-tab" *ngIf="task && task.info.done"
[class.is-visible]="tab === 'table'">
<div class="field has-addons" *ngIf="tableHasScores && task.info.algorithm !== 'proximity'">
<div class="field has-addons is-pulled-right m-1" *ngIf="tableHasScores && task.info.algorithm !== 'proximity'">
<p class="control">
<button class="button is-rounded has-tooltip" pTooltip="Normalize the scores" [tooltipStyleClass]="'drgstn drgstn-tooltip'" tooltipPosition="top"
[class.is-primary]="tableNormalize" (click)="toggleNormalization(true)">
[class.is-primary]="tableNormalize" (click)="toggleNormalization(true)" [ngClass]="{ 'button-small': smallStyle }">
<span class="icon is-small">
<i class="fa fa-ruler-vertical"></i>
</span>
......@@ -278,7 +278,7 @@
<p class="control">
<button class="button is-rounded has-tooltip" pTooltip="Disable normalization of the scores." [tooltipStyleClass]="'drgstn drgstn-tooltip'"
tooltipPosition="top"
[class.is-primary]="!tableNormalize" (click)="toggleNormalization(false)">
[class.is-primary]="!tableNormalize" (click)="toggleNormalization(false)" [ngClass]="{ 'button-small': smallStyle }">
<span>Off</span>
</button>
</p>
......
......@@ -95,7 +95,7 @@ export const defaultConfig: IConfig = {
nodeShadow: true,
edgeShadow: true,
autofillEdges: true,
sidebarPos: 'right',
sidebarPos: 'left',
nodeGroups: {
// all NodeGroups but the default group must be set, if not provided by the user, they will be taken from here
// IMPORTANT: node color must be hexacode!
......
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