mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
60 lines
1.0 KiB
SCSS
60 lines
1.0 KiB
SCSS
//xs: 0,
|
||
//vsm: 475px,
|
||
//sm: 576px,
|
||
//md: 768px,
|
||
//lg: 992px,
|
||
//xl: 1200px,
|
||
//xxl: 1534px,
|
||
|
||
//16 是在 xxl 才 flex row,故不需要再特殊处理了
|
||
|
||
/*
|
||
sheet全宽
|
||
*/
|
||
@media (min-width: 576px) {
|
||
.o_form_view .o_form_view_container .o_form_sheet_bg .o_form_sheet {
|
||
max-width: 98%;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.o_form_view .o_form_view_container .o_form_sheet_bg .o_form_sheet {
|
||
max-width: 98%;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) {
|
||
.o_form_view .o_form_view_container .o_form_sheet_bg .o_form_sheet {
|
||
max-width: 98%;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.o_form_view .o_form_view_container .o_form_sheet_bg .o_form_sheet {
|
||
max-width: 98%;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1400px) {
|
||
.o_form_view .o_form_view_container .o_form_sheet_bg .o_form_sheet {
|
||
max-width: 98%;
|
||
}
|
||
}
|
||
|
||
//xs: 0,
|
||
//vsm: 475px,
|
||
//sm: 576px,
|
||
//md: 768px,
|
||
//lg: 992px,
|
||
//xl: 1200px,
|
||
//xxl: 1534px,
|
||
|
||
//debug model 时处理
|
||
.modal-lg {
|
||
.o_debug_manager {
|
||
.dropdown-menu-right {
|
||
right: auto;
|
||
left: 0;
|
||
}
|
||
}
|
||
} |