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