mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing print bug and easing off those heavy shadows in the feed list.
This commit is contained in:
parent
1234170fd3
commit
b9bd05b32d
2 changed files with 4 additions and 3 deletions
|
@ -78,7 +78,7 @@ def signup(request):
|
|||
if form.is_valid():
|
||||
new_user = form.save()
|
||||
login_user(request, new_user)
|
||||
print " ---> NEW SIGNUP: %s" % form.get_user()
|
||||
print " ---> NEW SIGNUP: %s" % new_user
|
||||
return HttpResponseRedirect(reverse('index'))
|
||||
|
||||
return index(request)
|
||||
|
|
|
@ -391,11 +391,12 @@ background: transparent;
|
|||
line-height: 1.3em;
|
||||
height: 1.2em;
|
||||
overflow: hidden;
|
||||
text-shadow: 0 1px 0 #FFF;
|
||||
text-shadow: 0 1px 0 #EBF3FA;
|
||||
}
|
||||
|
||||
#feed_list .feed.selected .feed_title {
|
||||
text-shadow: 0 1px 2px #eee;
|
||||
text-shadow: 0 1px 0 #FFC97D;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#feed_list .feed_counts {
|
||||
|
|
Loading…
Add table
Reference in a new issue