From d4bfba541432fbae0f7382e570ff4b288caf765c Mon Sep 17 00:00:00 2001 From: David Date: Mon, 24 Jun 2024 14:48:00 +0200 Subject: [PATCH] horizontally resizable search engine textfield URLs are often very long, and it is hard to edit them in a small textarea field. It is still a bit wonky since everything will be moved along, but with the boundaries it should look okay and makes changes easier. --- pages/options.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pages/options.css b/pages/options.css index e785b8ead..303395afa 100644 --- a/pages/options.css +++ b/pages/options.css @@ -128,6 +128,11 @@ textarea#userDefinedLinkHintCss, textarea#keyMappings, textarea#searchEngines { min-height: 140px; white-space: pre; } +textarea#searchEngines { + min-width: 100%; + max-width: 50vw; + resize: both; +} input#previousPatterns, input#nextPatterns { width: 100%; }