From 325fe1f3eec41c49b50f7301d575f43035c39fb8 Mon Sep 17 00:00:00 2001 From: AKORA <65976562+A-K-O-R-A@users.noreply.github.com> Date: Sun, 6 Oct 2024 18:59:41 +0200 Subject: [PATCH] Allow site preferences table to grow bigger on big screens --- keepassxc-browser/options/options.css | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/keepassxc-browser/options/options.css b/keepassxc-browser/options/options.css index da74ffe..585154a 100644 --- a/keepassxc-browser/options/options.css +++ b/keepassxc-browser/options/options.css @@ -2,7 +2,6 @@ body { background-color: var(--kpxc-background-color); color: var(--kpxc-text-color); font-size: 14px; - max-width: 1440px; } a { @@ -123,7 +122,7 @@ table tbody tr.empty:not(:nth-last-child(2)) { #tab-site-preferences td:nth-of-type(2), #tab-site-preferences td:nth-of-type(2) select { - width: 200px; + min-width: 200px; } #tab-site-preferences td:nth-of-type(3), @@ -227,8 +226,19 @@ table td:last-of-type { .sidebar { width: 240px; } + + main { + margin-left: 240px !important; + min-width: calc(0.8333333333 * 1440px) !important; + max-width: calc(100% - 240px) !important; + width: unset !important; + } footer { display: block; } + + .form-text, .form-group { + max-width: calc(0.8333333333 * 1440px); + } }