From 72061d7f74ea9198d74ffff0a90dcac80a4e9d73 Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Sun, 15 Jan 2023 11:14:35 +0100 Subject: [PATCH] cleanup css --- .../src/main/resources/static/css/style.css | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/BudgetMasterServer/src/main/resources/static/css/style.css b/BudgetMasterServer/src/main/resources/static/css/style.css index b891f66b6..ff2ce6f44 100644 --- a/BudgetMasterServer/src/main/resources/static/css/style.css +++ b/BudgetMasterServer/src/main/resources/static/css/style.css @@ -55,7 +55,7 @@ main { /* label underline focus color */ .input-field input[type=text]:focus:not(.invalid), -.input-field input[type=text]:focus:not(.invalid) { +.input-field input[type=number]:focus:not(.invalid) { border-bottom: 1px solid var(--color-blue) !important; box-shadow: 0 1px 0 0 #CCCCCC !important; } @@ -777,13 +777,6 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa color: var(--color-white) !important; } -/* input text color */ -[data-theme="dark"] .input-field input[type=text] { - color: var(--color-white); - border-bottom: 1px solid #FFFFFF; - box-shadow: 0 1px 0 0 #CCCCCC; -} - /* input label color */ [data-theme="dark"] .input-field input[type=text] + label, [data-theme="dark"] .input-field input[type=number] + label { -- GitLab