Use overflow-y: auto instead of overflow-y: scroll

This commit is contained in:
MaxLap
2020-01-31 12:08:06 -06:00
committed by Mo Bitar
parent 0bf4abdf55
commit e7cb54f942
5 changed files with 6 additions and 6 deletions

View File

@@ -93,7 +93,7 @@
.windows-web &, .windows-desktop & {
overflow-y: hidden;
&:hover {
overflow-y: scroll;
overflow-y: auto;
overflow-y: overlay; // overlay is not supported on ff, so keep previous statement up
}
}

View File

@@ -32,7 +32,7 @@
// Unfortunately must affect every platform since no way to hide just for Windows.
overflow-y: hidden;
&:hover {
overflow-y: scroll;
overflow-y: auto;
overflow-y: overlay; // overlay is not supported on ff, so keep previous statement up
}
}

File diff suppressed because one or more lines are too long

View File

@@ -2018,7 +2018,7 @@ a.disabled {
height: inherit;
overflow-y: hidden; }
.tags .infinite-scroll:hover {
overflow-y: scroll;
overflow-y: auto;
overflow-y: overlay; }
.tags .no-tags-placeholder {
padding: 0px 12px;
@@ -2148,7 +2148,7 @@ a.disabled {
.windows-web #notes-column .infinite-scroll, .windows-desktop #notes-column .infinite-scroll, .windows-web .notes .infinite-scroll, .windows-desktop .notes .infinite-scroll {
overflow-y: hidden; }
.windows-web #notes-column .infinite-scroll:hover, .windows-desktop #notes-column .infinite-scroll:hover, .windows-web .notes .infinite-scroll:hover, .windows-desktop .notes .infinite-scroll:hover {
overflow-y: scroll;
overflow-y: auto;
overflow-y: overlay; }
#notes-column .note, .notes .note {
width: 100%;

File diff suppressed because one or more lines are too long