Rename RSS icon to avoid uBlock hiding it

This commit is contained in:
Zed 2019-09-23 01:03:12 +02:00
parent ac9fa2ce1d
commit 7570149fb6
2 changed files with 2 additions and 2 deletions

View file

@ -50,5 +50,5 @@
.icon-search:before { content: '\e80e'; } /* '' */
.icon-pin:before { content: '\e80f'; } /* '' */
.icon-cog:before { content: '\e812'; } /* '' */
.icon-rss:before { content: '\f143'; } /* '' */
.icon-rss-feed:before { content: '\f143'; } /* '' */
.icon-thumbs-up:before { content: '\f164'; } /* '' */

View file

@ -20,7 +20,7 @@ proc renderNavbar*(title, rss: string; req: Request): VNode =
tdiv(class="nav-item right"):
icon "search", title="Search", href="/search"
if rss.len > 0:
icon "rss", title="RSS Feed", href=rss
icon "rss-feed", title="RSS Feed", href=rss
icon "info-circled", title="About", href="/about"
iconReferer "cog", "/settings", path, title="Preferences"