mirror of https://github.com/zulip/zulip.git
table-sticky-headers: Add z-index CSS property to table headers.
Previously, there were cases where the table contents started to overlap with the table heading when scrolled down the table. This was mostly visible in `Custom Emoji` organization UI, where the images and action table column contents started to overlap with the table headers. Rectified the bug by adding a CSS `z-index` property to `table-sticky-headers` class which takes care of all such overlapping issues. Fixes #18906.
This commit is contained in:
parent
afd67b4166
commit
f41692d032
|
@ -255,6 +255,7 @@ td .button {
|
||||||
.table-sticky-headers th {
|
.table-sticky-headers th {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-striped {
|
.table-striped {
|
||||||
|
|
Loading…
Reference in New Issue