提交 b4f2cb8e authored 作者: 贺阳's avatar 贺阳

列表固定的模块

上级 bda9513f
List View Sticky Header V16
============================
This module will helps to stick the list view header.
Credits
=======
Cybrosys Techno Solutions
Author
------
* Cybrosys Techno Solutions <odoo@cybrosys.com>
Muhammad Shahil @ Cybro
V15: Midilaj V K @ Cybro
V16: Viswanth @ Cybro
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
{
'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',
'category': 'Tools',
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'website': "https://www.cybrosys.com",
'license': 'LGPL-3',
'images': ['static/description/banner.png'],
'depends': ['base'],
'assets': {
'web.assets_backend': [
"list_view_sticky_header/static/src/scss/sticky_header.scss"
],
},
'installable': True,
'auto_install': False,
'application': False,
}
## Module <list_view_sticky_header>
#### 14.09.2022
#### Version 16.0.1.0.0
#### ADD Initial Commit for list_view_sticky_header
.o_list_view .o_list_table thead {
position: sticky;
top: 0;
z-index:999;
}
.o_account_reports_page .table-responsive{
overflow-x: auto;
overflow-y: visible;
}
.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;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论