Skip to content

Commit

Permalink
fix(platform): vhd - misc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-stepanenko committed Feb 11, 2022
1 parent 12bd632 commit bee98e8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
Expand Up @@ -39,20 +39,17 @@
<br />
<div fd-form-item>
<label fd-form-label for="test-selection-type-single">Selection type: multi</label>
<div style="overflow: auto">
<ng-container *ngIf="values.multi">
<fd-token fd-toolbar-item *ngFor="let item of values.multi" [compact]="true" [readOnly]="true">{{
item.name
}}</fd-token>
</ng-container>
<button
fd-button
[compact]="true"
(click)="vhd2.open()"
aria-label="Open value help dialog"
label="Open and select"
></button>
</div>
<fd-token fd-toolbar-item *ngFor="let item of values.multi" [compact]="true" [readOnly]="true">
{{ item.name }}
</fd-token>
<br *ngIf="values.multi?.length" />
<button
fd-button
[compact]="true"
(click)="vhd2.open()"
aria-label="Open value help dialog"
label="Open and select"
></button>
</div>
<fdp-value-help-dialog
#vhd2
Expand Down
Expand Up @@ -100,7 +100,6 @@ <h5 fd-title class="selected-and-condition-title" [id]="id + '-selected-item'">
<div class="fdp-value-help-dialog__actions-row">
<button
fd-button
[compact]="contentDensity | isCompactDensity"
data-go-advanced
i18n-label="@@platformI18nValueHelpDialog.SearchButton"
label="Go"
Expand All @@ -111,7 +110,6 @@ <h5 fd-title class="selected-and-condition-title" [id]="id + '-selected-item'">
></button>
<button
fd-button
[compact]="contentDensity | isCompactDensity"
data-succes
i18n-label="@@platformI18nValueHelpDialog.SuccessButton"
label="OK"
Expand All @@ -122,7 +120,6 @@ <h5 fd-title class="selected-and-condition-title" [id]="id + '-selected-item'">
></button>
<button
fd-button
[compact]="contentDensity | isCompactDensity"
data-dismiss-dialog
fd-dialog-decisive-button
i18n-label="@@platformI18nValueHelpDialog.CancelButton"
Expand Down
Expand Up @@ -19,6 +19,10 @@ $block: fdp-value-help-dialog;
min-height: 1.625rem;
}

&__row.#{$block}__advanced-search {
padding-top: 1rem;
}

&__advanced-search,
.fd-dialog__body {
background-color: #f7f7f7;
Expand Down

0 comments on commit bee98e8

Please sign in to comment.