widgets: Remove white background from "Add task"/"Add option" button.

In dark theme, when clicking the "Add task" button of
todo and "Add option" button of poll, the background
color incorrectly turns white.

This commit removes the white background color of the
buttons and makes it consistent woth the other green
buttons.
This commit is contained in:
whilstsomebody
2025-03-05 01:18:09 +05:30
committed by Tim Abbott
parent 939691dfed
commit eef44429e2
2 changed files with 1 additions and 4 deletions

View File

@@ -228,9 +228,6 @@ button {
}
&:active {
border-color: hsl(156deg 30% 40%);
color: hsl(156deg 44% 43%);
background-color: hsl(154deg 33% 96%);
transition: 0.2s ease;
transition-property: background-color, border-color, color;
}

View File

@@ -10,7 +10,7 @@
</div>
<ul class="todo-widget">
</ul>
<div class="add-task-bar">
<div class="add-task-bar sea-green">
<input type="text" class="add-task" placeholder="{{t 'New task'}}" />
<input type="text" class="add-desc" placeholder="{{t 'Description'}}" />
<button class="add-task">{{t "Add task" }}</button>