From 5267d3e9b8420115210c02be803335113005a931 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Mon, 13 Nov 2023 20:35:50 +0100 Subject: [PATCH] Fix wrong css selector for umap-alert-container elements umap-alert is set on the body to show/hide the alert container fix #1398 --- umap/static/umap/base.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/umap/static/umap/base.css b/umap/static/umap/base.css index 79a25de0..6a7b8677 100644 --- a/umap/static/umap/base.css +++ b/umap/static/umap/base.css @@ -736,24 +736,24 @@ input:invalid { visibility: visible; top: 23px; } -.umap-alert .umap-action { +.umap-alert-container .umap-action { margin-left: 10px; background-color: #fff; color: #000; padding: 5px; border-radius: 4px; } -.umap-alert .umap-action:hover { +.umap-alert-container .umap-action:hover { color: #000; } -.umap-alert .error .umap-action { +.umap-alert-container .error .umap-action { background-color: #666; color: #eee; } -.umap-alert .error .umap-action:hover { +.umap-alert-container .error .umap-action:hover { color: #fff; } -.umap-alert input { +.umap-alert-container input { padding: 5px; border-radius: 4px; width: 100%;