Changeset - 873611d6ff71
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 15 years ago 2010-11-28 21:25:02
marcin@python-works.com
css update for journal
2 files changed with 9 insertions and 8 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/helpers.py
Show inline comments
 
@@ -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('[', '<b>').replace(']', '</b>'))
 
    return literal(action_str.replace('[', '<span class="journal_highlight">').replace(']', '</span>'))
 

	
 

	
 
#==============================================================================
rhodecode/public/css/style.css
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)