diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index b2b8e0976..c4c80b147 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -80,6 +80,7 @@ - **Popup** - checking `instanceof SVGGraphicsElement` caused error in IE11 #3043 - **Progress** - Progress `onSuccess`, `onError`, and `onWarning` callbacks now occur **after** the animation completes for the state change. - **Rating** - rating does not fire `onRate` when rating is initialized #3712 +- **Rating** - Fixed `ui rating` to not used outlined star in basic variation, instead using a lighter filled in star for increased visibility #3730 - **Segment/Message** - `top attached message` has no border when attached to `segment` #3619 - **Search** - Fixed issue where `href` was not pulling correctly on search click when the `result` was an `a` itself. #3409 - **Search** - Added `refresh` behavior for search to refresh selector cache. Cache will automatically refresh after API results received diff --git a/src/themes/default/modules/rating.overrides b/src/themes/default/modules/rating.overrides index 345574e03..37ce3b66f 100644 --- a/src/themes/default/modules/rating.overrides +++ b/src/themes/default/modules/rating.overrides @@ -22,7 +22,7 @@ /* Empty Star */ .ui.rating .icon:before { - content: '\f006'; + content: '\f005'; } /* Active Star */ .ui.rating .active.icon:before { @@ -65,4 +65,4 @@ /* Active */ .ui.heart.rating .active.icon:before { content: '\f004'; -} \ No newline at end of file +}