diff options
-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 + } } |