changeset 6681:776097776185

changelog: fix location of tags after b99cd2bc7540 removed too much markup
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 14 Jun 2017 02:20:54 +0200
parents e0bd1681e56c
children d18dfba3c245
files kallithea/public/css/style.css kallithea/templates/changelog/changelog.html
diffstat 2 files changed, 11 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Tue Jun 06 21:10:52 2017 +0200
+++ b/kallithea/public/css/style.css	Wed Jun 14 02:20:54 2017 +0200
@@ -1527,11 +1527,11 @@
 }
 
 tr.mergerow > td.author .user,
-tr.mergerow > td.mid > .message,
-tr.mergerow > td.mid > .message > a,
+tr.mergerow > td.mid .message,
+tr.mergerow > td.mid .message > a,
 tr.out-of-range > td.author .user,
-tr.out-of-range > td.mid > .message,
-tr.out-of-range > td.mid > .message > a {
+tr.out-of-range > td.mid .message,
+tr.out-of-range > td.mid .message > a {
     color: #aaa !important;
 }
 
@@ -1587,6 +1587,11 @@
     padding: 0;
 }
 
+#graph_content .log-container {
+    position: relative;
+    margin-top: 8px;
+}
+
 #graph_content .container #singlerange,
 #graph_content .container .changeset_range {
     float: left;
--- a/kallithea/templates/changelog/changelog.html	Tue Jun 06 21:10:52 2017 +0200
+++ b/kallithea/templates/changelog/changelog.html	Wed Jun 14 02:20:54 2017 +0200
@@ -109,6 +109,7 @@
                             <i class="icon-align-left"></i>
                         </td>
                         <td class="mid">
+                            <div class="log-container">
                                 <div class="message" id="C-${cs.raw_id}">${h.urlify_text(cs.message, c.repo_name,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
                                 <div class="extra-container">
                                     %if c.comments.get(cs.raw_id):
@@ -164,6 +165,7 @@
                                         </span>
                                     %endif
                                 </div>
+                            </div>
                         </td>
                     </tr>
                 %endfor