diff --git a/src/main/java/com/commafeed/frontend/model/Entry.java b/src/main/java/com/commafeed/frontend/model/Entry.java index 814f0a96..75808597 100644 --- a/src/main/java/com/commafeed/frontend/model/Entry.java +++ b/src/main/java/com/commafeed/frontend/model/Entry.java @@ -37,6 +37,7 @@ public class Entry implements Serializable { entry.setUrl(feedEntry.getUrl()); entry.setRead(status.isRead()); + entry.setStarred(status.isStarred()); entry.setFeedName(status.getSubscription().getTitle()); entry.setFeedId(String.valueOf(status.getSubscription().getId())); diff --git a/src/main/webapp/css/app.css b/src/main/webapp/css/app.css index f085564b..5de147e8 100644 --- a/src/main/webapp/css/app.css +++ b/src/main/webapp/css/app.css @@ -212,6 +212,19 @@ font-size: 12px; } +#feed-accordion .star { + text-decoration: none; + padding: 0px 5px; +} + +#feed-accordion .icon-star-yellow { + color: gold; +} + +#feed-accordion .icon-star-empty { + color: #555; +} + /* admin */ .admin .users-table { height: 400px; diff --git a/src/main/webapp/directives/category.html b/src/main/webapp/directives/category.html index 18765bcd..3e1fe6a9 100644 --- a/src/main/webapp/directives/category.html +++ b/src/main/webapp/directives/category.html @@ -1,5 +1,5 @@
  • -
    +
  • - - + + {{formatCategoryName(node)}} -