Browse Source

Mar 28 : [UPDT] Udated 'list_view_sticky_header'

dependabot/npm_and_yarn/odoo_website_helpdesk/static/src/cdn/minimist-1.2.8
AjmalCybro 2 years ago
parent
commit
404fef89c6
  1. 2
      list_view_sticky_header/__manifest__.py
  2. BIN
      list_view_sticky_header/static/description/assets/screenshots/2.png
  3. BIN
      list_view_sticky_header/static/description/assets/screenshots/3.png
  4. 14
      list_view_sticky_header/static/description/index.html
  5. 8
      list_view_sticky_header/static/src/scss/sticky_header.scss

2
list_view_sticky_header/__manifest__.py

@ -21,7 +21,7 @@
#############################################################################
{
'name': 'List View Sticky Header',
'name': 'Sticky Header in List and Form view',
'version': '16.0.1.0.1',
'summary': 'Helps to Stick The Header of List View',
'description': 'Helps to Stick The Header of List View',

BIN
list_view_sticky_header/static/description/assets/screenshots/2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

BIN
list_view_sticky_header/static/description/assets/screenshots/3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

14
list_view_sticky_header/static/description/index.html

@ -21,7 +21,7 @@
<!-- END OF TITLE BAR -->
<!-- APP HERO -->
<h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;">List View Sticky Header</h1>
<h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;">Sticky Header in List and Form view</h1>
<p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;">Helps to Stick The Header of List View</p>
<!-- END OF APP HERO -->
<img src="assets/screenshots/hero.png"
@ -98,7 +98,7 @@
</div>
<div class="row" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;">
<div class="col-sm-12 py-4">
This module will ensure sticky headers for list view and enhance the user experience so that the user will never lose the headers while scrolling the records.
This module will ensure sticky headers for list and form view,it enhance the user experience so that the user will never lose the headers while scrolling the records.
</div>
</div>
<!-- END OF OVERVIEW SECTION -->
@ -120,7 +120,7 @@
</div>
<div class="d-flex align-items-center" style="margin-top: 30px; margin-bottom: 30px">
<img src="assets/misc/check-box.png" class="mr-2" />
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Sticky Header in List Views</span>
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Sticky Header in List and Form views</span>
</div>
<div class="d-flex align-items-center" style="margin-top: 30px; margin-bottom: 30px">
<img src="assets/misc/check-box.png" class="mr-2" />
@ -146,7 +146,15 @@
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Sticky Header in List Views</h3>
<img src="assets/screenshots/1.png" class="img-thumbnail">
</div>
</div>
<div class="col-sm-12">
<div style="display: block; margin: 30px auto;">
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Sticky Header in Form Views</h3>
<img src="assets/screenshots/2.png" class="img-thumbnail">
<img src="assets/screenshots/3.png" class="img-thumbnail">
</div>
</div>
</div>
<!-- END OF SCREENSHOTS SECTION -->

8
list_view_sticky_header/static/src/scss/sticky_header.scss

@ -9,3 +9,11 @@
.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;
}

Loading…
Cancel
Save