Changeset - d44d5bb8b454
[Not reviewed]
default
0 2 0
domruf - 9 years ago 2016-09-21 18:59:43
dominikruf@gmail.com
helpers: use b instead of journal_highlight
2 files changed with 2 insertions and 8 deletions:
0 comments (0 inline, 0 general)
kallithea/lib/helpers.py
Show inline comments
 
@@ -747,14 +747,14 @@ def action_parser(user_log, feed=False, 
 

	
 
    action_str = action_map.get(action, action)
 
    if feed:
 
        action = action_str[0].replace('[', '').replace(']', '')
 
    else:
 
        action = action_str[0] \
 
            .replace('[', '<span class="journal_highlight">') \
 
            .replace(']', '</span>')
 
            .replace('[', '<b>') \
 
            .replace(']', '</b>')
 

	
 
    action_params_func = lambda: ""
 

	
 
    if callable(action_str[1]):
 
        action_params_func = action_str[1]
 

	
kallithea/public/css/style.css
Show inline comments
 
@@ -1763,18 +1763,12 @@ a.metatag[tag="license"]:hover {
 

	
 
#journal .compare_view {
 
    padding: 5px 0px 5px 0px;
 
    width: 95px;
 
}
 

	
 
.journal_highlight {
 
    font-weight: bold;
 
    padding: 0 2px;
 
    vertical-align: bottom;
 
}
 

	
 
.trending_language_tbl, .trending_language_tbl td {
 
    border: 0 !important;
 
    margin: 0 !important;
 
    padding: 0 !important;
 
}
 

	
0 comments (0 inline, 0 general)