فهرست منبع

Rename RSS icon to avoid uBlock hiding it

Zed 7 سال پیش
والد
کامیت
7570149fb6
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      public/css/fontello.css
  2. 1 1
      src/views/general.nim

+ 1 - 1
public/css/fontello.css

@@ -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'; } /* '' */

+ 1 - 1
src/views/general.nim

@@ -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"