From 23a2675665cb9c04b53cbc0f95264e2bd17cc7fb Mon Sep 17 00:00:00 2001 From: Sepro Date: Thu, 11 Jun 2020 14:33:29 +0200 Subject: [PATCH] Fix input overlap off RSS downloader WebUI The text input's in the RSS downloader window where not correctly inside their bounding box. --- src/webui/www/private/views/rssDownloader.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/webui/www/private/views/rssDownloader.html b/src/webui/www/private/views/rssDownloader.html index 68ec5a471..4e42c4578 100644 --- a/src/webui/www/private/views/rssDownloader.html +++ b/src/webui/www/private/views/rssDownloader.html @@ -31,6 +31,7 @@ .fullWidth { width: 100%; max-width: none; + box-sizing: border-box; } .noWrap { @@ -78,6 +79,10 @@ #lastMatchDiv { float: right; } + + #ruleSettings { + padding: 4px 10px 4px 10px + }