diff options
| author | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-04 21:05:47 -0400 |
|---|---|---|
| committer | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-04 21:05:47 -0400 |
| commit | eb9c93a635191ef9ec842592c4a85262811cf108 (patch) | |
| tree | c8bafb17b7004e83394dfcf77a37fa6500e55e3b /src/client/views/nodes/TaskBox.scss | |
| parent | 09be9002b5aa8f5ad7c602bcef6b53bbe0398cd3 (diff) | |
allowed for incomplete tasks + fix for all day tasks not being added correctly + button styling
Diffstat (limited to 'src/client/views/nodes/TaskBox.scss')
| -rw-r--r-- | src/client/views/nodes/TaskBox.scss | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/src/client/views/nodes/TaskBox.scss b/src/client/views/nodes/TaskBox.scss index 6ef0c6454..a7f75acdb 100644 --- a/src/client/views/nodes/TaskBox.scss +++ b/src/client/views/nodes/TaskBox.scss @@ -40,7 +40,7 @@ resize: none; line-height: 1.4; resize: none; - flex-grow: 1 + flex-grow: 1; } .task-manager-checkboxes { @@ -49,7 +49,8 @@ gap: 16px; } -.task-manager-allday, .task-manager-complete { +.task-manager-allday, +.task-manager-complete { display: flex; align-items: center; gap: 6px; @@ -71,11 +72,32 @@ gap: 4px; } -input[type="datetime-local"] { +input[type='datetime-local'] { width: 100%; font-size: 0.9rem; padding: 6px 8px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; -}
\ No newline at end of file +} + +.task-manager-checkboxes { + display: flex; + flex-wrap: wrap; /* allows wrapping on small screens */ + align-items: center; + gap: 16px; + row-gap: 8px; /* optional: tighter vertical spacing if it wraps */ +} + +.task-manager-google { + font-size: 0.85rem; + padding: 6px 12px; + border-radius: 6px; + background-color: #4285f4; + 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); +} |
