From 08f5debd62cf4eefee9b4e74d4e2b302307b59d7 Mon Sep 17 00:00:00 2001 From: David Larlet Date: Tue, 18 Jun 2024 14:38:00 -0400 Subject: [PATCH] fix: remove custom styles for radio inputs Fix #1912 --- umap/static/umap/base.css | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/umap/static/umap/base.css b/umap/static/umap/base.css index bad66b3a..aaea6d44 100644 --- a/umap/static/umap/base.css +++ b/umap/static/umap/base.css @@ -200,28 +200,6 @@ input[type=checkbox]:checked:after { content: '✓'; color: var(--color-darkGray); } -label input[type="radio"] { - appearance: none; - margin-right: 10px; - background: var(--color-darkGray); -} -input[type="radio"]:after { - display: inline-block; - content: '⦾'; - width: 16px; - height: 16px; - border-radius: 50%; - cursor: pointer; - text-align: center; - vertical-align: bottom; - font-size: 1.2rem; - line-height: 0.7; -} -label input[type="radio"]:checked:after { - background-color: var(--color-lightCyan); - color: var(--color-darkGray); - content: '⦿'; -} input[data-modified=true] { background-color: var(--color-lightCyan);