@@ -65,10 +65,6 @@ <h3>Search parameters</h3>
6565 < mat-option disabled *ngIf ="efoTraitsDropdownItems.length == 0 "> No results.</ mat-option >
6666 </ mat-autocomplete >
6767 </ mat-form-field >
68- < button mat-raised-button class ="ml-4 filters-button " color ="accent " (click) ="resetFilters() ">
69- < mat-icon > restart_alt</ mat-icon >
70- Reset
71- </ button >
7268 < br >
7369 < mat-form-field appearance ="outline ">
7470 < mat-label > GxE flag</ mat-label >
@@ -97,7 +93,12 @@ <h3>Search parameters</h3>
9793 </ mat-select >
9894 </ mat-form-field >
9995
100- < button mat-raised-button class ="ml-4 filters-button " color ="accent " (click) ="search() ">
96+ < button mat-raised-button class ="ml-4 filters-button " color ="primary " (click) ="resetFilters() ">
97+ < mat-icon > restart_alt</ mat-icon >
98+ Reset
99+ </ button >
100+
101+ < button mat-raised-button class ="ml-4 filters-button " color ="primary " (click) ="search() ">
101102 < mat-icon > search</ mat-icon >
102103 Search
103104 </ button >
@@ -146,8 +147,10 @@ <h3>Search parameters</h3>
146147 </ ng-container >
147148
148149 < ng-container matColumnDef ="title ">
149- < th mat-header-cell *matHeaderCellDef mat-sort-header > TITLE</ th >
150- < td mat-cell *matCellDef ="let row "> {{row?.title || 'NA'}}</ td >
150+ < th mat-header-cell *matHeaderCellDef > TITLE</ th >
151+ < td mat-cell *matCellDef ="let row " class ="ellipsis-col ">
152+ < span matTooltip ="{{row?.title}} " matTooltipClass ="mat-tooltip "> {{row?.title || 'NA'}}</ span >
153+ </ td >
151154 </ ng-container >
152155
153156 < ng-container matColumnDef ="efoTrait ">
@@ -162,8 +165,8 @@ <h3>Search parameters</h3>
162165
163166 < ng-container matColumnDef ="note ">
164167 < th mat-header-cell *matHeaderCellDef > NOTE</ th >
165- < td mat-cell *matCellDef ="let row " class ="note -col "> {{row?.notes?.toString() || 'NA'}}
166- < button mat-icon-button class ="float-right " (click) ="(expandedElement = expandedElement === row ? null : row); $event.stopPropagation() " *ngIf ="row?.notes ">
168+ < td mat-cell *matCellDef ="let row " class ="ellipsis -col "> {{row?.notes?.toString() || 'NA'}}
169+ < button mat-icon-button class ="float-right -top-8 -right-6 " (click) ="(expandedElement = expandedElement === row ? null : row); $event.stopPropagation() " *ngIf ="row?.notes ">
167170 < mat-icon *ngIf ="expandedElement !== row "> keyboard_arrow_down</ mat-icon >
168171 < mat-icon *ngIf ="expandedElement === row "> keyboard_arrow_up</ mat-icon >
169172 </ button >
0 commit comments