mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
- Backport #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
This commit is contained in:
parent
0b7b342ab0
commit
0dab13884a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue