Browse Source

Show scrollbar when necessary (#20142)

- Firefox on Windows will unconditionally show scrollbars when you
specify `overflow: scroll`. This is bad behavior, as you don't always
need the scrollbar. Changing the scroll value to auto fixes this issue
and only shows the scrollbar when necessary.
- Resolves #20139

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
tags/v1.18.0-rc0
Gusted 1 year ago
parent
commit
5371964a4e
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web_src/less/_repository.less

+ 1
- 1
web_src/less/_repository.less View File

@@ -3051,7 +3051,7 @@ td.blob-excerpt {
align-items: center;
display: flex;
justify-content: space-between;
overflow-x: scroll;
overflow-x: auto;
padding: 8px 12px !important;
}


Loading…
Cancel
Save