-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'Discovery-SearchUI/tyler/displacement' …
…into andy/displacement
- Loading branch information
Showing
16 changed files
with
171 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 15 additions & 4 deletions
19
...ts/shared/selectors/burst-selector/full-burst-selector/full-burst-selector.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
<mat-form-field style="display: block"> | ||
<mat-label>{{'BURST_ID_FULL' | translate}}</mat-label> | ||
<textarea matInput style="height: 75px;" [value]="fullBurstIDs.join(',')" (input)="onChange($event)"></textarea> | ||
</mat-form-field> | ||
<ng-container *ngIf="searchType$ | async as type"> | ||
<ng-container *ngIf="type === searchTypes.TIMESERIES; else other_stuff"> | ||
<mat-form-field style="display: block"> | ||
|
||
<mat-label>{{'BURST_ID_FULL' | translate}}</mat-label> | ||
<input type="text" matInput [value]="fullBurstIDs.join(',')" (input)="onChange($event)"> | ||
</mat-form-field> | ||
</ng-container> | ||
<ng-template #other_stuff> | ||
<mat-form-field style="display: block"> | ||
<mat-label>{{'BURST_ID_FULL' | translate}}</mat-label> | ||
<textarea matInput style="height: 75px;" [value]="fullBurstIDs.join(',')" (input)="onChange($event)"></textarea> | ||
</mat-form-field> | ||
</ng-template> | ||
</ng-container> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/app/components/timeseries-chart/timeseries-chart.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
|
||
<div id="timeseriesChart"></div> | ||
<div class="chart-wrapper" (resized)="onResized()"> | ||
<div #timeseriesChart id="timeseriesChart" ></div> | ||
</div> |
16 changes: 13 additions & 3 deletions
16
src/app/components/timeseries-chart/timeseries-chart.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
@import "asf-theme"; | ||
|
||
#timeseriesChart { | ||
height: 460px; | ||
width: 680px; | ||
// height: 460px; | ||
// width: 680px; | ||
} | ||
|
||
::ng-deep .timeseries-base { | ||
@include themify($themes) { | ||
fill: lighten(themed('dark-primary-text'), 45%); | ||
} | ||
} | ||
} | ||
|
||
.chart-wrapper { | ||
height: calc(100% - 1px); | ||
width: calc(50% - 30px); | ||
} | ||
|
||
#timeseriesChart { | ||
height: 100%; | ||
width: 100%; | ||
} |
Oops, something went wrong.