Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 123 → Rev 124

/trunk/presentations/styles/eflore.css
227,25 → 227,27
}
/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* Général */
.centrer{
text-align:center;
}
.discretion{
color:#A9A9A9;
font-size:10px;
font-weight:normal;}
.attention {
display:block;
display:inline-block;
background:#ffffcc url("../images/attention.png") no-repeat 2% 50%;
text-align:center;
border:1px solid red;
min-height:30px;
max-width:800px;
padding:10px 5px 5px 50px;}
padding:10px 5px 5px 50px;
max-width:600px;
min-height:30px;}
.information {
display:inline-block;
background:#e7ebfd url("../images/information.png") no-repeat 2% 50%;
text-align:center;
border:1px solid #5D81BA;
max-width:800px;
min-height:30px;
padding:10px 5px 5px 50px;}
padding:10px 5px 5px 50px;
max-width:600px;
min-height:30px;}
hr.nettoyage{
clear:both;
width:0;}
/trunk/modules/recherche_simple/squelettes/form_nom.tpl.html
39,14 → 39,16
 
 
<?php if (isset($message)) : ?>
<p class= "<?= ($message['attention']) ? 'attention' : 'information'; ?>">
<?= ($message['attention']) ? $i18n[$message['attention']] : ''; ?>
<?php if (isset($message['nom_approche'])) : ?>
<?=$i18n['orthographe'];?>
<?php foreach ($message['nom_approche'] as $nom) :?>
<a href="<?=$nom['url_nom_approche']?>"><?=$nom['nom'];?></a>
<?php endforeach; ?>
<?php endif; ?>
<p class="centrer">
<span class="<?= ($message['attention']) ? 'attention' : 'information'; ?>">
<?= ($message['attention']) ? $i18n[$message['attention']] : ''; ?>
<?php if (isset($message['nom_approche'])) : ?>
<?=$i18n['orthographe'];?>
<?php foreach ($message['nom_approche'] as $nom) :?>
<a href="<?=$nom['url_nom_approche']?>"><?=$nom['nom'];?></a>
<?php endforeach; ?>
<?php endif; ?>
</span>
</p>
<?php endif; ?>