[FIX] priority widget: css fixes

bzr revid: tde@openerp.com-20140508152516-1rv69jatyswj8e4r
This commit is contained in:
Thibault Delavallée 2014-05-08 17:25:16 +02:00
parent 750cc768c1
commit 15e28717b4
3 changed files with 4 additions and 4 deletions

View File

@ -426,7 +426,7 @@
text-shadow: 0 0 2px black; text-shadow: 0 0 2px black;
vertical-align: top; vertical-align: top;
position: relative; position: relative;
top: -5px; top: -8px;
} }
.openerp .oe_webclient .oe_star_on:hover, .openerp .oe_webclient .oe_star_off:hover { .openerp .oe_webclient .oe_star_on:hover, .openerp .oe_webclient .oe_star_off:hover {
text-decoration: none; text-decoration: none;

View File

@ -404,7 +404,7 @@ $sheet-padding: 16px
text-shadow: 0 0 2px black text-shadow: 0 0 2px black
vertical-align: top vertical-align: top
position: relative position: relative
top: -5px top: -8px
.oe_star_on:hover, .oe_star_off:hover .oe_star_on:hover, .oe_star_off:hover
text-decoration: none text-decoration: none
.oe_star_on .oe_star_on

View File

@ -1052,9 +1052,9 @@
</div> </div>
</t> </t>
<t t-name="Priority"> <t t-name="Priority">
<ul style="list-style: none; padding-left: 2px;"> <ul style="list-style: none; padding-left: 2px; display: inline-block;">
<t t-foreach="widget.priorities" t-as="rec" > <t t-foreach="widget.priorities" t-as="rec" >
<li t-att-data-value="rec.click_value" class="pull-left oe_legend"> <li t-att-data-value="rec.click_value" class="oe_legend" style="display: inline-block;">
<a href="#" t-att-title="rec.name"> <a href="#" t-att-title="rec.name">
<span t-att-class="widget.get('value') gte rec.value and 'oe_e oe_star_on' or 'oe_e oe_star_off'">7</span> <span t-att-class="widget.get('value') gte rec.value and 'oe_e oe_star_on' or 'oe_e oe_star_off'">7</span>
</a> </a>