Merge pull request #1406 from umap-project/buttons-contrasts

Improve buttons’ contrasts on the homepage #a11y
This commit is contained in:
Yohan Boniface 2023-11-14 18:04:27 +01:00 committed by GitHub
commit 3472f45159
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -175,14 +175,14 @@ body.content #umap-ui-container {
input[type="submit"], input[type="submit"],
.button { .button {
background-color: #79c1c0; background-color: #79c1c0;
color: #eeeeec; color: #323737;
} }
.wrapper input[type="submit"]:hover { .wrapper input[type="submit"]:hover {
background-color: #689191; background-color: #689191;
} }
.wrapper .neutral, .wrapper input[type="submit"].neutral { .wrapper .neutral, .wrapper input[type="submit"].neutral {
background-color: #ddd; background-color: #ddd;
color: #666; color: #323737;
} }
.wrapper.somber { .wrapper.somber {
background-color: #2E3641; background-color: #2E3641;

View file

@ -63,7 +63,6 @@ footer .i18n_switch {
} }
.umap-nav .button, .umap-nav .button,
.umap-nav .button:hover { .umap-nav .button:hover {
color: #fff;
text-decoration: none; text-decoration: none;
min-width: 150px; min-width: 150px;
} }