update_ui: Standardize pencil icon color for todo and poll.

Ensure consistent pencil icon color for both todo and poll
features in hover and non-hover states across light and dark
themes.

Fixes #30339.
This commit is contained in:
whilstsomebody 2024-10-26 10:40:29 +05:30 committed by Tim Abbott
parent b149d5fb70
commit ec43a66f26
1 changed files with 4 additions and 3 deletions

View File

@ -272,10 +272,11 @@ input {
.poll-edit-question,
.todo-edit-task-list-title {
opacity: 0.4;
color: var(--color-message-action-visible);
&:hover {
opacity: 1;
&:hover,
&:focus-visible {
color: var(--color-message-action-interactive);
}
}