Changeset 49405 in spip-zone
- Timestamp:
- Jul 5, 2011, 5:33:03 PM (10 years ago)
- Location:
- _plugins_/couteau_suisse/exec
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/couteau_suisse/exec/admin_couteau_suisse.php
r49237 r49405 206 206 $t = '<div class="cs_aide">'.couteauprive_T('help')."\n\n$t</div>"; 207 207 echo debut_boite_info(true), propre($t), fin_boite_info(true); 208 $t = cs_aide_raccourcis(); 209 if(strlen($t)) 210 echo debut_boite_info(true), $t, fin_boite_info(true); 208 // if(strlen($t = cs_aide_raccourcis())) 209 // echo debut_boite_info(true), $t, fin_boite_info(true); 211 210 $t = cs_aide_pipelines($outils_affiches_actifs); 212 211 if(strlen($t)) … … 219 218 debut_droite('', true), 220 219 debut_cadre_trait_couleur(find_in_path('img/couteau-24.gif'),true,'',' '.couteauprive_T('outils_liste')), 221 couteauprive_T('outil_intro'), 222 "\n<table border='0' cellspacing='0' cellpadding='5' style='width:100%;'><tr><td class='sansserif'>"; 220 '<div class="titrem cs_intros">', couper($t = couteauprive_T('outil_intro'), 50), 221 '</div><div id="cs_infos_1" class="sous_liste cs_intros_inner">', $t, '</div>'; 222 if(strlen($t = cs_aide_raccourcis())) 223 echo '<div class="titrem cs_intros">', couper($t, 50), 224 '</div><div id="cs_infos_2" class="sous_liste cs_intros_inner">', $t, '</div>'; 225 echo "\n<table border='0' cellspacing='0' cellpadding='5' style='width:100%;'><tr><td class='sansserif'>"; 223 226 224 227 $_GET['source'] = $exec; -
_plugins_/couteau_suisse/exec/admin_couteau_suisse_head.html
r48736 r49405 15 15 #SET{claire,##ENV{couleur_claire,edf3fe}} 16 16 #SET{foncee,##ENV{couleur_foncee,3874b0}} 17 div.cs_outils fieldset { border:2px solid #GET{claire}; background:#fcfcfc;}17 div.cs_outils fieldset, div.cs_intros_inner { border:2px solid #GET{claire}; background:#fcfcfc;} 18 18 div.cs_infos fieldset { border: 1px threedface groove; padding: 0.3em; } 19 19 ] … … 85 85 } 86 86 87 div.categorie {87 div.categorie, div.cs_intros { 88 88 margin-top:.6em; 89 89 padding:2px; … … 98 98 div.categorie span.light { 99 99 font-weight:normal; 100 } 101 102 div.cs_intros_inner { 103 margin-left:1em; 104 padding:0.4em; 105 font-size:90%; 100 106 } 101 107 … … 194 200 jQuery('div.cs_liste script').remove(); 195 201 // clic sur un titre de categorie 196 jQuery('div.categorie ').click( function() {202 jQuery('div.categorie, div.cs_intros').click( function() { 197 203 jQuery(this).children().toggleClass('cs_hidden'); 198 204 next = jQuery(this).next(); … … 201 207 // annulation du clic 202 208 return false; 203 }) 204 .dblclick(function(){209 }); 210 jQuery('div.categorie').dblclick(function(){ 205 211 id = '#'+this.nextSibling.id; 206 212 a = jQuery(id+' a.outil_on').length;
Note: See TracChangeset
for help on using the changeset viewer.