条码增加可定制功能

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

@@ -12,6 +12,11 @@
<li>3.Auto get user timezone, global Timezone supported.</li>
<li>4.Easy admin to enable/disable the search.</li>
</ul>
<br>
<ul>
<li>5.Instructions for Activating List background color property. </li>
<li>6.Reset the barcode format.</li>
</ul>
</div>
</div>
</div>
@@ -49,7 +54,7 @@
<h4> There are 2 way to setup</h4>
<p>1.Go to Menu: Settings->odooApp->UI Enhance</p>
<p>Setup whate you need</p>
<p>Setup what you need</p>
<div class="oe_demo oe_picture oe_screenshot">
<img src="setup1.jpg">
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 124 KiB

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;
}