Changed scroll to auto for some UI elements. (#20294)
Addition to: Show scrollbar when necessary #20142 Fixes the "empty" scrollbars with Firefox.
This commit is contained in:
parent
9f3906b2a3
commit
e24b0fc7b8
4 changed files with 5 additions and 5 deletions
|
@ -12,7 +12,7 @@
|
||||||
.table.segment {
|
.table.segment {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
|
|
||||||
&:not(.striped) {
|
&:not(.striped) {
|
||||||
thead {
|
thead {
|
||||||
|
|
|
@ -3352,7 +3352,7 @@ td.blob-excerpt {
|
||||||
.commit-header-row {
|
.commit-header-row {
|
||||||
.ui.horizontal.list {
|
.ui.horizontal.list {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
|
@ -3401,7 +3401,7 @@ td.blob-excerpt {
|
||||||
}
|
}
|
||||||
|
|
||||||
.commit-table {
|
.commit-table {
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
|
|
||||||
td.sha,
|
td.sha,
|
||||||
th.sha {
|
th.sha {
|
||||||
|
|
|
@ -170,5 +170,5 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#notification_div .tab.segment {
|
#notification_div .tab.segment {
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#git-graph-container {
|
#git-graph-container {
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 350px;
|
min-height: 350px;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue