Consolidate consultation and specialty actions into a sticky panel.
Deploy Ladill Care / deploy (push) Successful in 35s

Desktop uses a right sticky Actions column; mobile uses a FAB above the nav that opens a bottomsheet. Request investigations moves into a modal/sheet, and Call next is available on the consultation panel.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-18 14:38:09 +00:00
co-authored by Cursor
parent f138ea598a
commit 2b3eed8f84
8 changed files with 343 additions and 139 deletions
+21
View File
@@ -308,6 +308,27 @@ html.qr-mobile-page body {
.btn-fab:hover {
filter: brightness(0.92);
}
/* Consultation / specialty action FAB — sits above mobile bottom nav */
.clinical-actions-fab {
position: fixed;
right: 1rem;
bottom: calc(4rem + env(safe-area-inset-bottom, 0px) + 0.75rem);
z-index: 45;
display: inline-flex;
height: 3.25rem;
width: 3.25rem;
align-items: center;
justify-content: center;
border-radius: 9999px;
background-image: linear-gradient(to right, rgb(79 70 229), rgb(124 58 237));
color: #fff;
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.clinical-actions-fab:hover {
filter: brightness(0.95);
}
}