From 684d509d03bd6c64d73536a514e0cfa3266f520d 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 43bba4eedf..6cae8d28f2 100644 --- a/api/js/etemplate/Et2Email/Et2Email.ts +++ b/api/js/etemplate/Et2Email/Et2Email.ts @@ -1148,7 +1148,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()}