##// END OF EJS Templates
old style: fix width of new changelog "expand" column
Mads Kiilerich -
r4148:3c713e81 rhodecode-2.2.5-gpl
parent child Browse files
Show More
@@ -2578,6 +2578,12 BIN_FILENODE = 6
2578 font-size: 10px;
2578 font-size: 10px;
2579 }
2579 }
2580
2580
2581 #graph_content_pr .compare_view_commits .expand_commit,
2582 #graph_content .container .expand_commit {
2583 width: 24px;
2584 cursor: pointer;
2585 }
2586
2581 #graph_content #changesets .container .right {
2587 #graph_content #changesets .container .right {
2582 width: 120px;
2588 width: 120px;
2583 padding-right: 0px;
2589 padding-right: 0px;
@@ -36,7 +36,7
36 <td class="expand_commit" commit_id="${cs.raw_id}" title="${_('Expand commit message')}">
36 <td class="expand_commit" commit_id="${cs.raw_id}" title="${_('Expand commit message')}">
37 <i class="icon-resize-vertical" style="color:#DDD"></i>
37 <i class="icon-resize-vertical" style="color:#DDD"></i>
38 </td>
38 </td>
39 <td><div id="C-${cs.raw_id}" class="message" style="white-space:normal; height: 10px;width: 250px">${h.urlify_commit(cs.message, c.repo_name)}</div></td>
39 <td><div id="C-${cs.raw_id}" class="message" style="white-space:normal; height:1.1em; padding:0">${h.urlify_commit(cs.message, c.repo_name)}</div></td>
40 </tr>
40 </tr>
41 %endfor
41 %endfor
42 </table>
42 </table>
@@ -42,7 +42,7 def _commit_change(repo, filename, conte
42
42
43
43
44 def _commit_div(sha, msg):
44 def _commit_div(sha, msg):
45 return """<div id="C-%s" class="message" style="white-space:normal; height: 10px;width: 250px">%s</div>""" % (sha, msg)
45 return """<div id="C-%s" class="message" style="white-space:normal; height:1.1em; padding:0">%s</div>""" % (sha, msg)
46
46
47
47
48 class TestCompareController(TestController):
48 class TestCompareController(TestController):
General Comments 0
You need to be logged in to leave comments. Login now