19 lines
451 B
SCSS
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');
|
|
}
|
|
}
|