From 6a951ea8d316ee375066c8c0a301f89fa091e204 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Tue, 27 Jan 2015 04:34:14 +0300 Subject: [PATCH] Fix bug #17. "@" on the subscribers and subscriptions page. --- .../css/modules/at_before_username.css | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/chrome_point_plus/css/modules/at_before_username.css b/chrome_point_plus/css/modules/at_before_username.css index 27d2682..fe33176 100644 --- a/chrome_point_plus/css/modules/at_before_username.css +++ b/chrome_point_plus/css/modules/at_before_username.css @@ -1,8 +1,12 @@ -/* @ before username */ -#main #content a.user:before { +/* Posts */ +#content .post-content a.user:before, +/* Subscribers */ +#content .users span.user:before, +/* Subscriptions */ +#content .users .info a.user:before { content: "@"; } -/* Fix for recommendations in the feed */ -#main #content .rec .user:before { - margin-right: -4px; -} \ No newline at end of file +/* Fix for recommendations */ +#content .post-content .rec .user:before { + margin-right: -3px; +}