diff --git a/assets/javascripts/discourse/widgets/discourse-post-event-invitee.js.es6 b/assets/javascripts/discourse/widgets/discourse-post-event-invitee.js.es6 index 9cfa64bb..6be594df 100644 --- a/assets/javascripts/discourse/widgets/discourse-post-event-invitee.js.es6 +++ b/assets/javascripts/discourse/widgets/discourse-post-event-invitee.js.es6 @@ -33,7 +33,7 @@ export default createWidget("discourse-post-event-invitee", { statusIcon = "fa-check"; break; case "interested": - statusIcon = "fa-question"; + statusIcon = "fa-star"; break; case "not_going": statusIcon = "fa-times"; diff --git a/assets/stylesheets/common/discourse-post-event-core-ext.scss b/assets/stylesheets/common/discourse-post-event-core-ext.scss index 1e437fd5..6345ab6f 100644 --- a/assets/stylesheets/common/discourse-post-event-core-ext.scss +++ b/assets/stylesheets/common/discourse-post-event-core-ext.scss @@ -13,6 +13,7 @@ .event-date { font-size: $font-down-3; background: $primary-low; + color: $primary-high; padding: 0.25em; border-radius: 3px; vertical-align: middle; diff --git a/assets/stylesheets/common/discourse-post-event.scss b/assets/stylesheets/common/discourse-post-event.scss index 13f3895c..2981e801 100644 --- a/assets/stylesheets/common/discourse-post-event.scss +++ b/assets/stylesheets/common/discourse-post-event.scss @@ -236,6 +236,10 @@ color: $danger; } + &.avatar-flair-status-interested { + color: $tertiary; + } + .d-icon { font-size: $font-down-3; } diff --git a/plugin.rb b/plugin.rb index 3d5677a7..fad35b1d 100644 --- a/plugin.rb +++ b/plugin.rb @@ -25,7 +25,6 @@ register_asset "stylesheets/mobile/discourse-calendar.scss", :mobile register_asset "stylesheets/mobile/discourse-post-event.scss", :mobile register_asset "stylesheets/desktop/discourse-calendar.scss", :desktop register_svg_icon "fas fa-calendar-day" -register_svg_icon "fas fa-question" register_svg_icon "fas fa-clock" register_svg_icon "fas fa-clock" register_svg_icon "fas fa-star"