diff options
author | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-05 11:35:57 -0400 |
---|---|---|
committer | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-05 11:35:57 -0400 |
commit | d73f7d9960285aceec01ef41a80bbb19e5d86f8c (patch) | |
tree | aa4f752bc293e9b32cd77061f3a84c605186e4dd | |
parent | 87bd169df4a4384e41b32b3252b3b3c6618f4510 (diff) |
style changes
-rw-r--r-- | src/client/views/nodes/TaskBox.scss | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/client/views/nodes/TaskBox.scss b/src/client/views/nodes/TaskBox.scss index a7f75acdb..cc04f7973 100644 --- a/src/client/views/nodes/TaskBox.scss +++ b/src/client/views/nodes/TaskBox.scss @@ -1,4 +1,5 @@ .task-manager-container { + color-scheme: light; display: flex; flex-direction: column; padding: 8px; @@ -6,15 +7,6 @@ width: 100%; height: 100%; box-sizing: border-box; - - input, - textarea, - select, - button { - background-color: #fff !important; - color: #000 !important; - border-color: #ccc !important; - } } .task-manager-title { @@ -93,11 +85,17 @@ input[type='datetime-local'] { font-size: 0.85rem; padding: 6px 12px; border-radius: 6px; - background-color: #4285f4; + background-color: #5e88c8; color: white; border: none; cursor: pointer; white-space: nowrap; transition: background-color 0.2s ease; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); + + &:hover { + background-color: #4773b0; // darker shade of your base blue + color: white; + transform: scale(1.01); // subtle hover feel without real size change + } } |