[dw-free] Text size of entry/tag/etc. counts on profile
[commit: http://hg.dwscoalition.org/dw-free/rev/37e56d4e8bc2]
http://bugs.dwscoalition.org/show_bug.cgi?id=565
Make entry/tag/etc counts on profile consistent with other journal stats.
Patch by
denise.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=565
Make entry/tag/etc counts on profile consistent with other journal stats.
Patch by
![[staff profile]](https://www.dreamwidth.org/img/silk/identity/user_staff.png)
Files modified:
- htdocs/stc/profile.css
- htdocs/userinfo.bml
-------------------------------------------------------------------------------- diff -r d5863766290c -r 37e56d4e8bc2 htdocs/stc/profile.css --- a/htdocs/stc/profile.css Sun Mar 29 15:03:26 2009 +0000 +++ b/htdocs/stc/profile.css Sun Mar 29 15:16:38 2009 +0000 @@ -129,11 +129,6 @@ .details_stats .statusvis_msg { font-weight: bold; } - -.details_links { - padding: 12px 0 10px 0; -} - .user_details p, .user_details_bottom { margin: 0; diff -r d5863766290c -r 37e56d4e8bc2 htdocs/userinfo.bml --- a/htdocs/userinfo.bml Sun Mar 29 15:03:26 2009 +0000 +++ b/htdocs/userinfo.bml Sun Mar 29 15:16:38 2009 +0000 @@ -379,10 +379,9 @@ body<= # comment and support stats my $csstats = join( ', ', ( $profile->comment_stats, $profile->support_stats ) ); $ret .= qq{<p>$csstats</p>}; - $ret .= q{ </div> }; # other statistics - $ret .= q{ <div class='details_links'><p> }; + $ret .= q{ <p> }; $ret .= join( ', ', ( $profile->entry_stats, $profile->tag_stats, $profile->memory_stats, $profile->userpic_stats ) ); $ret .= q{ </p></div></div></div></div> }; --------------------------------------------------------------------------------