feat(FN-3186): add priority control to quick-entry box

This merge adds a quick-entry priority control to the QuickEntryBox component, polishes GitHub source issue summary styling in the TaskDetailModal, and documents layered agent memory access in the agents reference. The changes include both the component implementation with 186 lines of new logic and

Fusion-Task-Id: FN-3186
This commit is contained in:
Fusion
2026-05-02 02:50:46 -07:00
committed by gsxdsm
parent 6b75b3ac8e
commit 99b8183f01
5 changed files with 274 additions and 4 deletions

View File

@@ -117,11 +117,24 @@
position: relative;
}
.node-trigger-wrap {
.node-trigger-wrap,
.priority-trigger-wrap {
position: relative;
display: inline-flex;
}
.priority-picker-dropdown {
border: 1px solid var(--border);
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
background: var(--surface);
z-index: 1000;
}
.priority-picker-dropdown--portal {
position: fixed;
}
.node-picker-dropdown {
border: 1px solid var(--border);
border-radius: var(--radius-md);