From 3a2b347abab88e668219ddba5c9a7aa2ff7983bf Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 24 Nov 2025 11:51:46 -0600 Subject: [PATCH] Restore bubble to Maybe Stalled cards in Maybe are often out of view --- app/assets/stylesheets/card-columns.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/assets/stylesheets/card-columns.css b/app/assets/stylesheets/card-columns.css index 2170b576e..501be0d3e 100644 --- a/app/assets/stylesheets/card-columns.css +++ b/app/assets/stylesheets/card-columns.css @@ -681,6 +681,7 @@ /* -------------------------------------------------------------------------- */ /* Surface a mini bubble if there are cards with bubbles inside */ + .cards--considering:has(.bubble:not([hidden])), .cards--doing.is-collapsed:has(.bubble:not([hidden])) { .cards__transition-container { --bubble-color: var(--card-color, oklch(var(--lch-blue-medium))); @@ -700,6 +701,11 @@ translate: 20% -20%; z-index: 1; } + + .cards--considering &:before { + inset: 0 auto auto 0; + translate: 100% 75%; + } } }