diff --git a/list_view_sticky_header/__manifest__.py b/list_view_sticky_header/__manifest__.py index 3dabc2b12..56e811351 100644 --- a/list_view_sticky_header/__manifest__.py +++ b/list_view_sticky_header/__manifest__.py @@ -22,7 +22,7 @@ { 'name': 'List View Sticky Header', - 'version': '15.0.1.0.0', + 'version': '15.0.1.0.1', 'summary': 'Helps to Stick The Header of List View', 'description': 'Helps to Stick The Header of List View', 'category': 'Tools', diff --git a/list_view_sticky_header/static/description/assets/screenshots/sticky15.png b/list_view_sticky_header/static/description/assets/screenshots/sticky15.png new file mode 100644 index 000000000..c3fe20dc0 Binary files /dev/null and b/list_view_sticky_header/static/description/assets/screenshots/sticky15.png differ diff --git a/list_view_sticky_header/static/description/index.html b/list_view_sticky_header/static/description/index.html index b27babd84..08b73b9c0 100644 --- a/list_view_sticky_header/static/description/index.html +++ b/list_view_sticky_header/static/description/index.html @@ -145,7 +145,7 @@

- Sticky Header in List Views

+ Sticky Header in List Views and Form views
@@ -165,6 +165,13 @@ +
+

+ Sticky Header in Form Views

+ +
diff --git a/list_view_sticky_header/static/src/scss/sticky_header.scss b/list_view_sticky_header/static/src/scss/sticky_header.scss index 6d4c0721b..3f8e3d0c8 100644 --- a/list_view_sticky_header/static/src/scss/sticky_header.scss +++ b/list_view_sticky_header/static/src/scss/sticky_header.scss @@ -3,6 +3,17 @@ top: 0; z-index:999; } +.table-responsive{ + overflow: visible; +} .o_list_view .table-responsive .table thead{ z-index: 1; +} + +element.style { +} +.o_list_renderer .o_list_table thead { + position: sticky; + top: 0; + z-index:999; } \ No newline at end of file