Skip to content
Extraits de code Groupes Projets
Valider 969d9d69 rédigé par cerdic's avatar cerdic
Parcourir les fichiers

Brancher les vieilles fonctions debut_cadre_xx sur les filtres de boite pour...

Brancher les vieilles fonctions debut_cadre_xx sur les filtres de boite pour avoir le meme html que dans les squelettes.
Au passage, on renomme les anciennes classes sur la bonne combinaison classe de boite/classe de titre
Cas de la presentation des rubriques :
- nettoyage du html qui ne depend plus de spip_display
- nettoyage de toutes les classes/styles de typo
- decoupage en 2 colonnes plus simple et efficace
- degrossissage CSS pour retrouver ses reperes visuels

Nettoyages de styles vieilles def inutilisés
parent 8194b0f6
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -74,13 +74,13 @@ function balise_BOITE_FERMER_dist($p) {
* @param string $class
* @return <type>
*/
function boite_ouvrir($titre, $class='', $head_class=''){
function boite_ouvrir($titre, $class='', $head_class='', $id=""){
$class = "box $class";
$head_class = "clearfix hd $head_class";
// dans l'espace prive, titrer en h3 si pas de balise <hn>
if (test_espace_prive() AND strlen($titre) AND strpos($titre,'<h')===false)
$titre = "<h3>$titre</h3>";
return '<div class="'.$class.'">'
return '<div class="'.$class.($id?"\" id=\"$id":"").'">'
.'<b class="top"><b class="tl"></b><b class="tr"></b></b>'
.'<div class="inner">'
.($titre?'<div class="'.$head_class.'">'.$titre.'</div>':'')
......
......@@ -62,7 +62,8 @@ function bouton_block_depliable($texte,$deplie,$ids=""){
$cible = "#$bouton_id + div.bloc_depliable";
}
return "<div "
$b = (strpos($texte,"<h")===false?'h3':'div');
return "<$b "
.($bouton_id?"id='$bouton_id' ":"")
."class='titrem$class'"
. (($deplie===-1)
......@@ -71,9 +72,8 @@ function bouton_block_depliable($texte,$deplie,$ids=""){
)
.">"
// une ancre pour rendre accessible au clavier le depliage du sous bloc
// on ne la mets pas en interface "accessible", dans laquelle il n'y pas de sous bloc ... un comble !
. ($GLOBALS['spip_display']==4?"":"<a href='#' onclick=\"return jQuery(this).depliant_clicancre('$cible');\" class='titremancre'></a>")
. "$texte</div>"
. "<a href='#' onclick=\"return jQuery(this).depliant_clicancre('$cible');\" class='titremancre'></a>"
. "$texte</$b>"
. http_script( ($deplie==='incertain')
? "jQuery(document).ready(function(){if (jQuery('$cible').is(':visible')) $('#$bouton_id').addClass('deplie').removeClass('replie');});"
: '');
......
......@@ -20,74 +20,42 @@ include_spip('inc/boutons');
include_spip('inc/actions');
include_spip('inc/puce_statut');
include_spip('inc/filtres_ecrire');
include_spip('inc/filtres_boites');
define('_ACTIVER_PUCE_RAPIDE', true);
// http://doc.spip.org/@debut_cadre
function debut_cadre($style, $icone = "", $fonction = "", $titre = "", $id="", $class="", $padding=true) {
global $spip_display, $spip_lang_left;
static $accesskey = 97; // a
//zoom:1 fixes all expanding blocks in IE, see authors block in articles.php
//being not standard, next step can be putting this kind of hacks in a different stylesheet
//visible to IE only using conditional comments.
$style_cadre = " style='";
if ($spip_display != 1 AND $spip_display != 4 AND strlen($icone) > 1) {
$style_gauche = "padding-$spip_lang_left: 38px;";
//$style_cadre .= "margin-top: 20px;'";
$style_cadre .= "'";
} else {
$style_cadre .= "'";
$style_gauche = '';
}
// accesskey pour accessibilite espace prive
if ($accesskey <= 122) // z
{
$accesskey_c = chr($accesskey++);
$ret = "<a id='access-$accesskey_c' href='#access-$accesskey_c' accesskey='$accesskey_c'></a>";
} else $ret ='';
$ret .= "\n<div "
. ($id?"id='$id' ":"")
."class='cadre cadre-$style"
. ($class?" $class":"")
."'$style_cadre>";
if ($spip_display != 1 AND $spip_display != 4 AND strlen($icone) > 1) {
$style_mapping=array('r'=>'simple','e'=>'raccourcis','couleur'=>'basic highlight','couleur-foncee'=>'basic highlight','trait-couleur'=>'important','alerte'=>'notice','info'=>'info','sous_rub'=>'simple sous-rub');
$style_titre_mapping=array('couleur'=>'topper','trait-couleur'=>'section');
$c = isset($style_mapping[$style])?$style_mapping[$style]:'simple';
$class = $c . ($class?" $class":"");
if (!$padding)
$class .= ($class?" ":"")."no-padding";
//($id?"id='$id' ":"")
if (strlen($icone) > 1) {
if ($icone_renommer = charger_fonction('icone_renommer','inc',true))
list($icone,$fonction) = $icone_renommer($icone,$fonction);
if ($fonction) {
$ret .= http_img_pack("$fonction", "", " class='cadre-icone' ".http_style_background($icone, "no-repeat; padding: 0px; margin: 0px"));
list($fond,$fonction) = $icone_renommer($icone,$fonction);
$size = 24;
if (preg_match("/-([0-9]{1,3})[.](gif|png)$/i",$fond,$match))
$size = $match[1];
if ($fonction){
// 2 images pour composer l'icone : le fond (article) en background,
// la fonction (new) en image
$icone = http_img_pack($fonction, "", "class='cadre-icone' width='$size' height='$size'\n" .
http_style_background($fond, "no-repeat center center"));
}
else $ret .= http_img_pack("$icone", "", " class='cadre-icone'");
}
if (strlen($titre) > 0) {
if (strpos($titre,'titrem')!==false) {
$ret .= $titre;
} elseif ($spip_display == 4) {
$ret .= "\n<h3 class='cadre-titre'>$titre</h3>";
} else {
$ret .= bouton_block_depliable($titre,-1);
else {
$icone = http_img_pack($fond, "", "class='cadre-icone' width='$size' height='$size'");
}
$titre = $icone . $titre;
}
$ret .= "<div". ($padding ?" class='cadre_padding'" : '') .">";
return $ret;
return boite_ouvrir($titre, $class,isset($style_titre_mapping[$style])?$style_titre_mapping[$style]:'',$id);
}
// http://doc.spip.org/@fin_cadre
function fin_cadre($style='') {
$ret = "<div class='nettoyeur'></div></div>".
"</div>\n";
return $ret;
}
function fin_cadre() {return boite_fermer();}
function debut_cadre_relief($icone='', $dummy='', $fonction='', $titre = '', $id="", $class=""){return debut_cadre('r', $icone, $fonction, $titre, $id, $class);}
......@@ -105,7 +73,7 @@ function fin_cadre_trait_couleur(){return fin_cadre('trait-couleur');}
function debut_boite_alerte() {return debut_cadre('alerte', '', '', '', '', '');}
function fin_boite_alerte() {return fin_cadre('alerte');}
function debut_boite_info() {return debut_cadre('info', '', '', '', '', '');}
function fin_boite_info($return=false) {return fin_cadre('info');}
function fin_boite_info() {return fin_cadre('info');}
// http://doc.spip.org/@gros_titre
function gros_titre($titre, $ze_logo=''){return "<h1 class='grostitre'>" . $ze_logo.' ' . typo($titre)."</h1>\n";}
......@@ -115,9 +83,7 @@ function gros_titre($titre, $ze_logo=''){return "<h1 class='grostitre'>" . $ze_l
// http://doc.spip.org/@bloc_des_raccourcis
function bloc_des_raccourcis($bloc) {
return creer_colonne_droite()
. debut_cadre_enfonce('','','',"<h3>"._T('titre_cadre_raccourcis')."</h3>")
. $bloc
. fin_cadre_enfonce();
. boite_ouvrir(_T('titre_cadre_raccourcis'),'raccourcis') . $bloc . boite_fermer();
}
// Afficher un petit "+" pour lien vers autre page
......
......@@ -18,19 +18,15 @@ include_spip('inc/presentation');
// http://doc.spip.org/@enfant_rub
function enfant_rub($collection){
global $spip_display, $spip_lang_right, $spip_lang;
$voir_logo = ($spip_display != 1 AND isset($GLOBALS['meta']['image_process']) AND $GLOBALS['meta']['image_process'] != "non");
$voir_logo = (isset($GLOBALS['meta']['image_process']) AND $GLOBALS['meta']['image_process'] != "non");
$logo = "";
if ($voir_logo) {
$voir_logo = "float: $spip_lang_right; margin-$spip_lang_right: 0px; margin-top: 0px;";
$chercher_logo = charger_fonction('chercher_logo', 'inc');
} else $logo ='';
}
$res = "";
$result = sql_select("id_rubrique, id_parent, titre, descriptif, lang ", "spip_rubriques", "id_parent=$collection",'', '0+titre,titre');
while($row=sql_fetch($result)){
$id_rubrique=$row['id_rubrique'];
$id_parent=$row['id_parent'];
......@@ -50,44 +46,35 @@ function enfant_rub($collection){
include_spip('inc/filtres_images_mini');
$logo = image_reduire("<img src='$fid' alt='' />", 48, 36);
if ($logo)
$logo = "\n<div style='$voir_logo'>$logo</div>";
$logo = inserer_attribut($logo,'class','logo');
}
}
$lib_bouton = (!acces_restreint_rubrique($id_rubrique) ? "" :
http_img_pack(chemin_image('auteur-0minirezo-16.png'), '', " width='16' height='16'", _T('image_administrer_rubrique'))) .
" <span dir='$lang_dir'><a href='" .
" <a dir='$lang_dir' href='" .
generer_url_entite($id_rubrique,'rubrique') .
"'>".
typo($titre) .
"</a></span>";
"</a>";
$titre = (is_string($logo) ? $logo : '') .
bouton_block_depliable($lib_bouton,$les_sous_enfants ?false:-1,"enfants$id_rubrique");
$les_enfants = "\n<div class='enfants'>" .
$res[] =
debut_cadre_sous_rub(($id_parent ? "rubrique-24.png" : "secteur-24.png"), true, "", $titre) .
(!$descriptif ? '' : "\n<div class='verdana1'>$descriptif</div>") .
(($spip_display == 4) ? '' : $les_sous_enfants) .
"\n<div style='clear:both;'></div>" .
fin_cadre_sous_rub(true) .
"</div>";
$res .= ($spip_display != 4)
? $les_enfants
: "\n<li>$les_enfants</li>";
(!$descriptif ? '' : "\n<div class='descriptif'>$descriptif</div>") .
$les_sous_enfants .
fin_cadre_sous_rub(true);
}
}
changer_typo($spip_lang); # remettre la typo de l'interface pour la suite
return (($spip_display == 4) ? "\n<ul>$res</ul>\n" : $res);
changer_typo($GLOBALS['spip_lang']); # remettre la typo de l'interface pour la suite
return $res;
}
// http://doc.spip.org/@sous_enfant_rub
function sous_enfant_rub($collection2){
global $spip_lang_left;
$result3 = sql_select("id_rubrique, id_parent, titre, lang", "spip_rubriques", "id_parent=$collection2",'', '0+titre,titre');
$retour = '';
......@@ -98,35 +85,32 @@ function sous_enfant_rub($collection2){
changer_typo($row['lang']);
$lang_dir = lang_dir($row['lang']);
if (autoriser('voir','rubrique',$id_rubrique2))
$retour.="\n<li class='arial11 rubrique_12' dir='$lang_dir'><a href='" . generer_url_entite($id_rubrique2,'rubrique') . "'>".typo($titre2)."</a></li>\n";
$retour.="\n<li class='item' dir='$lang_dir'><a href='" . generer_url_entite($id_rubrique2,'rubrique') . "'>".typo($titre2)."</a></li>\n";
}
if (!$retour) return '';
return debut_block_depliable(false,"enfants$collection2")
."\n<ul style='margin: 0px; padding: 0px; padding-top: 3px;'>\n"
."\n<ul class='liste-items sous-sous-rub'>\n"
. $retour
. "</ul>\n\n".fin_block()."\n\n";
. "</ul>\n".fin_block()."\n\n";
}
// http://doc.spip.org/@afficher_enfant_rub
function afficher_enfant_rub($id_rubrique=0) {
global $spip_display;
$les_enfants = enfant_rub($id_rubrique);
$n = strlen(trim($les_enfants));
$n = count($les_enfants);
if (!$n) return "";
if (!($x = strpos($les_enfants,"\n<div class='enfants'>",round($n/2)))) {
if ($n==1) {
$les_enfants=reset($les_enfants);
$les_enfants2="";
}else{
$les_enfants2 = substr($les_enfants, $x);
$les_enfants = substr($les_enfants,0,$x);
if ($spip_display == 4) {
$les_enfants .= '</li></ul>';
$les_enfants2 = '<ul><li>' . $les_enfants2;
}
}
else{
$n = ceil($n/2);
$les_enfants2 = implode('',array_slice($les_enfants,$n));
$les_enfants = implode('',array_slice($les_enfants,0,$n));
}
$res =
......
[(#ID_RUBRIQUE|afficher_enfant_rub)]
[(#AUTORISER{creerrubriquedans,rubrique,#ID_RUBRIQUE}|oui)
[(#ID_RUBRIQUE|?{
[(#URL_ECRIRE{rubrique_edit,new=oui&id_parent=#ID_RUBRIQUE}|icone_verticale{<:icone_creer_sous_rubrique:>,rubrique,new,right})]
[(#URL_ECRIRE{rubrique_edit,new=oui&id_parent=#ID_RUBRIQUE}|icone_verticale{<:icone_creer_sous_rubrique:>,rubrique,new,right clearright})]
,
[(#URL_ECRIRE{rubrique_edit,new=oui}|icone_verticale{<:icone_creer_rubrique:>,secteur,new,right})]
[(#URL_ECRIRE{rubrique_edit,new=oui}|icone_verticale{<:icone_creer_rubrique:>,secteur,new,right clearright})]
})]
<div class="nettoyeur"></div>
]
......
......@@ -48,7 +48,7 @@
.important b{}
/* ----- basic (extends box) ----- */
.basic {overflow: hidden;margin-bottom: -1px}
.basic {margin-bottom: -1px}
.basic .inner {padding-bottom: 1px;border: 1px solid #aaa;}
.basic .inner .hd {}
.basic b{}
......@@ -56,23 +56,23 @@
/* ----- error, success, notice (extends box) ----- */
.box.error, .box.success, .box.notice {padding:0;backround-image:none;}
.error .inner,.success .inner,.notice .inner{border:2px solid;font-weight: normal;color:#333;}
.error .bd,.success .bd,.notice .bd {padding-left:40px;min-height:24px;background-repeat:no-repeat;background-position: 5px 5px;}
.error .bd,.success .bd,.notice .bd {padding-left:40px;min-height:24px;background-repeat:no-repeat;background-position: 2px 5px;}
.box.error .hd,.box.success .hd,.box.notice .hd {padding-left:40px;}
.error .ft,.success .ft,.notice .ft {padding-left:40px;}
.box.error .ft,.box.success .ft,.box.notice .ft {border-color:#ddd;background-color:#eee;}
.success .inner{color: #264409;border-color: #C6D880;background-color:#E6EFC2;}
.success .bd{background-image:url(#CHEMIN_IMAGE{ok-24.png});}
.success .bd{background-image:url(#CHEMIN_IMAGE{ok-32.png});}
.box.success .hd {background-color:#C6DF61;}
.box.success .hd h1,.box.success .hd h2,.box.success .hd h3,.box.success .hd h4,.box.success .hd h5,.box.success .hd h6 {background-color:#C6DF61;}
.error .inner{color: #8A1F11;border-color: #FBC2C4;background-color:#FBE3E4;}
.error .bd{background-image:url(#CHEMIN_IMAGE{erreur-24.png});}
.error .bd{background-image:url(#CHEMIN_IMAGE{erreur-32.png});}
.box.error .hd {background-color:#DF454F;color:#fff;}
.box.error .hd h1,.box.error .hd h2,.box.error .hd h3,.box.error .hd h4,.box.error .hd h5,.box.error .hd h6 {background-color:#DF454F;color:#fff;}
.notice .inner{color: #514721;border-color: #FFD324;background-color:#FFF6BF;}
.notice .bd{background-image:url(#CHEMIN_IMAGE{warning-24.png});}
.notice .bd{background-image:url(#CHEMIN_IMAGE{warning-32.png});}
.box.notice .hd {background-color:#FFD83F;}
.box.notice .hd h1,.box.notice .hd h2,.box.notice .hd h3,.box.notice .hd h4,.box.notice .hd h5,.box.notice .hd h6 {background-color:#FFD83F;}
......@@ -105,3 +105,24 @@ background-color: #fff; color: #4A4A4A;font-size:1.2em; position:relative;}
text-align: #GET{right};
padding: 7px 1em;
}
/* Cas particuliers */
.simple.sous-rub .inner .hd {padding:0}
.simple.sous-rub .inner .hd .logo {margin:0;position:absolute;right:0;top:0;z-index:1;}
.simple.sous-rub .sous-sous-rub {margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;}
/* vieilles boites depliables/repliables
encore maintenues mais depreciees
*/
.titrem { font-weight: bold; }
div.titrem, h3.titrem { display: block; padding-top: 6px; padding-bottom: 4px; background-repeat: no-repeat; padding-[(#GET{left})]:16px; padding-[(#GET{right})]:10px;margin:0;}
div.titrem a.titremancre,h3.titrem a.titremancre {padding:15px 0 0 16px;background-position: [(#GET{left})] top;background-repeat: no-repeat; position:relative;float:[(#GET{left})];margin-[(#GET{left})]:-16px;}
/* Deplier / Replier */
.deplie a.titremancre, .deplie a.titremancre, .depliant a.titremancre, .replie a.titremancre { height: 1px; padding-bottom: 0px; }
.replie a.titremancre { background-image: url([(#CHEMIN_IMAGE{deplierhaut[(#GET{rtl})].gif})]); }
.hover { background-color: #GET{claire}; }
.deplie a.titremancre { background-image: url(#CHEMIN_IMAGE{deplierbas.gif}); }
.impliable {}
.js .blocreplie { display: none; }
.js .titrem.blocreplie { display: block; }
.blocdeplie { display: block; background: none; }
......@@ -38,6 +38,8 @@
.icone.left {float:#GET{left};}
.icone.right {float:#GET{right};}
.icone.center a,.icone.center .submit {margin:0 auto;}
.icone.clearleft {clear:#GET{left};}
.icone.clearright {clear:#GET{right};}
/* icone horizontale */
.icone.horizontale { display:block; clear: both;position:relative;margin:0;padding:2px;text-align: #GET{left};padding-#GET{left}:32px;}
......
......@@ -21,6 +21,7 @@
#SET{right,#ENV{ltr}|choixsiegal{left,right,left}}
/* * */
/*
.toile_claire {
background-color: #GET{claire};
}
......@@ -47,10 +48,10 @@
.ligne_blanche { color: white;}
.ligne_foncee { color: #GET{foncee};}
.ligne_noire { color: #000;}
*/
/* * Formulaires */
/*
.forml { margin-top: 0px; width: 100%; display: block; padding: 3px; background-color: #f0f0f0; border: 1px solid #GET{claire}; background-position: center bottom; float: none; behavior: url([(#CHEMIN{win_width.htc}|url_absolue)]); font-size: 12px; }
.formo { margin-top: 0px; width: 100%; display: block; padding: 3px; background-color: #fff; border: 1px solid #GET{claire}; background-position: center bottom; float: none; behavior: url([(#CHEMIN{win_width.htc}|url_absolue)]); font-size: 12px; }
.fondl { margin-top: 0px; padding: 3px; background-color: #e4e4e4; border: 1px solid #GET{claire}; background-position: center bottom; float: none; font-size: 11px; }
......@@ -72,6 +73,7 @@ input[type="submit"] {
select.fondl { padding: 0; }
.maj-debut:first-letter { text-transform: uppercase; }
*/
/*style for horizontal list <div class='h-list'><ul ><li><tag class='menu-item'></tag></li></ul></div>*/
/*for IE item list must be specified in .menu-item*/
......@@ -157,7 +159,9 @@ a.icone26:hover img { background: url(#GET{chemin_img_pack}fond-gris-anim.gif);
*/
/* utilise encore dans core/statistiques */
/*
.iconeoff { padding: 3px; margin: 1px; border: 1px dashed #aaa; background-color: #f0f0f0; }
*/
/* plus du tout utilise ? */
/*
......@@ -271,27 +275,28 @@ li.rub ul{ display: none; }
li img.expandImage { display: block; float: #GET{left}; position: relative; #GET{left}: -20px; width: 16px; height: 16px; }
li.selected { background-color: #GET{claire}}
/* Fin Styles pour "Tout le site" */
/*
a.triangle_block { margin-top: -3px; margin-bottom: -3px; margin-#GET{right}: -3px; filter:alpha(opacity=70); -moz-opacity:0.7; opacity: 0.7; }
a.triangle_block:hover { filter: alpha(opacity=100); -moz-opacity: 1; opacity: 1; }
*/
/*.swap-couche { border: 0; height: 10px; width: 10px; }*/
/* anciennes listes d'objet */
/*
.tr_liste { background-color: #eee; }
.tr_liste_over, .tr_liste:hover { background-color: #fff; }
.tr_liste td, .tr_liste:hover td, .tr_liste_over td { border-bottom: 1px solid #ddd; }
tbody>.tr_liste:last-child td { border-bottom: 0px; }
.tr_liste td div.liste_clip { height: 12px; overflow: hidden; }
.tr_liste:hover td div.liste_clip, span.liste_clip { overflow: visible; height: 100%; }
*/
/** OLDIES : cadres issus de PHP */
/* * Cadre couleur foncee */
/*
.cadre_padding { padding: 6px; }
.cadre_padding.padding_x { padding: 0 6px; }
.padding_x .bloc_depliable { padding: 6px 0; }
/* .cadre-titre { font-family: Verdana, Geneva, helvetica, sans; font-weight: bold; font-size: 12px; padding: 3px; }*/
.cadre { margin: 20px 0 10px 0; font-family: Verdana, Geneva, helvetica, sans; font-size: 11px; position: relative; }
.cadre { border: 1px solid #aaa; background-color: #eee; }
.cadre-fonce { background-color: #GET{foncee}; }
......@@ -314,14 +319,15 @@ tbody>.tr_liste:last-child td { border-bottom: 0px; }
.cadre-thread-forum div.cadre-titre { background-color: #ccc; color: #000; }
.cadre-info{ background-color: #fff; border: 2px solid #GET{foncee}; padding: 5px; }
.cadre-alerte { border: 6px solid red; }
*/
/* -------- */
/*
.cadre-liste .titrem { background-color: #fff; color: #444; }
.cadre-liste .titrem.hover { background-color: #GET{claire}}
.cadre-liste .tr_liste .titrem { background-color:#eee; }
*/
.ajax-action {padding-top:0px;clear:both;position: relative; }
/*.ajax-action {padding-top:0px;clear:both;position: relative; }*/
/*
.dater {position: relative; }
.dater { border: 1px solid #GET{claire}; }
......@@ -348,11 +354,7 @@ tbody>.tr_liste:last-child td { border-bottom: 0px; }
*/
/* Titre d'une boite */
.titrem { font-weight: bold; }
div.titrem, h3.titrem { display: block; padding-top: 6px; padding-bottom: 4px; background-repeat: no-repeat; padding-[(#GET{left})]:16px; padding-[(#GET{right})]:10px;}
div.titrem a.titremancre {padding:15px 0 0 16px;background-position: [(#GET{left})] top;background-repeat: no-repeat; position:relative;float:[(#GET{left})];margin-[(#GET{left})]:-16px;}
/*
.cadre-couleur-foncee .titrem { background-color: #GET{claire}; color: #fff; color: #444; }
.cadre-couleur-foncee .cadre_padding .titrem { color: #444; }
.cadre-trait-couleur .titrem { background-color: #GET{foncee}; color: #fff; }
......@@ -361,28 +363,20 @@ div.titrem a.titremancre {padding:15px 0 0 16px;background-position: [(#GET{left
.mots_tous #contenu .titrem.impliable { background-color: #GET{claire}; }
.cadre-couleur .titrem { background-color: #fff; }
*/
/*
.joindre .titrem, #navigation .joindre .titrem { background-color: #GET{claire}; }
*/
.accueil #navigation .titrem { background-color: #fff; }
/*.accueil #navigation .titrem { background-color: #fff; }*/
/*
#navigation .titrem, #extra .titrem {text-align: center; }
#navigation .titrem, #extra .titrem { background-color: #fff; }
#liste_images .titrem, #liste_documents .titrem { background-color: #ccc; }
*/
/*#liste_images .legender .titrem, #liste_documents .legender .titrem { background-color: #fff; } */
#navigation .hover, #extra .hover, .joindre .hover, #liste_images .hover, #liste_documents .hover { background-color: #GET{claire}; }
/*#navigation .hover, #extra .hover, .joindre .hover, #liste_images .hover, #liste_documents .hover { background-color: #GET{claire}; }*/
/*
.iconifier div div.titrem {text-align: #GET{left}; }
.iconifier div div {text-align: center; }
.iconifier div div label {text-align: #GET{left};display: block; }
*/
/* Deplier / Replier */
.deplie a.titremancre, .deplie a.titremancre, .depliant a.titremancre, .replie a.titremancre { height: 1px; padding-bottom: 0px; }
.replie a.titremancre { background-image: url([(#CHEMIN_IMAGE{deplierhaut[(#GET{rtl})].gif})]); }
.hover { background-color: #GET{claire}; }
.deplie a.titremancre { background-image: url(#CHEMIN_IMAGE{deplierbas.gif}); }
.impliable {}
.js .blocreplie { display: none; }
.js .titrem.blocreplie { display: block; }
.blocdeplie { display: block; background: none; }
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter