Skip to content

Commit

Permalink
Improve file header on mobile (#19945)
Browse files Browse the repository at this point in the history
- File headers can become quite width, so ensure the file size is not
being wrapped into itself(width + padding-right) and allow the overflow
to be scrolled(overflow-x).
  • Loading branch information
Gusted authored Jun 12, 2022
1 parent edf1420 commit 0097fbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/repo/view_file.tmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="{{TabSizeClass .Editorconfig .FileName}} non-diff-file-content">
<h4 class="file-header ui top attached header df ac sb">
<div class="file-header-left df ac">
<div class="file-header-left df ac pr-4">
{{if .ReadmeInList}}
{{svg "octicon-book" 16 "mr-3"}}
<strong>{{.FileName}}</strong>
Expand Down
4 changes: 3 additions & 1 deletion web_src/less/_repository.less
Original file line number Diff line number Diff line change
Expand Up @@ -3048,9 +3048,10 @@ td.blob-excerpt {
}

.file-header {
align-items: center;
display: flex;
justify-content: space-between;
align-items: center;
overflow-x: scroll;
padding: 8px 12px !important;
}

Expand All @@ -3062,6 +3063,7 @@ td.blob-excerpt {
.file-info-entry {
display: flex;
align-items: center;
width: max-content;
}

.file-info-entry + .file-info-entry {
Expand Down

0 comments on commit 0097fbc

Please sign in to comment.