You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.7 KiB
77 lines
2.7 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Reports Template -->
|
|
<template id="article_template">
|
|
<t t-call="web.basic_layout">
|
|
<head>
|
|
<style>
|
|
/* Checklist */
|
|
ul.o_checklist li {
|
|
list-style: none !important;
|
|
position: relative !important;
|
|
margin-left: 20px !important;
|
|
}
|
|
ul.o_checklist li:not(.oe-nested):before {
|
|
content: '' !important;
|
|
position: absolute !important;
|
|
left: -20px !important;
|
|
display: block !important;
|
|
height: 14px !important;
|
|
width: 14px !important;
|
|
top: 1px !important;
|
|
border: 1px solid !important;
|
|
cursor: pointer !important;
|
|
}
|
|
ul.o_checklist li.o_checked:after {
|
|
content: "✓" !important;
|
|
transition: opacity .5s !important;
|
|
position: absolute !important;
|
|
left: -18px !important;
|
|
top: -1px !important;
|
|
opacity: 1 !important;
|
|
}
|
|
.container {
|
|
padding-right: 15px;
|
|
padding-left: 15px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
.o_text_columns {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-right: -15px;
|
|
margin-left: -15px;
|
|
}
|
|
.row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-right: -15px;
|
|
margin-left: -15px;
|
|
}
|
|
.col-lg-4 {
|
|
flex: 0 0 33.333333%;
|
|
max-width: 33.333333%;
|
|
padding-right: 15px;
|
|
padding-left: 15px;
|
|
}
|
|
.col-lg-3 {
|
|
flex: 0 0 25%;
|
|
max-width: 25%;
|
|
padding-right: 15px;
|
|
padding-left: 15px;
|
|
}
|
|
.col-lg-6 {
|
|
flex: 0 0 50%;
|
|
max-width: 50%;
|
|
}
|
|
.o_view_nocontent_smiling_face {
|
|
background-image: url('smiling_face.png');
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<t t-raw="response"/>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|