Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>Transaction Data</h1>

<div class="resource-list" *ngIf="isEvent">
<div class="resource-dropdown" *ngFor="let event of events; let i = index">
<button class="resource-open" (click)="selectEvent(event, i)">
<button class="resource-open" (click)="selectEvent(event, i)" [ngClass]="{'open': showEvent(i)}">
<div class="resource-title">
<span class="title">{{event.getFullyQualifiedType()}}#{{event.getIdentifier()}}</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@
height: 0;
}
}
.resource-open.open {
&::after {
transform: rotate(180deg);
bottom: 10%;
right: 3%;
}
}
.resource-content {
.CodeMirror {
height: 200px;
Expand Down