Changeset - b89511f1aa24
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-06-27 22:16:27
dominikruf@gmail.com
template: simplify journal styling

This requires less css code.
2 files changed with 3 insertions and 9 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -1158,12 +1158,6 @@ a.metatag[data-tag="license"]:hover {
 
    padding-left: 22px;
 
}
 

	
 
#journal .journal_repo {
 
    float: left;
 
    margin-left: 6px;
 
    padding-top: 3px;
 
}
 

	
 
#journal .date {
 
    clear: both;
 
    color: #777777;
 
@@ -1171,7 +1165,7 @@ a.metatag[data-tag="license"]:hover {
 
    padding-left: 22px;
 
}
 

	
 
#journal .journal_repo .journal_repo_name {
 
#journal .journal_repo_name {
 
    font-weight: bold;
 
    font-size: 1.1em;
 
}
kallithea/templates/journal/journal_data.html
Show inline comments
 
@@ -17,8 +17,8 @@
 
                      <div class="journal_icon"> ${h.action_parser(entry)[2]()}</div>
 
                    </div>
 
                    <div class="pull-left">
 
                      <div class="journal_action">${h.action_parser(entry)[0]()}</div>
 
                      <div class="journal_repo">
 
                      <div class="journal_action">
 
                          ${h.action_parser(entry)[0]()}
 
                          <span class="journal_repo_name">
 
                          %if entry.repository is not None:
 
                            ${h.link_to(entry.repository.repo_name,
0 comments (0 inline, 0 general)