Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

No changes between revisions

Ignore whitespace Rev 247 → Rev 246

/trunk/squelettes/css/collection/collection.css
105,9 → 105,6
width: 360px;
margin-top: 2px;
}
.champ-masque.long {
width: 720px;
}
.champ-masque input {
width: 200px;
}
/trunk/squelettes/css/collection/collection.min.css
New file
0,0 → 1,0
@charset "UTF-8";#texte,h1{position:relative}#contenu{clear:none}h2,h3{margin:0;padding:1em 0 0}dl{margin:0;padding:0;width:auto}dt{background-color:#EEE;width:18em;float:left;text-align:right;margin:0;padding:.3em;border-top:1px solid #999;font-weight:400}.coel-consultation li{list-style-image:none !important}.label-grand dt{width:28em}.label-court dt{width:12em}dt:after{content:" : "}.coel-consultation .nettoyeur,.coel-consultation dt,.coel-consultation h2,.coel-consultation h3{clear:both}dd{background-color:#FFF;margin:0;padding:.3em;border-top:1px solid #999}.nettoyeur{visibility:hidden}table{border:1px solid #1C3C78;border-collapse:collapse;width:100%!important;width:95%;margin:auto}tfoot,thead{background-color:#EEE;border:1px solid #1C3C78}tbody{background-color:#FFF;border:1px solid #1C3C78}th{font-family:monospace;border:1px dotted #1C3C78;padding:5px;background-color:#EEE}td{font-family:sans-serif;font-size:80%;border:1px solid #1C3C78;padding:5px;text-align:left}caption{font-family:sans-serif}label#col-rech{display:none}.fragmenteur .frag_page_courrante,.fragmenteur .frag_resultats,.fragmenteur a,.fragmenteur select{color:#fff;padding:5px;margin:0 2px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.fragmenteur a,.fragmenteur select{background-color:#5D5C5C;border:1px solid #000}.fragmenteur .frag_page_courrante,.fragmenteur .frag_resultats,.fragmenteur a:hover{font-weight:700;background-color:#AEDC43;border:1px solid #86A736}.frag_separateur{display:none}#col-rech-masque{width:725px}h2.titre-moteur-recherche{margin-bottom:10px}.champ-masque{display:inline-block;width:360px;margin-top:2px}.champ-masque input{width:200px}.champ-masque select{max-width:190px}.champ-masque label{display:inline-block;text-align:right}.champ-masque label.label-gauche{width:130px;vertical-align:middle}.champ-masque label.label-droite{width:120px}.champ-masque input.input-droite{width:210px}.discretion{color:#A9A9A9;font-size:10px;font-weight:400}.txt-long{white-space:pre-wrap}p.txt-long{width:53.6em;padding:.3em;background-color:#FFF}#texte li{margin:3px 0}.col-sommaire a{background:0 0}ul.gallerie{list-style-type:none}ul.gallerie li{float:left}ul.gallerie li img{margin:.3em;border:1px solid;border-color:#444 #AAA #AAA #444;padding:10px}#carte-img{border:0}#col-syndication{width:800px;background:url(images/flux.png) no-repeat scroll 560px 60px #fff}.icone{line-height:20px;padding-left:20px}.icone-atom{background:url(images/atom.png) no-repeat center left}.icone-rss1{background:url(images/rss1.png) no-repeat center left}.icone-rss2{background:url(images/rss2.png) no-repeat center left}.ui-tabs .ui-tabs-hide{display:none}.col-onglets{margin:0;padding:0;height:auto!important;height:100%}#col-per > .col-sommaire > li{margin-bottom: 2px;}
Property changes:
Added: svnkit:entry:sha1-checksum
+57d68883528d1fcfac1da39e2b9f0bfc68252da5
\ No newline at end of property
/trunk/squelettes/moteur_publications.tpl.html
34,10 → 34,6
<? endif; ?>
 
<div id="col-rech-masque">
<div class="champ-masque long">
<label class="label-gauche">Recherche libre</label>
<input class="long" name="masque[libre]" value="<?= $masque['libre'] ?>" />
</div>
<div class="champ-masque" title="Titre">
<label class="label-gauche">Titre</label>
<input name="masque[titre]" type="text" value="<?= $masque['titre'] ?>" />
50,10 → 46,14
<label class="label-gauche">Date</label>
<input name="masque[date]" type="text" value="<?= $masque['date'] ?>" />
</div>
<div class="champ-masque">
<label class="label-droite">Nom de l'ouvrage</label>
<input name="masque[ouvrage]" value="<?= $masque['ouvrage'] ?>" />
</div>
<!-- <div class="champ-masque">
<label class="label-droite">Revue</label>
<input name="masque[revue]" value="<?= $masque['revue'] ?>" />
</div> -->
<!-- <div class="champ-masque">
<label class="label-gauche">Mot-clé</label>
<input name="masque[mot-cle]" value="<?= $masque['mot-cle'] ?>" />
</div> -->
</div>
 
<input id="col-rech-ok" type="submit" value="OK" />
/trunk/squelettes/js/jquery-collection.min.js
New file
0,0 → 1,5
/*Courriel() est basé sur les sources suivantes :
http://www.html-advisor.com/javascript/hide-email-with-javascript-jquery/
http://plugins.jquery.com/files/jquery.mailme.js.txt
*/
jQuery.fn.courriel=function(){var a=/ \[arrobase\] /;var b=/ \[point\] /g;this.each(function(){var d=jQuery(this).text().replace(a,"@").replace(b,".");var c=jQuery(this).attr("title");$(this).after('<a href="mailto:'+d+'" title="'+c+'">'+d+"</a>").remove()})};