[IMP] mis_builder: css cosmetics
parent
aac5969c3d
commit
842c57206d
|
@ -1,11 +1,13 @@
|
||||||
.mis_builder_ralign {
|
.openerp .mis_builder_ralign {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.mis_builder_drilldown {
|
.openerp .mis_builder a {
|
||||||
|
/* we don't want the link color, to respect user styles */
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.mis_builder_drilldown:hover {
|
.openerp .mis_builder a:hover {
|
||||||
|
/* underline links on hover to give a visual cue */
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
|
@ -1,17 +1,17 @@
|
||||||
<template>
|
<template>
|
||||||
<t t-name="mis_builder.MisReport">
|
<t t-name="mis_builder.MisReport">
|
||||||
<p> </p>
|
<p> </p>
|
||||||
<table t-if="widget.mis_report_data" class="oe_list_content">
|
<table t-if="widget.mis_report_data" class="oe_list_content mis_builder">
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="oe_list_header_columns">
|
<tr class="oe_list_header_columns">
|
||||||
<th class="oe_list_header_char"></th>
|
<th class="oe_list_header_char"></th>
|
||||||
<t t-foreach="widget.mis_report_data.header" t-as="h">
|
<t t-foreach="widget.mis_report_data.header" t-as="h">
|
||||||
<th t-foreach="h_value.cols" t-as="header" class="oe_list_header_char mis_builder_ralign">
|
<th t-foreach="h_value.cols" t-as="col" class="oe_list_header_char mis_builder_ralign">
|
||||||
<div>
|
<div>
|
||||||
<t t-esc="header.name"/>
|
<t t-esc="col.name"/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<t t-esc="header.date"/>
|
<t t-esc="col.date"/>
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
</t>
|
</t>
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<t t-foreach="c_value.cols" t-as="value">
|
<t t-foreach="c_value.cols" t-as="value">
|
||||||
<td class="mis_builder_ralign" t-att="{'style': c_value.default_style}">
|
<td t-att="{'style': c_value.default_style}" class="mis_builder_ralign">
|
||||||
<div t-att="{'style': value_value.style, 'title': value_value.val_c}">
|
<div t-att="{'style': value_value.style, 'title': value_value.val_c}">
|
||||||
<t t-if="value_value.drilldown">
|
<t t-if="value_value.drilldown">
|
||||||
<a href="javascript:void(0)"
|
<a href="javascript:void(0)"
|
||||||
|
|
Loading…
Reference in New Issue