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

selection table styling

parent be64b1e0
No related branches found
No related tags found
No related merge requests found
......@@ -441,14 +441,12 @@
<table class="table selection-table" *ngIf="analysis.getCount() > 0">
<thead>
<tr>
<td>Type</td>
<td>Name</td>
<td>Label</td>
<td>Actions</td>
</tr>
</thead>
<tbody>
<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>
<button (click)="analysis.removeItems([p])" class="button is-small is-danger is-outlined has-tooltip"
......
......@@ -66,3 +66,7 @@
overflow-x: auto;
}
.selection-table {
width: 100%;
}
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