From eed13243c4192a4b3a5f2aedd54dc49c22c53506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Radaczy=C5=84ski?= <47977819+paireks@users.noreply.github.com> Date: Sun, 8 May 2022 18:06:51 +0200 Subject: [PATCH 1/2] Fonts of input fields are not consistent #247 Add Quicksand for all inputs --- website/css/core.css | 1 + 1 file changed, 1 insertion(+) diff --git a/website/css/core.css b/website/css/core.css index 2670c97..478f87b 100644 --- a/website/css/core.css +++ b/website/css/core.css @@ -12,6 +12,7 @@ input, select, textarea { outline: none; + font-family: Quicksand; } html, body From 18727ddba3175a05731404a171e26fd9a1c05524 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Mon, 9 May 2022 17:53:51 +0200 Subject: [PATCH 2/2] Adjust font sizes. --- website/css/core.css | 13 +++++++------ website/css/dialogs.css | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/website/css/core.css b/website/css/core.css index 478f87b..8ab08fc 100644 --- a/website/css/core.css +++ b/website/css/core.css @@ -9,12 +9,6 @@ src: url('Quicksand/Quicksand-Regular.ttf'); } -input, select, textarea -{ - outline: none; - font-family: Quicksand; -} - html, body { color: var(--ov_foreground_color); @@ -56,6 +50,13 @@ li display: var(--ov_only_on_model_display); } +input, select, textarea +{ + font-family: Quicksand; + font-size: 16px; + outline: none; +} + @media (hover) { diff --git a/website/css/dialogs.css b/website/css/dialogs.css index 4ea868e..cae122c 100644 --- a/website/css/dialogs.css +++ b/website/css/dialogs.css @@ -138,7 +138,7 @@ div.ov_dialog div.ov_dialog_copyable_input div.ov_dialog div.ov_dialog_copyable_input input { width: 70%; - margin-top: 6px; + margin-top: 3px; box-sizing: border-box; float: left; border: 0px; @@ -271,7 +271,7 @@ div.ov_snapshot_dialog_param_name { width: 60px; margin-left: 30px; - margin-top: 3px; + margin-top: 6px; float: left; }