##// END OF EJS Templates
ui: add arrow navigation for parent/child in changelog view....
marcink -
r2884:7ca400b0 default
parent child Browse files
Show More
@@ -55,6 +55,10 b''
55 55 /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
56 56 }
57 57
58 .icon-no-margin::before {
59 margin: 0;
60
61 }
58 62 // -- ICON CLASSES -- //
59 63
60 64 .icon-bookmark:before { content: '\e803'; } /* '' */
@@ -62,11 +62,11 b''
62 62 </div>
63 63 <div class="pull-right">
64 64 <span id="parent_link">
65 <a href="#parentCommit" title="${_('Parent Commit')}">${_('Parent')}</a>
65 <a href="#parentCommit" title="${_('Parent Commit')}"><i class="icon-left icon-no-margin"></i>${_('parent')}</a>
66 66 </span>
67 67 |
68 68 <span id="child_link">
69 <a href="#childCommit" title="${_('Child Commit')}">${_('Child')}</a>
69 <a href="#childCommit" title="${_('Child Commit')}">${_('child')}<i class="icon-right icon-no-margin"></i></a>
70 70 </span>
71 71 </div>
72 72 </div>
General Comments 0
You need to be logged in to leave comments. Login now