mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing empty folders.
This commit is contained in:
parent
d015bcfbfa
commit
fa6f5bb6e5
2 changed files with 7 additions and 2 deletions
|
@ -130,7 +130,7 @@ class UserStory(models.Model):
|
|||
|
||||
class UserSubscriptionFolders(models.Model):
|
||||
user = models.ForeignKey(User)
|
||||
folders = models.TextField(default="{}")
|
||||
folders = models.TextField(default="[]")
|
||||
|
||||
def __unicode__(self):
|
||||
return "[%s]: %s" % (self.user, len(self.folders),)
|
||||
|
|
|
@ -258,7 +258,7 @@ background: transparent;
|
|||
}
|
||||
#feed_list .feed_title {
|
||||
display: block;
|
||||
padding: 4px 42px 2px 23px;
|
||||
padding: 4px 40px 2px 23px;
|
||||
text-decoration: none;
|
||||
color: #272727;
|
||||
line-height: 1.3em;
|
||||
|
@ -266,6 +266,11 @@ background: transparent;
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
#feed_list .feed_counts {
|
||||
position: absolute;
|
||||
right: 2px;
|
||||
top: 0;
|
||||
}
|
||||
#feed_list .NB-feedbar-mark-feed-read {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue