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

small fixes with layouting

parent a2269017
No related branches found
No related tags found
No related merge requests found
...@@ -51,15 +51,11 @@ ...@@ -51,15 +51,11 @@
<div class="column content"> <div class="column content">
<h4 <h4
class="is-4 has-text-weight-bold" class="is-4 has-text-weight-bold"
*ngIf="
task.info.algorithm !== 'quick' &&
task.info.algorithm !== 'super'
"
> >
<span class="icon"> <span class="icon">
<i class="fas fa-wrench" aria-hidden="true"></i> <i class="fas fa-wrench" aria-hidden="true"></i>
</span> </span>
Algorithm: {{(['quick', 'super', 'connect', 'connectSelected'].indexOf(task.info.algorithm) === -1) ? 'Algorithm:' : 'Method:' }}
{{ algorithmNames[task.info.algorithm] }} {{ algorithmNames[task.info.algorithm] }}
</h4> </h4>
</div> </div>
...@@ -158,14 +154,17 @@ ...@@ -158,14 +154,17 @@
</table> </table>
</div> </div>
</div> </div>
<div <div class="columns m-1"
*ngIf=" *ngIf="['quick','super','connect','connectSelected'].indexOf(task.info.algorithm) > -1"
task.info.algorithm === 'quick' || task.info.algorithm === 'super'
"
> >
<p> <div class="column">
Algorithm: <strong>{{ algorithmNames["multisteiner"] }}</strong> <h4 class="is-4 has-text-weight-bold">
</p> <span class="icon">
<i class="fas fa-wrench" aria-hidden="true"></i>
</span>
Algorithm:
{{ algorithmNames["multisteiner"] }}
</h4>
<table class="table is-narrow"> <table class="table is-narrow">
<tbody> <tbody>
<tr> <tr>
...@@ -182,9 +181,17 @@ ...@@ -182,9 +181,17 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
<p> </div>
Algorithm: <strong>{{ algorithmNames["closeness"] }}</strong> </div>
</p> <div class="columns m-1" *ngIf="['quick','super'].indexOf(task.info.algorithm) > -1">
<div class="column">
<h4 class="is-4 has-text-weight-bold">
<span class="icon">
<i class="fas fa-wrench" aria-hidden="true"></i>
</span>
Algorithm:
{{ algorithmNames["closeness"] }}
</h4>
<table class="table is-narrow"> <table class="table is-narrow">
<tbody> <tbody>
<tr> <tr>
...@@ -212,6 +219,7 @@ ...@@ -212,6 +219,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
<div class="tab-content" [class.is-visible]="tab === 'network'"> <div class="tab-content" [class.is-visible]="tab === 'network'">
<!-- network start --> <!-- network start -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment