forked from Techsystech/web
[IMP] web_widget_one2many_product_picker: Remove height limit
parent
8c0cac194b
commit
0943fa891f
|
@ -4,7 +4,7 @@
|
||||||
{
|
{
|
||||||
'name': 'Web Widget One2Many Product Picker',
|
'name': 'Web Widget One2Many Product Picker',
|
||||||
'summary': 'Widget to select products on one2many fields',
|
'summary': 'Widget to select products on one2many fields',
|
||||||
'version': '12.0.1.2.0',
|
'version': '12.0.1.3.0',
|
||||||
'category': 'Website',
|
'category': 'Website',
|
||||||
'author': "Tecnativa, "
|
'author': "Tecnativa, "
|
||||||
"Odoo Community Association (OCA)",
|
"Odoo Community Association (OCA)",
|
||||||
|
|
|
@ -19,10 +19,16 @@
|
||||||
width: unset !important;
|
width: unset !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#product_picker_total > h2 {
|
#product_picker_total {
|
||||||
|
position: sticky;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: $secondary;
|
||||||
|
|
||||||
|
> h2 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.o_cp_buttons {
|
.o_cp_buttons {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -39,7 +45,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.oe_one2many_product_picker_view {
|
.oe_one2many_product_picker_view {
|
||||||
max-height: $one2many-product-picker-max-height;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
||||||
> .row {
|
> .row {
|
||||||
|
|
Loading…
Reference in New Issue