mirror of https://github.com/zulip/zulip.git
recent_topics: Fix buggy scrolling.
The knob of the scroll bar scrolled out of view in both Firefox and Chromium and on Firefox it even cut off the last entry. Fixes #15511.
This commit is contained in:
parent
8333e11378
commit
af867cb26c
|
@ -56,6 +56,8 @@
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
overflow: hidden !important;
|
overflow: hidden !important;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: hsl(205, 47%, 42%);
|
color: hsl(205, 47%, 42%);
|
||||||
|
@ -85,7 +87,6 @@
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
padding-top: 0px !important;
|
padding-top: 0px !important;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
max-height: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.table_fix_head table {
|
.table_fix_head table {
|
||||||
|
|
Loading…
Reference in New Issue