mirror of
https://github.com/clearml/clearml-web
synced 2025-03-13 07:08:17 +00:00
dialog first autocomplete opening fix
This commit is contained in:
parent
babcb8c9cf
commit
f177202aa7
@ -2,6 +2,7 @@
|
|||||||
<!-- eslint-disable @angular-eslint/template/label-has-associated-control -->
|
<!-- eslint-disable @angular-eslint/template/label-has-associated-control -->
|
||||||
<sm-dialog-template header="PARAMETERS">
|
<sm-dialog-template header="PARAMETERS">
|
||||||
<div class="dialog-content">
|
<div class="dialog-content">
|
||||||
|
<input class="dummy" type="text">
|
||||||
<ng-container *ngFor="let section of parameters; let index = index" class="w-100 d-flex">
|
<ng-container *ngFor="let section of parameters; let index = index" class="w-100 d-flex">
|
||||||
<div class="param">
|
<div class="param">
|
||||||
<div class="key" [smTooltip]="section.name" smShowTooltipIfEllipsis>
|
<div class="key" [smTooltip]="section.name" smShowTooltipIfEllipsis>
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
@import "variables";
|
@import "variables";
|
||||||
|
.dummy {
|
||||||
|
opacity: 0;
|
||||||
|
position: absolute;
|
||||||
|
left: -9999px;
|
||||||
|
}
|
||||||
.dialog-content {
|
.dialog-content {
|
||||||
max-height: 400px;
|
max-height: 400px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
@ -17,7 +22,6 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.value {
|
.value {
|
||||||
|
Loading…
Reference in New Issue
Block a user