mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Enhance color contrast and accessibility for various UI elements
This commit is contained in:
parent
9f0c37352e
commit
184415a026
1 changed files with 34 additions and 1 deletions
|
@ -23,6 +23,39 @@ table, tbody, td, tfoot, th, thread, tr, tt, ul, var {
|
|||
.panel-heading.note-toolbar .note-color-palette div .note-color-btn {
|
||||
background: none;
|
||||
}
|
||||
input::placeholder, textarea::placeholder {
|
||||
color: #555 !important;
|
||||
opacity: 1;
|
||||
}
|
||||
.error-notification {
|
||||
color: #fff !important; /* White text */
|
||||
background: #d32f2f !important; /* Strong red background */
|
||||
}
|
||||
.menu-text, .sidebar-text {
|
||||
color: #222 !important; /* Very dark grey or black */
|
||||
}
|
||||
.notification-link {
|
||||
color: #0056b3 !important; /* Darker blue for better contrast */
|
||||
}
|
||||
.card-title, .header-title {
|
||||
color: #fff !important; /* White text for dark backgrounds */
|
||||
}
|
||||
.checklist-item.finished {
|
||||
color: #444 !important; /* Darker grey for better contrast */
|
||||
text-decoration: line-through;
|
||||
}
|
||||
.button-dark {
|
||||
color: #fff !important;
|
||||
}
|
||||
.heading {
|
||||
color: #222 !important;
|
||||
}
|
||||
.menu-text {
|
||||
color: #222 !important;
|
||||
}
|
||||
.calendar-event, .calendar-card {
|
||||
color: #fff !important;
|
||||
}
|
||||
a:focus {
|
||||
outline: unset;
|
||||
outline-offset: unset;
|
||||
|
@ -194,7 +227,7 @@ strong {
|
|||
p {
|
||||
-webkit-user-select: text;
|
||||
user-select: text;
|
||||
|
||||
|
||||
|
||||
}
|
||||
p a {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue