_proposal-detail.scss
sha256:8a1389ae62d0a688d5e027763249bd8faedfc39ab00857d65da6620d1ab8a689
Merge 'feat/9a-4-f7-overseer-provenance' into 'dev' — propo…
Human
2 days ago
| 1 | // ───────────────────────────────────────────────────────────────────────────── |
| 2 | // Page: Proposal detail (/*/proposals/*) |
| 3 | // File: src/scss/pages/_proposal-detail.scss |
| 4 | // |
| 5 | // STRUCTURAL LAYOUT ONLY — zero colors, zero typography here. |
| 6 | // Visual rules live in components/_proposal-detail.scss. |
| 7 | // ───────────────────────────────────────────────────────────────────────────── |
| 8 | |
| 9 | // App-shell page (issue #139) — fills whatever the body shell leaves it. |
| 10 | .prd-page { |
| 11 | flex: 1; |
| 12 | min-height: 0; |
| 13 | overflow: hidden; |
| 14 | display: flex; |
| 15 | flex-direction: column; |
| 16 | |
| 17 | @media (max-width: 900px) { overflow: visible; } |
| 18 | } |
| 19 | |
| 20 | .prd-hero { |
| 21 | flex-shrink: 0; |
| 22 | } |
| 23 | |
| 24 | .prd-hero-inner { |
| 25 | position: relative; |
| 26 | max-width: 1200px; |
| 27 | margin: 0 auto; |
| 28 | padding: var(--space-8) var(--space-6) var(--space-5); |
| 29 | } |
| 30 | |
| 31 | .prd-eyebrow { |
| 32 | display: flex; |
| 33 | align-items: center; |
| 34 | gap: var(--space-3); |
| 35 | flex-wrap: wrap; |
| 36 | margin-bottom: var(--space-4); |
| 37 | } |
| 38 | |
| 39 | .prd-wrap { |
| 40 | flex: 1; |
| 41 | min-height: 0; |
| 42 | display: flex; |
| 43 | flex-direction: column; |
| 44 | |
| 45 | @media (max-width: 900px) { overflow: visible; } |
| 46 | } |
| 47 | |
| 48 | // Independently-scrolling columns — each is `flex: 1` within the |
| 49 | // app-shell's remaining space, not a calc()'d height. See |
| 50 | // docs/issues/two-column-app-shell-refactor.md. |
| 51 | .prd-layout { |
| 52 | display: grid; |
| 53 | grid-template-columns: 1fr 240px; |
| 54 | gap: var(--space-6); |
| 55 | align-items: stretch; |
| 56 | min-height: 0; |
| 57 | flex: 1; |
| 58 | padding: var(--space-4) var(--space-6) 0; |
| 59 | max-width: 1200px; |
| 60 | margin: 0 auto; |
| 61 | width: 100%; |
| 62 | |
| 63 | @media (max-width: 900px) { |
| 64 | grid-template-columns: 1fr; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | .prd-main { |
| 69 | min-width: 0; |
| 70 | min-height: 0; |
| 71 | padding-bottom: var(--space-10); |
| 72 | overflow-y: auto; |
| 73 | scrollbar-width: thin; |
| 74 | scrollbar-color: var(--border-default) transparent; |
| 75 | |
| 76 | @media (max-width: 900px) { overflow-y: visible; } |
| 77 | } |
| 78 | |
| 79 | .proposal-sidebar { |
| 80 | display: flex; |
| 81 | flex-direction: column; |
| 82 | gap: 0; |
| 83 | min-height: 0; |
| 84 | overflow-y: auto; |
| 85 | scrollbar-width: thin; |
| 86 | scrollbar-color: var(--border-default) transparent; |
| 87 | padding-bottom: var(--space-10); |
| 88 | |
| 89 | // See isl-main's .card comment (_issues.scss) — direct children of a |
| 90 | // flex column shrink-to-fit by default instead of overflowing. |
| 91 | > * { |
| 92 | flex-shrink: 0; |
| 93 | } |
| 94 | |
| 95 | @media (max-width: 900px) { overflow-y: visible; } |
| 96 | } |
| 97 | |
| 98 | .proposal-sym-columns { |
| 99 | display: flex; |
| 100 | gap: var(--space-4); |
| 101 | flex-wrap: wrap; |
| 102 | margin-bottom: var(--space-3); |
| 103 | } |
| 104 | |
| 105 | .proposal-comment-form-actions { |
| 106 | display: flex; |
| 107 | justify-content: flex-end; |
| 108 | margin-top: var(--space-2); |
| 109 | } |
| 110 | |
| 111 | .proposal-strategies { |
| 112 | display: flex; |
| 113 | flex-direction: column; |
| 114 | gap: 6px; |
| 115 | margin-bottom: var(--space-4); |
| 116 | } |
| 117 | |
| 118 | .proposal-merge-actions { |
| 119 | display: flex; |
| 120 | align-items: center; |
| 121 | gap: var(--space-4); |
| 122 | flex-wrap: wrap; |
| 123 | } |
| 124 | |
| 125 | .proposal-timeline { |
| 126 | display: flex; |
| 127 | flex-direction: column; |
| 128 | gap: 0; |
| 129 | } |
| 130 | |
| 131 | .proposal-div-overview { |
| 132 | display: flex; |
| 133 | align-items: center; |
| 134 | gap: var(--space-4); |
| 135 | margin-bottom: var(--space-3); |
| 136 | } |
| 137 | |
| 138 | .proposal-risk-band-inner { |
| 139 | position: relative; |
| 140 | display: flex; |
| 141 | align-items: center; |
| 142 | gap: 1.5rem; |
| 143 | padding: 0.85rem 1.25rem; |
| 144 | flex-wrap: wrap; |
| 145 | } |
| 146 | |
| 147 | .proposal-risk-score { |
| 148 | display: flex; |
| 149 | align-items: center; |
| 150 | gap: 0.6rem; |
| 151 | flex-shrink: 0; |
| 152 | } |
| 153 | |
| 154 | .proposal-risk-label-wrap { |
| 155 | display: flex; |
| 156 | flex-direction: column; |
| 157 | gap: 0.1rem; |
| 158 | } |
| 159 | |
| 160 | .proposal-risk-dims { |
| 161 | display: flex; |
| 162 | align-items: center; |
| 163 | gap: 0; |
| 164 | flex-wrap: wrap; |
| 165 | flex: 1; |
| 166 | } |
| 167 | |
| 168 | .proposal-risk-dim { |
| 169 | display: flex; |
| 170 | flex-direction: column; |
| 171 | align-items: center; |
| 172 | padding: 0 0.9rem; |
| 173 | &:first-child { padding-left: 0; } |
| 174 | } |
File History
16 commits
sha256:8a1389ae62d0a688d5e027763249bd8faedfc39ab00857d65da6620d1ab8a689
Merge 'feat/9a-4-f7-overseer-provenance' into 'dev' — propo…
Human
2 days ago
sha256:bee12c5cbde2334f98421c6c209d768fa6b8004d6705c9ea798ce6c1651bc11f
Merge 'infra/database-phase3-4-cleanup' into 'dev' — propos…
Human
3 days ago
sha256:7c5915d3a65660061405c2cc04bcb297f7c97157c71629b856bd0261c4cc53ac
docs: add v0.2.0-nightly.3 changelog
Sonnet 5
66 days ago
sha256:fc04e4cae9e1774d6a21b65c45daeed0e6787eb581d13aa1b03bfe9384a34226
Merge branch 'fix/two-column-scroll-layout' into dev
Human
66 days ago
sha256:408916fc5973ba59c6e4eebaa80ebdcc801c0a63205651e25009d11548f79454
chore: bump version to 0.2.0.dev2 — nightly.2, matching muse
Sonnet 4.6
patch
69 days ago
sha256:d035733f21ccff27735fddebfbbe0ed24565a32a22db8de5885402262671ecd2
chore: bump version to 0.2.0rc15 for musehub#113 fix release
Sonnet 4.6
patch
72 days ago
sha256:0032d6cfa33bc3c8367436ad768e7dd0e339b4332153160247da8266cb5fa352
Merge branch 'task/version-tags-phase3-server' into dev
Human
74 days ago
sha256:4669620efda9ff41c55bdefd1f7bfe1c239d468428744c84ead9957e5a003a53
merge: rescue snapshot-recovery hardening (c00aa21d) into d…
Opus 4.8
minor
⚠
87 days ago
sha256:a59da49c4611b970fc4b6ae48678ce4943261c213a07ddbd73ce9201df869b4a
fix: remove false-positive proposal_comments index drop fro…
Sonnet 4.6
patch
91 days ago
sha256:0a240d6dbff234f07d98a28a4a9a68db702f3f9ff9260196f24219bdb1c0b6f3
feat: render markdown mists as HTML with heading anchor links
Sonnet 4.6
patch
92 days ago
sha256:24a7d47486ebc4ebd1832830580e177ec6f877b48dced8c000e198cdec4ce9d6
Merge 'task/bump-version-rc12' into 'dev' — proposal: Bump …
Human
93 days ago
sha256:b9ff931d147e0114a1f17060f415b89ed551c170a91ff226c70437aa5c85f9ee
Merge 'task/bump-version-rc12' into 'dev' — proposal: Bump …
Human
93 days ago
sha256:d1122d21e73471879b460037b22c0b50fded7c423444a176f248428f75dac39c
Merge 'task/fix-issue-pagination-cursor' into 'dev' — propo…
Human
93 days ago
sha256:01e18975e73d2b3cd5b6db7929c895bef9aa6e0d4391dc5b2adfc548b41318dd
Merge 'feat/adding-debug-logs-to-staging' into 'dev' — prop…
Human
93 days ago
sha256:6b1949fc2797ca4c1936a637a4cbfec828ef56cf52398a2e74ca3c4f494e728f
fix: use wire_bytes not mpack_bytes_raw in compute_object_b…
Sonnet 4.6
patch
105 days ago
sha256:b99f2455dc346966d040133f5203297e6e3ef5803a93728a2c30568d0a0f7583
rename: delta_add → delta_upsert across wire format, models…
Sonnet 4.6
patch
107 days ago