Merge branch 'develop' of https://e.coding.net/jikimo-hn/jikimo_sfs/jikimo_sf into feature/刀具管理界面布局优化
This commit is contained in:
28
mrp_workorder/static/src/scss/table_custom.scss
Normal file
28
mrp_workorder/static/src/scss/table_custom.scss
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
.o_form_view.o_xxl_form_view {
|
||||||
|
flex-flow: column !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o_form_view_container {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html .o_web_client > .o_action_manager > .o_action {
|
||||||
|
height: unset !important;
|
||||||
|
overflow: scroll !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o_FormRenderer_chatterContainer.o-aside {
|
||||||
|
width: 100% !important;
|
||||||
|
max-width: 1320px !important;
|
||||||
|
background-color: #fff !important;
|
||||||
|
padding-left: 32px !important;
|
||||||
|
padding-right: 32px !important;
|
||||||
|
box-sizing: border-box !important;
|
||||||
|
border: 1px solid #dee2e6;
|
||||||
|
//margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o_form_view {
|
||||||
|
background-color: unset !important;
|
||||||
|
min-height: unset !important;
|
||||||
|
}
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
h1,h2,h3,h4,h5,h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
color: $o-wo-tablet-text;
|
color: $o-wo-tablet-text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,14 +162,17 @@
|
|||||||
> div.o_workorder_lot {
|
> div.o_workorder_lot {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
> .o_lot_number {
|
> .o_lot_number {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
|
||||||
&:not(.o_with_button) button.o_external_button {
|
&:not(.o_with_button) button.o_external_button {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
@@ -209,7 +212,7 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@include o-position-absolute(0,0,0,0);
|
@include o-position-absolute(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -225,27 +228,4 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.o_form_view.o_xxl_form_view {
|
|
||||||
flex-flow:column !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.o_form_view_container {
|
|
||||||
width:100% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
html .o_web_client > .o_action_manager > .o_action {
|
|
||||||
overflow:scroll !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.o_FormRenderer_chatterContainer.o-aside {
|
|
||||||
width:100% !important;
|
|
||||||
max-width: 1320px !important;
|
|
||||||
background-color:#ccc !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.o_form_view {
|
|
||||||
background-color:unset !important;
|
|
||||||
border: 1px solid #C9CCD2 !important;
|
|
||||||
border-left-color:unset !important;
|
|
||||||
box-shadow: 0 5px 20px -15px rgb(0 0 0 / 40%) !important;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,15 +1,22 @@
|
|||||||
.test_model {
|
.test_model {
|
||||||
display: flex !important;
|
display: flex !important;
|
||||||
}
|
}
|
||||||
.test_model>.o_form_label {
|
|
||||||
|
.test_model > .o_form_label {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
margin-right: 0px !important;
|
margin-right: 0px !important;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.o_form_label.o_field_invalid::after {
|
|
||||||
|
div:has(.o_required_modifier)>label::before {
|
||||||
content: '*' !important;
|
content: '*' !important;
|
||||||
color: red !important;
|
color: red !important;
|
||||||
padding: 0 4px !important;
|
padding: 0 4px !important;
|
||||||
vertical-align: top !important;
|
vertical-align: top !important;
|
||||||
font-size: 1.5rem !important;
|
font-size: 1.5rem !important;
|
||||||
}
|
display: inline !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o_required_modifier {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user