Prevent "empty" scrollbars on Firefox (#20294) (#20308)

Addition to: Show scrollbar when necessary #20142
Fixes the "empty" scrollbars with Firefox.
This commit is contained in:
KN4CK3R 2022-07-10 20:48:35 +02:00 committed by GitHub
parent 317c565e77
commit c556a83c35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@
.table.segment {
padding: 0;
font-size: 13px;
overflow-x: scroll;
overflow-x: auto;
&:not(.striped) {
thead {

View File

@ -3352,7 +3352,7 @@ td.blob-excerpt {
.commit-header-row {
.ui.horizontal.list {
width: 100%;
overflow-x: scroll;
overflow-x: auto;
margin-top: 2px;
.item {
@ -3401,7 +3401,7 @@ td.blob-excerpt {
}
.commit-table {
overflow-x: scroll;
overflow-x: auto;
td.sha,
th.sha {

View File

@ -170,5 +170,5 @@
}
#notification_div .tab.segment {
overflow-x: scroll;
overflow-x: auto;
}

View File

@ -1,5 +1,5 @@
#git-graph-container {
overflow-x: scroll;
overflow-x: auto;
width: 100%;
min-height: 350px;