Fixing overflow wrapping on commenter avatars on sharebar on web.

This commit is contained in:
Samuel Clay 2013-07-30 13:39:19 -07:00
parent d2ae291723
commit 01b31137df
3 changed files with 9 additions and 1 deletions

View file

@ -1,11 +1,13 @@
/srv/newsblur/logs/*.log {
daily
size 50M
rotate 10
copytruncate
delaycompress
compress
notifempty
missingok
su sclay
}
/var/log/nginx/*.log {
@ -29,4 +31,4 @@
postrotate
reload rsyslog >/dev/null 2>&1 || true
endscript
}
}

2
fabfile.py vendored
View file

@ -496,6 +496,8 @@ def switch_forked_mongoengine():
def setup_logrotate():
put('config/logrotate.conf', '/etc/logrotate.d/newsblur', use_sudo=True)
put('config/logrotate.mongo.conf', '/etc/logrotate.d/mongodb', use_sudo=True)
sudo('chown root.root /etc/logrotate.d/{newsblur,mongodb}')
sudo('chmod 644 /etc/logrotate.d/{newsblur,mongodb}')
def setup_ulimit():
# Increase File Descriptor limits.

View file

@ -2819,6 +2819,10 @@ background: transparent;
.NB-story-share-profiles.NB-story-share-profiles-shares .NB-story-share-profile {
float: right;
}
.NB-story-share-profiles .NB-story-share-profiles-comments-friends,
.NB-story-share-profiles .NB-story-share-profiles-comments-public {
float: left;
}
.NB-story-share-profiles .NB-story-share-profiles-shares-public,
.NB-story-share-profiles .NB-story-share-profiles-shares-friends {
display: inline;