Skip to content

Commit 878a9af

Browse files
committed
Fix FreshRSS livestats styling to match other apps
Update the livestats.blade.php template to use the standard pattern with separate title and strong elements, consistent with Miniflux, Sonarr, Plex, and other apps. Fixes linuxserver/Heimdall#1525
1 parent d3ab2ff commit 878a9af

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

FreshRSS/livestats.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<ul class="livestats">
22
@if ($unread > 0)
33
<li>
4-
<span class="title" style="color:orange;">{!! $unread !!} Unread</span>
4+
<span class="title">Unread</span>
5+
<strong>{!! $unread !!}</strong>
56
</li>
67
@endif
78
</ul>

0 commit comments

Comments
 (0)