Have sticky headers in (over)views

Title: Sticky headers in the overviews

  1. What is your original issue/pain point you want to solve?

When you have a large list of tickets, the headers will disappear when you scroll down.

  1. Which are one or two concrete situations where this problem hurts the most?

See 1.

  1. Why is it not solvable with the Zammad standard?

There are no options to make the header “sticky”.

  1. What is your expectation/what do you want to achieve?

Header to be always visible, even if you scroll down a large list.

1 Like

I don’t think this needs to be a feature request, as it should be easily attainable by adding some custom css.

thead {
position: sticky;
top: -10px;
}

If you only want this to apply to the overviews, you may need to add some nesting to the css.

1 Like

Adding z-index will make the header bar float above the entries.

thead tr {
    position: sticky;
    top: -10px;
    z-index: 1;
}
1 Like