ssb: Choose an unread notification that is a bit mire color-agnostic.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 23m39s

This commit is contained in:
Cory McWilliams 2024-12-29 15:15:28 -05:00
parent f66c6ed0c3
commit 2f0b4a0187
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
{ {
"type": "tildefriends-app", "type": "tildefriends-app",
"emoji": "🦀", "emoji": "🦀",
"previous": "&mPr1PL07/XaDJsYzy4NN1SddVMroTrV1WQncr8dcq8g=.sha256" "previous": "&2aHEnXfmAZgCJxML+RF6j63QIYnI4TR5QvqzCHSitNQ=.sha256"
} }

View File

@ -93,7 +93,7 @@ class TfTabNewsElement extends LitElement {
(this.channels_unread[channel] === undefined || (this.channels_unread[channel] === undefined ||
this.channels_unread[channel] <= this.channels_latest[channel]) this.channels_unread[channel] <= this.channels_latest[channel])
) { ) {
return '🔵'; return '✉️ ';
} }
} }
@ -158,19 +158,19 @@ class TfTabNewsElement extends LitElement {
href="#" href="#"
class="w3-bar-item w3-button" class="w3-bar-item w3-button"
style=${this.hash == '#' ? 'font-weight: bold' : undefined} style=${this.hash == '#' ? 'font-weight: bold' : undefined}
>general ${this.unread_status('')}</a >${this.unread_status('')}general</a
> >
<a <a
href="#@" href="#@"
class="w3-bar-item w3-button" class="w3-bar-item w3-button"
style=${this.hash == '#@' ? 'font-weight: bold' : undefined} style=${this.hash == '#@' ? 'font-weight: bold' : undefined}
>@mentions ${this.unread_status('@')}</a >${this.unread_status('@')}@mentions</a
> >
<a <a
href="#🔐" href="#🔐"
class="w3-bar-item w3-button" class="w3-bar-item w3-button"
style=${this.hash == '#🔐' ? 'font-weight: bold' : undefined} style=${this.hash == '#🔐' ? 'font-weight: bold' : undefined}
>🔐private ${this.unread_status('🔐')}</a >${this.unread_status('🔐')}🔐private</a
> >
${Object.keys(this.drafts) ${Object.keys(this.drafts)
.sort() .sort()
@ -190,7 +190,7 @@ class TfTabNewsElement extends LitElement {
href=${'#' + encodeURIComponent('#' + x)} href=${'#' + encodeURIComponent('#' + x)}
class="w3-bar-item w3-button" class="w3-bar-item w3-button"
style=${this.hash == '##' + x ? 'font-weight: bold' : undefined} style=${this.hash == '##' + x ? 'font-weight: bold' : undefined}
>#${x} ${this.unread_status(x)}</a >${this.unread_status(x)}#${x}</a
> >
` `
)} )}