diff --git a/rhodecode/lib/helpers.py b/rhodecode/lib/helpers.py
--- a/rhodecode/lib/helpers.py
+++ b/rhodecode/lib/helpers.py
@@ -458,14 +458,14 @@ def action_parser(user_log):
'admin_created_repo':_('Admin [created] repository'),
'admin_forked_repo':_('Admin [forked] repository'),
'admin_updated_repo':_('Admin [updated] repository'),
- 'push':_('Pushed') + get_cs_links(),
- 'pull':_('Pulled'),
+ 'push':_('[Pushed]') + get_cs_links(),
+ 'pull':_('[Pulled]'),
'started_following_repo':_('User [started following] repository'),
'stopped_following_repo':_('User [stopped following] repository'),
}
action_str = map.get(action, action)
- return literal(action_str.replace('[', '').replace(']', ''))
+ return literal(action_str.replace('[', '').replace(']', ''))
#==============================================================================
diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css
--- a/rhodecode/public/css/style.css
+++ b/rhodecode/public/css/style.css
@@ -1831,13 +1831,14 @@ margin-top: 2px;
}
.currently_following{
-
- padding-left: 10px;
- padding-bottom:5px;
-
+padding-left: 10px;
+padding-bottom:5px;
}
-
+.journal_highlight{
+font-weight: bold;
+text-decoration: underline;
+}
.add_icon {
background:url("../images/icons/add.png") no-repeat scroll 3px;