Lien vers la recherche avancée

This commit is contained in:
Vincent Calame 2023-10-02 22:21:24 +02:00 committed by root
parent 2f49686269
commit d34e6b3c6f
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<div class="formulaire_spip formulaire_recherche[ (#ENV{class})]">
<form action="[(#ENV{action})]" method="get" role="search" aria-label="[(#ENV{class}|sinon{recherche})]">
[(#ENV{action}|form_hidden)]
[<input type="hidden" name="lang" value="(#ENV{lang})" />]
<label for="recherche#ENV{_id_champ}"><:info_rechercher_02:/></label>
<input type="[(#HTML5|?{search,text})]" class="search text" size="10" name="recherche" placeholder="<:baz_april:rechercher:/>"[ value="(#ENV{recherche})"] accesskey="4" autocapitalize="off" id="recherche#ENV{_id_champ}" />
<button type="submit" class="submit"><:info_rechercher:/></button>
</form>
<div id="recherche_avancee_bloc"><a href="#URL_PAGE{scrutarijs}" id="lien_recherche_avancee">Recherche avancée</a></div>
</div>

View File

@ -7,8 +7,19 @@
<BOUCLE_emissions(RUBRIQUES){composition=emissions}>
<B_articles>
<p><strong>#GRAND_TOTAL</strong> [(#TOTAL_BOUCLE|>={2}|?{<:libreavous:reponses_triees_par_pertinence:>,<:libreavous:reponse:>})]</p>
[(#REM) Vincent : Exemple de bouton
]
<p>Vous pouvez étendre votre recherche en cherchant également dans les transcriptions :
<a href="#URL_PAGE{scrutarijs,q=#ENV{recherche}}" class="btn">Étendre la recherche</a></p>
<BOUCLE_articles(ARTICLES) {id_rubrique} {recherche} {par points}{inverse} {pagination 10}>
</BOUCLE_articles>
<p><:libreavous:recherche_sans_resultat:></p>
[(#REM) Vincent : code horriblement dupliqué
]
<p>Vous pouvez étendre votre recherche en cherchant également dans les transcriptions :
<a href="#URL_PAGE{scrutarijs,q=#ENV{recherche}}" class="btn">Étendre la recherche</a></p>
<//B_articles>
</BOUCLE_emissions>

View File

@ -1449,6 +1449,33 @@ a.spip_out {
margin-right: 1em;
}
/*
* Vincent 02/10/2023
* Lien vers la recherche avancée
*/
#recherche_avancee_bloc {
background: #FFF;
display: block;
padding-right: 4px;
border: 1px solid #B3B3B3;
border-top-width: 0;
}
#lien_recherche_avancee {
color: $couleurPrincipale !important;
background: #FFF!important;
font-weight: 400;
}
#lien_recherche_avancee:hover {
color: $couleurPrincipaleOn !important;
}
/*Nécessaire pour être au dessus du bouton S'abonner aux actus */
.page_header > .page_container .nav > ul .loupe .formulaire_recherche.vu {
z-index: 5;
}
/*
* fin