diff options
author | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-05 13:54:09 -0400 |
---|---|---|
committer | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-05 13:54:09 -0400 |
commit | 353fcddb918ee9ccaedd69032f9212fc66c04a7f (patch) | |
tree | ca370b6e1b086cd49f8fd5d8befa28fe8a848672 /src/client/views/nodes/TaskBox.scss | |
parent | 1ec0291a689ed0aea0bb6fdd91e3c08113bfac46 (diff) |
sync button only accessible when a change is made to the task (to counter unnecessary syncing)
Diffstat (limited to 'src/client/views/nodes/TaskBox.scss')
-rw-r--r-- | src/client/views/nodes/TaskBox.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/client/views/nodes/TaskBox.scss b/src/client/views/nodes/TaskBox.scss index cc04f7973..071fe1f7c 100644 --- a/src/client/views/nodes/TaskBox.scss +++ b/src/client/views/nodes/TaskBox.scss @@ -92,10 +92,16 @@ input[type='datetime-local'] { 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 } + + &:disabled { + opacity: 0.5; + cursor: not-allowed; + pointer-events: none; + } } |