diff --git a/umap/static/umap/content.css b/umap/static/umap/content.css index bab0a051..24d384c1 100644 --- a/umap/static/umap/content.css +++ b/umap/static/umap/content.css @@ -300,7 +300,7 @@ ul.umap-autocomplete { } .messages .error { - background-color: #c60f13; + background-color: var(--color-red); } diff --git a/umap/static/umap/js/components/alerts/alert.css b/umap/static/umap/js/components/alerts/alert.css index c966686e..70f0ba2d 100644 --- a/umap/static/umap/js/components/alerts/alert.css +++ b/umap/static/umap/js/components/alerts/alert.css @@ -20,7 +20,7 @@ min-width: 80%; } [role="dialog"][data-level="error"] { - background-color: #c60f13; + background-color: var(--color-red); } [role="dialog"] a { text-decoration: underline; @@ -93,23 +93,25 @@ #link-wrapper { margin-bottom: 1rem; } -#choice-wrapper form { +#conflict-wrapper form { display: flex; justify-content: space-around; } -#choice-wrapper form [type="submit"] { +#conflict-wrapper form [type="submit"] { width: initial; background: inherit; color: var(--color-light); + border: 1px solid var(--color-red); + font-weight: bold; } -#choice-wrapper form [type="submit"]:hover { +#conflict-wrapper form [type="submit"]:hover { width: initial; background: darkred; color: var(--color-light); border: 1px solid var(--color-light); } @media only screen and (max-width:770px) { - #choice-wrapper form { + #conflict-wrapper form { flex-direction: column; text-align: center; } diff --git a/umap/static/umap/js/components/alerts/alert.html b/umap/static/umap/js/components/alerts/alert.html index cca7fbb7..a0d7c7c0 100644 --- a/umap/static/umap/js/components/alerts/alert.html +++ b/umap/static/umap/js/components/alerts/alert.html @@ -53,11 +53,11 @@ -