opt app_product_panel

This commit is contained in:
ivan deng
2019-04-02 06:49:45 +08:00
parent 1a8d69ce52
commit a7f55ac9fe
2 changed files with 34 additions and 1 deletions

View File

@@ -22,7 +22,7 @@
{ {
'name': 'App Web Responsive Fullwidth (form view full width)', 'name': 'App Web Responsive Fullwidth (form view full width)',
'version': '12.0.1.2', 'version': '12.19.04.02',
'category': 'web', 'category': 'web',
'author': 'Sunpop.cn', 'author': 'Sunpop.cn',
'website': 'https://www.sunpop.cn', 'website': 'https://www.sunpop.cn',

View File

@@ -42,3 +42,36 @@ sheet全宽
max-width: 98% !important; max-width: 98% !important;
} }
} }
//xs: 0,
//vsm: 475px,
//sm: 576px,
//md: 768px,
//lg: 992px,
//xl: 1200px,
//xxl: 1534px,
/*
不将chatter显示在右边form全宽
*/
//将原来 768时的 flex 调整为一直不flex
.o_form_view {
@include media-breakpoint-up(md) {
display: block;
}
@include media-breakpoint-up(xl) {
display: block;
.o_form_sheet_bg > .o_form_sheet {
max-width: 98% !important;
}
}
@include media-breakpoint-up(xxl) {
display: block;
.oe_chatter {
width: auto;
max-width: 1474px;
}
}
.o_form_sheet_bg {
width: auto;
}
}