[IMP] design tweaks

bzr revid: mat@openerp.com-20130429153007-tha1wmcvbtp89dz2
This commit is contained in:
Martin Trigaux 2013-04-29 17:30:07 +02:00
parent 7a242c991a
commit 0ea12d6d91
3 changed files with 4 additions and 8 deletions

View File

@ -119,7 +119,7 @@
.openerp .oe_mail_wall_aside .oe_goals_list .oe_cell.oe_goal_current {
font-size: 150%;
font-weight: bold;
min-width: 0px;
min-width: 50px;
padding: 0 5px;
}
.openerp .oe_mail_wall_aside .oe_goals_list .oe_no_progress.oe_goal_reached .oe_cell {

View File

@ -123,10 +123,6 @@ openerp.gamification = function(instance) {
});
instance.mail.Widget.include({
init: function (parent, action) {
var self = this;
this._super(parent, action);
},
start: function() {
this._super();
var self = this;

View File

@ -60,7 +60,7 @@
</div>
</div>
<div t-foreach="planline.goals" t-as="goal" t-attf-class="#{goal.id == planline.own_goal_id ? 'oe_bold' : ''}">
<div t-attf-class="oe_row oe_goal_outer_box #{goal.state == 'reached' ? 'oe_goal_reached' : ''}">
<div t-attf-class="oe_row oe_goal_outer_box #{goal.state == 'reached' ? 'oe_goal_reached' : ''} #{planline.type_display != 'progress' ? 'oe_no_progress' : ''}">
<t t-if="planline.type_display == 'progress'">
<div class="oe_goal_progress_background"></div>
<div class="oe_goal_progress" t-attf-style="#{planline.type_display == 'progress' ? 'width: '+goal.completeness+'%;' : 'width:0;'}"></div>
@ -69,9 +69,9 @@
<div class="oe_cell col0"><t t-esc="goal.rank" /></div>
<div class="oe_cell col1"><img class="oe_user_avatar" t-attf-alt="#{goal.user_name}" t-attf-data-id="#{goal.user_id}"/></div>
<div class="oe_cell col2">
<t t-if="planline.type_display == 'progress'"><br/>
<t t-if="planline.type_display == 'progress'">
<!-- progress, action on current value -->
<t t-esc="goal.user_name"/>
<t t-esc="goal.user_name"/><br/>
<t t-if="goal.id != planline.own_goal_id or (planline.computation_mode != 'manually' and !planline.type_action)">
<span t-attf-class="#{planline.type_monetary ? 'oe_goal_field_monetary' : ''}"><t t-esc="goal.current" /></span><t t-if="planline.type_unit"> <t t-esc="planline.type_unit"/></t>
</t>