Bridge iroh control announcements into web stream discovery

This commit is contained in:
every.channel 2026-02-22 23:08:37 -08:00
parent 74842eb25e
commit 2778715304
No known key found for this signature in database
8 changed files with 528 additions and 26 deletions

View file

@ -93,6 +93,17 @@ body {
margin-bottom: 12px;
}
.panelHead {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.panelHead .panel-title {
margin-bottom: 0;
}
.row {
display: grid;
grid-template-columns: 1.15fr 1fr auto;
@ -178,6 +189,38 @@ body {
padding: 0 4px;
}
.liveList {
display: grid;
grid-template-columns: 1fr;
gap: 8px;
margin-top: 10px;
}
.liveItem {
display: grid;
grid-template-columns: 1fr auto;
gap: 8px;
align-items: center;
padding: 9px 10px;
border-radius: 10px;
border: 1px solid var(--line);
background: rgba(0, 0, 0, 0.18);
}
.liveTitle {
font-size: 14px;
font-weight: 600;
}
.liveMeta {
margin-top: 2px;
color: var(--faint);
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.player {
padding: 0;
}
@ -269,4 +312,3 @@ body {
flex-direction: column;
}
}