Merge pull request #38283 from iamejaaz/sticky-header

fix: make header sticky even when scrolling is disabled
This commit is contained in:
Ejaaz Khan 2026-03-27 00:57:45 +05:30 committed by GitHub
commit d0b033ba53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,6 @@
.frappe-list { .frappe-list {
.result-container { .result-container {
.result { .result {
display: table;
min-width: 100%; min-width: 100%;
width: auto; width: auto;
.list-row-container { .list-row-container {
@ -596,6 +595,8 @@ input.list-header-checkbox {
overflow-x: auto; overflow-x: auto;
.result { .result {
overflow-y: hidden; overflow-y: hidden;
display: table;
width: 100%;
} }
} }
} }