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

selection table styling

parent be64b1e0
Branches
No related tags found
No related merge requests found
...@@ -441,14 +441,12 @@ ...@@ -441,14 +441,12 @@
<table class="table selection-table" *ngIf="analysis.getCount() > 0"> <table class="table selection-table" *ngIf="analysis.getCount() > 0">
<thead> <thead>
<tr> <tr>
<td>Type</td> <td>Label</td>
<td>Name</td>
<td>Actions</td> <td>Actions</td>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr *ngFor="let p of analysis.getSelection()"> <tr *ngFor="let p of analysis.getSelection()">
<td><p class="is-capitalized">{{p.data.type}}</p></td>
<td><p class="is-capitalized">{{p.data.label}}</p></td> <td><p class="is-capitalized">{{p.data.label}}</p></td>
<td> <td>
<button (click)="analysis.removeItems([p])" class="button is-small is-danger is-outlined has-tooltip" <button (click)="analysis.removeItems([p])" class="button is-small is-danger is-outlined has-tooltip"
......
...@@ -66,3 +66,7 @@ ...@@ -66,3 +66,7 @@
overflow-x: auto; overflow-x: auto;
} }
.selection-table {
width: 100%;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment