Tweak css of short commit id in log and history views
| | |
| | | white-space: nowrap;
|
| | | }
|
| | |
|
| | | span.sha1, span.sha1 a, span.sha1 a span, .commit_message {
|
| | | span.sha1, span.sha1 a, span.sha1 a span, .commit_message, span.shortsha1 {
|
| | | font-family: consolas, monospace;
|
| | | font-size: 13px;
|
| | | }
|
| | |
|
| | | span.shortsha1 {
|
| | | font-size: 12px;
|
| | | }
|
| | |
|
| | | td.mode {
|
| | | text-align: right;
|
| | | font-family: monospace;
|
| | |
| | | <td class="icon"><img wicket:id="commitIcon" /></td>
|
| | | <td class="hidden-phone author"><span wicket:id="commitAuthor">[commit author]</span></td>
|
| | | <td class="message"><table class="nestedTable"><tr><td><span style="vertical-align:middle;" wicket:id="commitShortMessage">[commit short message]</span></td><td><div style="text-align:right;" wicket:id="commitRefs">[commit refs]</div></td></tr></table></td>
|
| | | <td class="hidden-phone hidden-tablet"><span class="link" wicket:id="hashLabel">[hash label]</span><span wicket:id="hashLink">[hash link]</span></td>
|
| | | <td class="hidden-phone hidden-tablet rightAlign"><span class="link" wicket:id="hashLabel">[hash label]</span><span wicket:id="hashLink">[hash link]</span></td>
|
| | | <td class="hidden-phone rightAlign">
|
| | | <span wicket:id="historyLinks">[history links]</span>
|
| | | </td>
|
| | |
| | | LinkPanel commitHash = new LinkPanel("hashLink", null, entry.getName().substring(0, hashLen),
|
| | | TreePage.class, WicketUtils.newObjectParameter(
|
| | | repositoryName, entry.getName()));
|
| | | WicketUtils.setCssClass(commitHash, "sha1");
|
| | | WicketUtils.setCssClass(commitHash, "shortsha1");
|
| | | WicketUtils.setHtmlTooltip(commitHash, entry.getName());
|
| | | item.add(commitHash);
|
| | |
|
| | |
| | | <td class="hidden-phone author"><span wicket:id="commitAuthor">[commit author]</span></td>
|
| | | <td class="hidden-phone icon"><img wicket:id="commitIcon" /></td>
|
| | | <td class="message"><table class="nestedTable"><tr><td><span style="vertical-align:middle;" wicket:id="commitShortMessage">[commit short message]</span></td><td><div style="text-align:right;" wicket:id="commitRefs">[commit refs]</div></td></tr></table></td>
|
| | | <td class="hidden-phone hidden-tablet"><span wicket:id="hashLink">[hash link]</span></td>
|
| | | <td class="hidden-phone hidden-tablet rightAlign"><span wicket:id="hashLink">[hash link]</span></td>
|
| | | <td class="hidden-phone hidden-tablet rightAlign">
|
| | | <span class="link">
|
| | | <a wicket:id="diff"><wicket:message key="gb.diff"></wicket:message></a> | <a wicket:id="tree"><wicket:message key="gb.tree"></wicket:message></a>
|
| | |
| | | LinkPanel commitHash = new LinkPanel("hashLink", null, entry.getName().substring(0, hashLen),
|
| | | CommitPage.class, WicketUtils.newObjectParameter(
|
| | | repositoryName, entry.getName()));
|
| | | WicketUtils.setCssClass(commitHash, "sha1");
|
| | | WicketUtils.setCssClass(commitHash, "shortsha1");
|
| | | WicketUtils.setHtmlTooltip(commitHash, entry.getName());
|
| | | item.add(commitHash);
|
| | |
|