条码增加可定制功能

fix odoo customize
This commit is contained in:
ivan deng
2018-01-15 21:38:18 +08:00
parent e883015416
commit 033d517c03
15 changed files with 236 additions and 18 deletions

View File

@@ -8,4 +8,36 @@
left: 6px;
top: 3px;
content: "";
}
/*
强制表格滚动,企业版中生效
*/
.force_scroll .table-responsive {
white-space: nowrap !important;
overflow: hidden !important;
overflow-x: auto !important;
}
.force_scroll ::-webkit-scrollbar {
height: 16px!important;
}
/* 滚动条的滑轨背景颜色 */
.force_scroll ::-webkit-scrollbar-track {
background-color: lightgrey!important;;
-webkit-border-radius: 2em !important;;
-moz-border-radius: 2em !important;;
border-radius: 2em !important;;
}
/* 滑块颜色 */
.force_scroll ::-webkit-scrollbar-thumb {
background-color: #666666 !important;;
-webkit-border-radius: 2em !important;;
-moz-border-radius: 2em !important;;
border-radius: 2em !important;;
}
/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
.force_scroll ::-webkit-scrollbar-corner {
background-color: black;
}