correction des mode avancé dans economique.

This commit is contained in:
Damien LASSERRE 2012-04-18 14:36:07 +00:00
parent 95a57d9446
commit 0db3c8907c
5 changed files with 18 additions and 10 deletions

View File

@ -44,8 +44,10 @@
</fieldset>
</div>
<hr style="margin-top:5px;" />
<p style="margin-top:6px;">
<a class="mode" id="a_economique" style="cursor:pointer;border-left:1px solid black;padding:5px;background-color: silver;">Avancé</a>
<p>
<a class="mode" id="a_economique" style="cursor:pointer;margin-left:50%">
<img src="/themes/default/images/fleche-bas.gif" />
</a>
</p>
</div>
<div style="text-align:right;margin-top:20px;">

View File

@ -34,8 +34,10 @@
</fieldset>
</div>
<hr style="margin-top:5px;" />
<p style="margin-top:6px;">
<a class="mode" id="a_entreprise" style="cursor:pointer;border-left:1px solid black;padding:5px;background-color: silver;">Avancé</a>
<p>
<a class="mode" id="a_entreprise" style="cursor:pointer;margin-left:50%">
<img src="/themes/default/images/fleche-bas.gif" />
</a>
</p>
</div>
<div id="link">

View File

@ -58,8 +58,10 @@
</fieldset>
</div>
<hr style="margin-top:5px;" />
<p style="margin-top:6px;">
<a class="mode" id="a_financiere" style="cursor:pointer;border-left:1px solid black;padding:5px;background-color: silver;">Avancé</a>
<p>
<a class="mode" id="a_financiere" style="cursor:pointer;margin-left:50%">
<img src="/themes/default/images/fleche-bas.gif" />
</a>
</p>
</div>
<div style="text-align:right;margin-top:20px;">

View File

@ -29,8 +29,10 @@
</fieldset>
</div>
<hr style="margin-top:5px;" />
<p style="margin-top:6px;">
<a class="mode" id="a_juridique" style="cursor:pointer;border-left:1px solid black;padding:5px;background-color: silver;">Avancé</a>
<p>
<a class="mode" id="a_juridique" style="cursor:pointer;margin-left:50%">
<img src="/themes/default/images/fleche-bas.gif" />
</a>
</p>
</div>
<div style="text-align:right;margin-top:20px;">

View File

@ -98,11 +98,11 @@ $(document).ready(function(){
var id = $(this).attr('id');
if($('#'+id).css('display') == 'none') {
$('#'+id).show('blind');
$(this).html('Cacher');
$(this).html('<img src="/themes/default/images/fleche-haut.gif" />');
}
else {
$('#'+id).hide('blind');
$(this).html('Avancé');
$(this).html('<img src="/themes/default/images/fleche-bas.gif" />');
}
});
});