rename: Note→Post/Line (dashboard); Recognition→Note (drama); new-post/my-posts to billboard
- dashboard: Note→Post, Item→Line across models, forms, views, API, urls & tests
- new-post (9×3) & my-posts (3×3) applets migrate from dashboard→billboard context; billboard view passes form & recent_posts
- drama: Recognition→Note, related_name notes; billboard URL /recognition/→/my-notes/, set-palette at /note/<slug>/set-palette
- recognition.js→note.js (module Note, data.note key); recognition-page.js→note-page.js; .recog-*→.note-*
- _recognition.scss→_note.scss; BillNotes page header; applet slug billboard-recognition→billboard-notes (My Notes)
- NoteSpec.js replaces RecognitionSpec.js; test_recognition.py→test_applet_my_notes.py
- 4 migrations applied: dashboard 0004, applets 0011+0012, drama 0005; 683 ITs green
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 22:32:34 -04:00
|
|
|
// ── My Posts applet ────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
#id_applet_my_posts {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.my-posts-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
&::-webkit-scrollbar { display: none; }
|
|
|
|
|
mask-origin: padding-box;
|
|
|
|
|
mask-clip: padding-box;
|
|
|
|
|
mask-image: linear-gradient(
|
|
|
|
|
to bottom,
|
|
|
|
|
transparent 0%,
|
|
|
|
|
black 5%,
|
|
|
|
|
black 85%,
|
|
|
|
|
transparent 100%
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 16:46:46 -04:00
|
|
|
// ── Shared aperture fill for both billboard pages ──────────────────────────
|
|
|
|
|
|
|
|
|
|
%billboard-page-base {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html:has(body.page-billboard),
|
|
|
|
|
html:has(body.page-billscroll) {
|
2026-03-23 01:06:14 -04:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 16:46:46 -04:00
|
|
|
body.page-billboard,
|
|
|
|
|
body.page-billscroll {
|
2026-03-23 01:06:14 -04:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin-bottom: -1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 16:46:46 -04:00
|
|
|
// ── Billboard page (three-applet grid) ─────────────────────────────────────
|
|
|
|
|
|
2026-03-23 01:06:14 -04:00
|
|
|
.billboard-page {
|
2026-03-24 16:46:46 -04:00
|
|
|
@extend %billboard-page-base;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── Billscroll page (single full-aperture applet) ──────────────────────────
|
|
|
|
|
|
|
|
|
|
.billscroll-page {
|
|
|
|
|
@extend %billboard-page-base;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-23 01:06:14 -04:00
|
|
|
padding: 0.75rem;
|
2026-03-24 16:46:46 -04:00
|
|
|
|
|
|
|
|
// The single scroll applet stretches to fill the remaining aperture
|
2026-05-03 23:22:01 -04:00
|
|
|
.applet-scroll {
|
2026-03-24 17:31:51 -04:00
|
|
|
@extend %applet-box;
|
2026-03-24 16:46:46 -04:00
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
#id_drama_scroll {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow-y: auto;
|
2026-03-24 19:02:29 -04:00
|
|
|
|
|
|
|
|
.scroll-buffer {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
padding: 2rem 0 1rem;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
|
|
|
|
.scroll-buffer-text {
|
|
|
|
|
letter-spacing: 0.33em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scroll-buffer-dots {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 0.7em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-24 16:46:46 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 17:19:09 -04:00
|
|
|
// ── Billboard applet placement ─────────────────────────────────────────────
|
rename: Note→Post/Line (dashboard); Recognition→Note (drama); new-post/my-posts to billboard
- dashboard: Note→Post, Item→Line across models, forms, views, API, urls & tests
- new-post (9×3) & my-posts (3×3) applets migrate from dashboard→billboard context; billboard view passes form & recent_posts
- drama: Recognition→Note, related_name notes; billboard URL /recognition/→/my-notes/, set-palette at /note/<slug>/set-palette
- recognition.js→note.js (module Note, data.note key); recognition-page.js→note-page.js; .recog-*→.note-*
- _recognition.scss→_note.scss; BillNotes page header; applet slug billboard-recognition→billboard-notes (My Notes)
- NoteSpec.js replaces RecognitionSpec.js; test_recognition.py→test_applet_my_notes.py
- 4 migrations applied: dashboard 0004, applets 0011+0012, drama 0005; 683 ITs green
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 22:32:34 -04:00
|
|
|
// Left column (4-wide): My Scrolls → Contacts → Notes stacked.
|
2026-05-03 23:22:01 -04:00
|
|
|
// Right column (8-wide): Most Recent Scroll spans full height.
|
2026-03-24 17:19:09 -04:00
|
|
|
// Portrait override (container query) restores stacked full-width layout.
|
|
|
|
|
|
|
|
|
|
#id_billboard_applets_container {
|
2026-05-03 23:22:01 -04:00
|
|
|
#id_applet_my_scrolls { grid-column: 1 / span 4; grid-row: 1 / span 3; }
|
|
|
|
|
#id_applet_my_contacts { grid-column: 1 / span 4; grid-row: 4 / span 3; }
|
|
|
|
|
#id_applet_notes { grid-column: 1 / span 4; grid-row: 7 / span 4; }
|
|
|
|
|
#id_applet_most_recent_scroll { grid-column: 5 / span 8; grid-row: 1 / span 10; }
|
2026-03-24 17:19:09 -04:00
|
|
|
|
|
|
|
|
@container (max-width: 550px) {
|
2026-05-03 23:22:01 -04:00
|
|
|
#id_applet_my_scrolls,
|
|
|
|
|
#id_applet_my_contacts,
|
|
|
|
|
#id_applet_notes,
|
|
|
|
|
#id_applet_most_recent_scroll {
|
2026-03-24 17:19:09 -04:00
|
|
|
grid-column: 1 / span 12;
|
|
|
|
|
grid-row: span var(--applet-rows, 3);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
rename: Note→Post/Line (dashboard); Recognition→Note (drama); new-post/my-posts to billboard
- dashboard: Note→Post, Item→Line across models, forms, views, API, urls & tests
- new-post (9×3) & my-posts (3×3) applets migrate from dashboard→billboard context; billboard view passes form & recent_posts
- drama: Recognition→Note, related_name notes; billboard URL /recognition/→/my-notes/, set-palette at /note/<slug>/set-palette
- recognition.js→note.js (module Note, data.note key); recognition-page.js→note-page.js; .recog-*→.note-*
- _recognition.scss→_note.scss; BillNotes page header; applet slug billboard-recognition→billboard-notes (My Notes)
- NoteSpec.js replaces RecognitionSpec.js; test_recognition.py→test_applet_my_notes.py
- 4 migrations applied: dashboard 0004, applets 0011+0012, drama 0005; 683 ITs green
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 22:32:34 -04:00
|
|
|
// ── Notes applet — vertical title ─────────────────────────────────────────
|
2026-04-22 02:21:35 -04:00
|
|
|
|
2026-05-03 23:22:01 -04:00
|
|
|
#id_applet_notes {
|
2026-04-22 02:21:35 -04:00
|
|
|
h2 {
|
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
margin: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-03 23:22:01 -04:00
|
|
|
// ── Most Recent Scroll applet — scrollable drama feed ─────────────────────
|
2026-03-24 17:19:09 -04:00
|
|
|
|
2026-05-03 23:22:01 -04:00
|
|
|
#id_applet_most_recent_scroll {
|
2026-03-24 17:19:09 -04:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.most-recent-room-link {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_drama_scroll {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.most-recent-load-more {
|
|
|
|
|
display: block;
|
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-02 14:51:08 -04:00
|
|
|
// ── Drama event entries: 90 / 10 column split ─────────────────────────────
|
|
|
|
|
|
|
|
|
|
.drama-event {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
|
|
|
|
.drama-event-body {
|
|
|
|
|
flex: 0 0 80%;
|
2026-04-13 00:34:05 -04:00
|
|
|
|
|
|
|
|
&.struck {
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
2026-04-02 14:51:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.drama-event-time {
|
|
|
|
|
flex: 0 0 20%;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 16:46:46 -04:00
|
|
|
// ── My Scrolls list ────────────────────────────────────────────────────────
|
|
|
|
|
|
2026-05-03 23:22:01 -04:00
|
|
|
#id_applet_my_scrolls {
|
2026-03-24 16:46:46 -04:00
|
|
|
.scroll-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
padding: 0.25rem 0;
|
|
|
|
|
border-bottom: 1px solid rgba(var(--priUser), 0.15);
|
|
|
|
|
|
|
|
|
|
&:last-child { border-bottom: none; }
|
|
|
|
|
|
|
|
|
|
a { text-decoration: none; }
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-23 01:06:14 -04:00
|
|
|
}
|