Source: debci
Version: 1.1.2
Severity: minor
Tags: patch
The RSS and PTS icons are not shown correctly in my browser:
https://i.imgur.com/4TPocuV.png
Apparently it's because the CSS doesn't set the correct font-family for
them. I believe that the attached patch will fix it.
--
Jakub Wilk
diff --git a/public/style.css b/public/style.css
index 73459ab..4eb9a4b 100644
--- a/public/style.css
+++ b/public/style.css
@@ -57,6 +57,7 @@
* ----------------------------------------------------------------- */
#icon-alert:before {
+ font-family: 'FontAwesome';
content: "\f071 ";
color: orange;
padding-right: 0.3em;
@@ -67,6 +68,7 @@
}
#icon-chart:before {
+ font-family: 'FontAwesome';
content: "\f1fe ";
padding-right: 0.3em;
}
@@ -76,6 +78,7 @@
}
#icon-rss:before {
+ font-family: 'FontAwesome';
content: "\f09e ";
color: orange;
}
@@ -85,6 +88,7 @@
}
#icon-tracker:before {
+ font-family: 'FontAwesome';
content: "\f05a ";
}