Skip to content

Commit 9b273a2

Browse files
Bigger Recent Cells title and add column labels (Segment, Type, When)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ea89668 commit 9b273a2

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

src/components/UserProfilePanel.vue

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,11 @@ const emit = defineEmits({hide: null, 'open-settings': null});
415415
<span class="nge-cell-list-title">Recent Cells</span>
416416
<span v-if="currentDataset" class="nge-cell-list-dataset" :title="'Filtered to ' + currentDataset">{{ currentDataset }}</span>
417417
</div>
418+
<div class="nge-cell-list-columns">
419+
<span class="nge-cell-col-label nge-cell-col-label--id">Segment</span>
420+
<span class="nge-cell-col-label nge-cell-col-label--type">Type</span>
421+
<span class="nge-cell-col-label nge-cell-col-label--time">When</span>
422+
</div>
418423
<div class="nge-cell-list-scroll">
419424
<div
420425
v-for="cell in filteredCellHistory.slice(0, 50)"
@@ -1348,14 +1353,32 @@ const emit = defineEmits({hide: null, 'open-settings': null});
13481353
}
13491354
13501355
.nge-cell-list-title {
1351-
font-size: 0.63em;
1356+
font-size: 0.82em;
13521357
font-weight: 700;
13531358
text-transform: uppercase;
13541359
letter-spacing: 0.13em;
13551360
color: rgba(74, 158, 255, 0.65);
13561361
font-style: normal;
13571362
}
13581363
1364+
.nge-cell-list-columns {
1365+
display: flex;
1366+
align-items: center;
1367+
padding: 0 2px 4px 42px; /* align with cell rows (past fav + pip) */
1368+
border-bottom: 1px solid rgba(74, 158, 255, 0.08);
1369+
margin-bottom: 2px;
1370+
}
1371+
.nge-cell-col-label {
1372+
font-size: 0.58em;
1373+
font-weight: 600;
1374+
text-transform: uppercase;
1375+
letter-spacing: 0.08em;
1376+
color: rgba(255, 255, 255, 0.25);
1377+
}
1378+
.nge-cell-col-label--id { flex: 1; }
1379+
.nge-cell-col-label--type { width: 90px; text-align: left; }
1380+
.nge-cell-col-label--time { width: 52px; text-align: right; padding-right: 18px; }
1381+
13591382
.nge-cell-list-dataset {
13601383
font-size: 0.62em !important;
13611384
font-style: normal !important;

0 commit comments

Comments
 (0)