diff --git a/layouts/header/style.css b/layouts/header/style.css index 4075fda2..977c79e5 100644 --- a/layouts/header/style.css +++ b/layouts/header/style.css @@ -2344,6 +2344,10 @@ rt.furigana { color: #00aced; content: "\f012" } +.ni-milestone:before { + color: #00aced; + content: "\f007" +} .wtf-user-name { max-width: 180px; } diff --git a/layouts/lists/style.css b/layouts/lists/style.css index d4d2f8ef..0e947b9d 100644 --- a/layouts/lists/style.css +++ b/layouts/lists/style.css @@ -652,6 +652,10 @@ a:hover, color: #5c913b; content: "\f006" } +.ni-milestone:before { + color: #00aced; + content: "\f007" +} .center-text { background-color: var(--background-color); diff --git a/layouts/search/style.css b/layouts/search/style.css index f8d52245..0fec4a04 100644 --- a/layouts/search/style.css +++ b/layouts/search/style.css @@ -644,6 +644,10 @@ a:hover, color: #5c913b; content: "\f006" } +.ni-milestone:before { + color: #00aced; + content: "\f007" +} .center-text { background-color: var(--background-color); diff --git a/scripts/helpers.js b/scripts/helpers.js index b30b10eb..1fc36f0b 100644 --- a/scripts/helpers.js +++ b/scripts/helpers.js @@ -3590,7 +3590,8 @@ const iconClasses = { 'bird_icon': 'ni-twitter', 'security_alert_icon': 'ni-alert', 'bell_icon': 'ni-bell', - 'list_icon': 'ni-list' + 'list_icon': 'ni-list', + 'milestone_icon': 'ni-milestone' }; let aRegex = /]*>([\s\S]*?)<\/a>/g; let replacerLocs;