Files
test/mrp_workorder/static/src/scss/empty_screen.scss
2023-04-14 17:42:23 +08:00

19 lines
451 B
SCSS

@mixin no-content-image ($img) {
@extend %o-nocontent-init-image;
width: 100%;
height: 300px;
max-width: 680px;
margin-top: -80px;
background-size: contain;
background: transparent url("/mrp_workorder/static/img/" + $img) no-repeat center;
}
.o_view_nocontent {
&_workorder:before {
@include no-content-image('workorder.png');
}
&_steps:before {
@include no-content-image('steps.png');
}
}