From 48a30afa4b36ae0f64d9cab0c0a69015e98659e3 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 11 Jan 2024 17:06:34 -0700 Subject: [PATCH] Et2Email: Fix [readonly][rows=1] popup position & z-index issue --- api/js/etemplate/Et2Email/Et2Email.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/js/etemplate/Et2Email/Et2Email.ts b/api/js/etemplate/Et2Email/Et2Email.ts index fedbd0ffca..08e401e965 100644 --- a/api/js/etemplate/Et2Email/Et2Email.ts +++ b/api/js/etemplate/Et2Email/Et2Email.ts @@ -1141,7 +1141,7 @@ export class Et2Email extends Et2InputWidget(LitElement) implements SearchMixinI } // Offset distance to open _over_ the rest - let distance = (-1 * parseInt(getComputedStyle(this).height)); + let distance = (-1 * parseInt(getComputedStyle(this).height)) + 1; return html` ${this.label} + ${this.readonlyHoverTemplate()}
- ${this.readonlyHoverTemplate()}