Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 127 → Rev 128

/trunk/modules/recherche_simple/squelettes/form_nom.tpl.html
39,16 → 39,15
 
 
<?php if (isset($message)) : ?>
<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 class="<?= ($message['attention']) ? 'attention' : 'information'; ?>">
<?= ($message['attention']) ? $i18n[$message['attention']] : ''; ?>
<?php if (isset($message['nom_approche'])) : ?>
<?=$i18n['orthographe'];?>
<?php foreach ($message['nom_approche'] as $key => $nom) :?>
<a href="<?=$nom['url_nom_approche']?>"><?=$nom['nom'];?></a>
<?= ($message['nom_approche'][$key+1]['nom'] != '') ? ' ou ' : ''; ?>
<?php endforeach; ?>
<?php endif; ?>
</p>
<?php endif; ?>
 
/trunk/presentations/styles/eflore.css
236,18 → 236,32
font-weight:normal;}
.attention {
display:inline-block;
background:#ffffcc url("../images/attention.png") no-repeat 2% 50%;
border:1px solid red;
padding:10px 5px 5px 50px;
background-color:#ffffcc;
background-image:url("../images/attention.png");
background-repeat:no-repeat;
background-position:2% 50%;
padding:10px 5px 5px 40px;
margin:0 0 3px 16px;
background-size:24px 24px;
-webkit-background-size:24px 24px;
-o-background-size:24px 24px;
-moz-background-size:24px 24px;
max-width:600px;
min-height:30px;}
min-height:20px;}
.information {
display:inline-block;
background:#e7ebfd url("../images/information.png") no-repeat 2% 50%;
border:1px solid #5D81BA;
padding:10px 5px 5px 50px;
background-color:#e7ebfd;
background-image:url("../images/information.png");
background-repeat:no-repeat;
background-position:2% 50%;
padding:10px 5px 5px 40px;
margin:0 0 3px 16px;
background-size:24px 24px;
-webkit-background-size:24px 24px;
-o-background-size:24px 24px;
-moz-background-size:24px 24px;
max-width:600px;
min-height:30px;}
min-height:20px;}
hr.nettoyage{
clear:both;
width:0;}