vikunja/frontend/src/components
kolaente 8ff4696786 fix(frontend): restore quick actions menu styling and height limit
The quick actions menu (cmd+k) rendered without any background and grew
beyond the viewport:

- Its card visuals came from the global Bulma .card styles, which were
  dropped when Card.vue got its own scoped copy — QuickActions is the
  only place using a bare class="card" div, so it lost background,
  border and shadow. Give it its own card styles.
- Its height limit came from Bulma's .modal-content max-height, lost
  when the Bulma modal import was dropped in the native-dialog refactor.
  The :deep(.modal-content) position override in QuickActions never
  matched (.modal-content is an ancestor of the scoped selector, not a
  descendant). Replace both with a proper `top` modal variant that
  anchors the content 3rem below the top edge and caps its height,
  resolving the FIXME asking for exactly that option.
- The dark scrim never showed: Chromium intermittently stops painting a
  styled ::backdrop (after subtree re-renders, or while display is
  transitioned) even though getComputedStyle reports the color. Move
  the scrim onto the viewport-filling dialog element itself — same as
  the old div-based .modal-mask — and drop the display/allow-discrete
  transitions, which the JS-timed close fade never needed.
2026-06-12 07:26:17 +00:00
..
base fix(frontend): scope checkbox hit-area pseudo to the task row 2026-05-05 15:42:10 +00:00
date feat(date): accept a null modelValue in DatepickerWithRange 2026-06-08 13:54:09 +00:00
gantt fix(gantt): ensure chart container fills viewport width for narrow date ranges 2026-04-03 19:07:49 +00:00
home feat(time-tracking): add the sidebar navigation entry 2026-06-08 13:54:09 +00:00
input feat(input): add quick-select shortcuts to the Datepicker 2026-06-08 13:54:09 +00:00
misc fix(frontend): restore quick actions menu styling and height limit 2026-06-12 07:26:17 +00:00
notifications feat(frontend): add Atom feed settings page and notifications discovery (#2760) 2026-05-15 19:28:29 +02:00
project i18n(time-tracking): add the time-tracking UI strings 2026-06-08 13:54:09 +00:00
quick-actions fix(frontend): restore quick actions menu styling and height limit 2026-06-12 07:26:17 +00:00
sharing refactor(frontend): replace reverse-index splice loops with findIndex/filter 2026-04-15 11:44:47 +00:00
tasks fix(frontend): fix buttons alignments in rtl direction 2026-06-11 19:45:57 +00:00
time-tracking refactor(time-tracking): drop the now-redundant duration clamp in the entry list 2026-06-08 13:54:09 +00:00
token fix(frontend): respect user's 12h/24h time format in date pickers 2026-05-05 14:47:24 +00:00