From 71238ab7bc2bddebf4237af4bcf9eb52b793a185 Mon Sep 17 00:00:00 2001 From: r Date: Wed, 30 Mar 2022 17:38:34 +0000 Subject: fluoride: Use max-width for popup --- static/fluoride.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/fluoride.js b/static/fluoride.js index ddf74c6..046f6dd 100644 --- a/static/fluoride.js +++ b/static/fluoride.js @@ -149,6 +149,7 @@ function handleReplyToLink(a) { var copy = status.cloneNode(true); copy.id = "reply-to-popup"; var ract = event.target.getBoundingClientRect(); + copy.style["max-width"] = (window.innerWidth - ract.left - 32) + "px"; if (ract.top > window.innerHeight / 2) { copy.style.bottom = (window.innerHeight - window.scrollY - ract.top) + "px"; @@ -180,6 +181,7 @@ function handleReplyLink(a) { var copy = status.cloneNode(true); copy.id = "reply-popup"; var ract = event.target.getBoundingClientRect(); + copy.style["max-width"] = (window.innerWidth - 98) + "px"; if (ract.left > window.innerWidth / 2) { copy.style.right = (window.innerWidth - ract.right - 12) + "px"; -- cgit v1.2.3