Tucker McKnight <tmcknight@instructure.com> | Sun Jan 11 2026
Fix wrapping for RSS buttons The button should be part of the paragraph so that it doesn't go on its own line at narrow screen widths.
12 13
<p class="d-inline-block">Showing commits from <span class="font-monospace">${data.patchPage.branchName}</span></p>
<a class="btn btn-outline-primary badge shadow-none ms-2" href="${nav.repoCurrentBranchRssFeed()}"><div class="d-flex"><img src="${nav.rootPath()}frontend/img/rss-icon.svg" style="width: 11px; margin-right: 5px;" />RSS</div></a>12 13
<p class="d-inline-block">Showing commits from <span class="font-monospace me-2">${data.patchPage.branchName}</span><a class="btn btn-outline-primary badge shadow-none" href="${nav.repoCurrentBranchRssFeed()}"><img src="${nav.rootPath()}frontend/img/rss-icon.svg" style="width: 11px; margin-right: 5px;" />RSS</a></p>82 83 84 85 86 87 88 89
<a class="btn btn-outline-info badge shadow-none me-2" href="${nav.repoCurrentBranchRssFeed()}">
<div class="d-flex">
<img src="${nav.rootPath()}frontend/img/rss-icon.svg" style="width: 11px; margin-right: 5px;" />RSS
</div>
</a>
<p class="font-monospace text-white mb-2 d-inline-block">
Latest commit: ${latestCommit.date.toDateString()} <a class="fw-bold link-info" href="${nav.repoBranchCommitsBase()}${latestCommit.hash}">${latestCommit.hash.substr(0, 6)}</a> ${latestCommitMessage}
</p>82 83 84 85 86 87 88 89
<p class="font-monospace text-white mb-2 d-inline-block"><a class="btn btn-outline-info badge shadow-none me-2" href="${nav.repoCurrentBranchRssFeed()}">
<img src="${nav.rootPath()}frontend/img/rss-icon.svg" style="width: 11px; margin-right: 5px;" />RSS
</a>Latest commit: ${latestCommit.date.toDateString()} <a class="fw-bold link-info" href="${nav.repoBranchCommitsBase()}${latestCommit.hash}">${latestCommit.hash.substr(0, 6)}</a> ${latestCommitMessage}</p>