Merge pull request #10489 from rusikv/bug/timeseries-chart-threshold-styles
Fixed timeseries chart widget threshold settings styles
This commit is contained in:
commit
979fe58fe4
@ -98,10 +98,10 @@
|
||||
<input matInput type="number" formControlName="lineWidth" min="0" step="1" placeholder="{{ 'widget-config.set' | translate }}"/>
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<div class="tb-form-row space-between column-xs">
|
||||
<div class="tb-form-row column-xs">
|
||||
<div translate>widgets.time-series-chart.threshold.start-symbol</div>
|
||||
<div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="8px">
|
||||
<mat-form-field class="flex" appearance="outline" subscriptSizing="dynamic">
|
||||
<div class="tb-flex row flex-end">
|
||||
<mat-form-field class="medium-width" fxFlex.lt-md appearance="outline" subscriptSizing="dynamic">
|
||||
<mat-select formControlName="startSymbol">
|
||||
<mat-option *ngFor="let shape of chartShapes" [value]="shape">
|
||||
{{ chartShapeTranslations.get(shape) | translate }}
|
||||
@ -109,16 +109,16 @@
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<div class="tb-small-label" translate>widgets.time-series-chart.threshold.symbol-size</div>
|
||||
<mat-form-field appearance="outline" class="number flex" subscriptSizing="dynamic">
|
||||
<mat-form-field appearance="outline" class="number fixed-width" subscriptSizing="dynamic">
|
||||
<input matInput formControlName="startSymbolSize"
|
||||
type="number" min="0" step="1" placeholder="{{ 'widget-config.set' | translate }}">
|
||||
</mat-form-field>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tb-form-row space-between column-xs">
|
||||
<div class="tb-form-row column-xs">
|
||||
<div translate>widgets.time-series-chart.threshold.end-symbol</div>
|
||||
<div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="8px">
|
||||
<mat-form-field class="flex" appearance="outline" subscriptSizing="dynamic">
|
||||
<div class="tb-flex row flex-end">
|
||||
<mat-form-field class="medium-width" fxFlex.lt-md appearance="outline" subscriptSizing="dynamic">
|
||||
<mat-select formControlName="endSymbol">
|
||||
<mat-option *ngFor="let shape of chartShapes" [value]="shape">
|
||||
{{ chartShapeTranslations.get(shape) | translate }}
|
||||
@ -126,7 +126,7 @@
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<div class="tb-small-label" translate>widgets.time-series-chart.threshold.symbol-size</div>
|
||||
<mat-form-field appearance="outline" class="number flex" subscriptSizing="dynamic">
|
||||
<mat-form-field appearance="outline" class="number fixed-width" subscriptSizing="dynamic">
|
||||
<input matInput formControlName="endSymbolSize"
|
||||
type="number" min="0" step="1" placeholder="{{ 'widget-config.set' | translate }}">
|
||||
</mat-form-field>
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
@import '../../../../../../../../../scss/constants';
|
||||
|
||||
.tb-threshold-settings-panel {
|
||||
width: 530px;
|
||||
width: 540px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user