Views Sticky Header not working properly

Created on 24 January 2024, 5 months ago
Updated 25 January 2024, 5 months ago

Problem/Motivation

After creating the views and make the Header sticky I found one issue if we have long column sticky header is moving to right site,

Steps to reproduce

Proposed resolution

/docroot/themes/contrib/gin/dist/css/base/gin.css

table.sticky-header {
  visibility: hidden;
  z-index: 98;
  position: fixed;
  top: calc(var(--gin-toolbar-y-offset) + var(--gin-sticky-offset)) !important;
  background: transparent;
}

after adding width auto its working as expected.

table.sticky-header {
  width: auto;
  visibility: hidden;
  z-index: 98;
  position: fixed;
  top: calc(var(--gin-toolbar-y-offset) + var(--gin-sticky-offset)) !important;
  background: transparent;
}

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Closed: won't fix

Version

3.0

Component

Code

Created by

🇮🇳India Shiv_Sharma

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.69.0 2024