Skip to content

Commit

Permalink
Highlight relation in interaction phenotype ext.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Sep 18, 2023
1 parent 90002ae commit 8aa48ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,7 @@ table.main-interaction-table tbody {
-webkit-user-select: none;
user-select: none;
}

.phenotype-extension {
font-size: 90%;
}
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@
<app-term-link [term]="detail.double_mutant_phenotype">
{{detail.double_mutant_phenotype.name}}
</app-term-link>
<div *ngIf="detail.double_mutant_extension">
<app-extension-display [extension]="detail.double_mutant_extension" [highlightRelations]="false"></app-extension-display>
<div *ngIf="detail.double_mutant_extension" class="phenotype-extension">
<app-extension-display [extension]="detail.double_mutant_extension" [highlightRelations]="true"></app-extension-display>
</div>
</span>
</td>
Expand All @@ -144,8 +144,8 @@
<app-term-link [term]="detail.rescued_phenotype">
{{detail.rescued_phenotype.name}}
</app-term-link>
<div *ngIf="detail.rescued_phenotype_extension">
<app-extension-display [extension]="detail.rescued_phenotype_extension" [highlightRelations]="false"></app-extension-display>
<div *ngIf="detail.rescued_phenotype_extension" class="phenotype-extension">
<app-extension-display [extension]="detail.rescued_phenotype_extension" [highlightRelations]="true"></app-extension-display>
</div>
</span>
</td>
Expand Down

0 comments on commit 8aa48ac

Please sign in to comment.