[IMP] improve css for reconcile button of list view

bzr revid: rgaopenerp-20120820094932-sk4ralcauj3qe5m8
This commit is contained in:
RGA(OpenERP) 2012-08-20 15:19:32 +05:30
parent 7f38e9b748
commit 7bd2b9092f
2 changed files with 23 additions and 2 deletions

View File

@ -72,4 +72,26 @@
.openerp .oe_extended_form_view .oe_form_field_progressbar.ui-progressbar {
width: 200px !important;
}
.openerp .oe_list_content > tbody > tr > td > button.reconcile_btn {
color: white;
background-color: #8a89ba;
background-image: -webkit-gradient(linear, left top, left bottom, from(#8a89ba), to(#807fb4));
background-image: -webkit-linear-gradient(top, #8a89ba, #807fb4);
background-image: -moz-linear-gradient(top, #8a89ba, #807fb4);
background-image: -ms-linear-gradient(top, #8a89ba, #807fb4);
background-image: -o-linear-gradient(top, #8a89ba, #807fb4);
background-image: linear-gradient(to bottom, #8a89ba, #807fb4);
padding: 0 5px 0 5px;
}
.openerp .oe_list_content > tbody > tr > td > button.reconcile_btn:hover {
color: white;
background-color: #807fb4;
background-image: -webkit-gradient(linear, left top, left bottom, from(#807fb4), to(#8a89ba));
background-image: -webkit-linear-gradient(top, #807fb4, #8a89ba);
background-image: -moz-linear-gradient(top, #807fb4, #8a89ba);
background-image: -ms-linear-gradient(top, #807fb4, #8a89ba);
background-image: -o-linear-gradient(top, #807fb4, #8a89ba);
background-image: linear-gradient(to bottom, #807fb4, #8a89ba);
}

View File

@ -223,8 +223,7 @@
<button type="button" class="oe_mail_button_follow oe_mail_button_mouseout">Reconcile</button>
<button type="button" class="oe_mail_button_unfollow oe_mail_button_mouseout">Unreconcile</button>
-->
<button name="action_payment_reconcile" string="Reconcile/Unreconcile" type="object"/>
<button class="reconcile_btn" name="action_payment_reconcile" string="Reconcile" type="object"/>
</xpath>
</field>
</record>