[IMP] css changes to improve look and usability of pivot table view (addon web_graph)

bzr revid: ged@openerp.com-20140128151113-g8yxl3lphpht4d89
This commit is contained in:
Gery Debongnie 2014-01-28 16:11:13 +01:00
parent ad76309fbe
commit f27c1df4d2
2 changed files with 35 additions and 11 deletions

View File

@ -6,6 +6,15 @@
border-bottom: 1px solid #ccc;
padding: 6px 8px;
text-align: right;
color: black;
}
.graph_main_content td:first-child {
background-color: rgb(240, 238, 238);
}
.graph_main_content table {
margin-top: 10px;
}
.graph_measure_selection .oe_selected {
@ -26,30 +35,44 @@
.graph_main_content th {
font-size: 13px;
font-weight: normal;
color: #039;
padding: 10px 8px;
vertical-align: top;
}
.graph_main_content thead {
border: 1px solid #6678b1;
border-bottom: 2px solid #6678b1;
color: black;
}
.graph_main_content tbody td{
border: 1px solid #ccc;
border: 1px solid #b8b8b8;
}
.graph_main_content tbody {
border-top: 1px solid black;
}
.graph_main_content thead {
background-color: rgb(240, 238, 238);
border: 1px solid #b8b8b8;
}
.graph_main_content thead th {
border-left: 1px solid #b8b8b8;
}
div.graph_widget {
padding:10px;
}
.oe_dashboard div.graph_widget {
padding:0;
}
td.graph_border {
color: #039;
text-align: left;
border-right: 1px solid #6678b1;
white-space: nowrap;
}
.graph_main_content tbody tr:hover td
.graph_main_content table:not(.heatmap) tr:hover td:not(:first-child)
{
color: #009;
background-color: rgb(245, 245, 245);
}
span.field-selection {

View File

@ -362,6 +362,7 @@ openerp.web_graph.Graph = openerp.web.Widget.extend({
this.$('.graph_main_content svg').remove();
this.$('.graph_main_content div').remove();
this.table.empty();
this.table.toggleClass('heatmap', this.heatmap_mode !== 'none')
this.width = this.$el.width();
this.height = Math.min(Math.max(document.documentElement.clientHeight - 116 - 60, 250), Math.round(0.8*this.$el.width()));