Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion templates/repo/pulls/tab_menu.tmpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<div class="ui top attached pull tabular stackable menu">
<div class="ui pull tabs container">
<div class="ui top attached pull tabular menu">
<a class="item {{if .PageIsPullConversation}}active{{end}}" href="{{.Issue.Link}}">
{{svg "octicon-comment-discussion"}}
{{$.locale.Tr "repo.pulls.tab_conversation"}}
Expand All @@ -21,3 +22,5 @@
</span>
</span>
</div>
<div class="ui tabs divider"></div>
</div>
9 changes: 8 additions & 1 deletion web_src/css/repo.css
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,15 @@
right: 1px;
}

.repository.view.issue .pull.tabs.container {
width: 100%;
max-width: 100%;
}

.repository.view.issue .pull.tabular.menu {
margin-bottom: 1rem;
margin-bottom: 0;
overflow-x: auto;
overflow-y: hidden;
}

.repository.view.issue .pull.tabular.menu .svg {
Expand Down