diff --git a/.gitattributes b/.gitattributes index 547480446a7f333ea7503bf66579913a4929c9f8..661528261702adc95fba8a07162e26674698fc42 100644 --- a/.gitattributes +++ b/.gitattributes @@ -179,6 +179,7 @@ dist/images/secteur-24.gif -text dist/images/set-ecran-etroit.png -text dist/images/set-ecran.png -text dist/images/site-24.gif -text +dist/images/spip-pack-24.png -text dist/images/spip_out.gif -text dist/images/statistiques-24.gif -text dist/images/statistiques-48.png -text diff --git a/dist/images/spip-pack-24.png b/dist/images/spip-pack-24.png new file mode 100644 index 0000000000000000000000000000000000000000..32f2bd979eca6ba569ee97bd03b70b6907eb992c Binary files /dev/null and b/dist/images/spip-pack-24.png differ diff --git a/ecrire/exec/admin_plugin.php b/ecrire/exec/admin_plugin.php index fa5ad55630d928065f15f1d29d64f5aa021ced7d..e468c8074f446bbd68e946b5753ba6cc17ab7bca 100644 --- a/ecrire/exec/admin_plugin.php +++ b/ecrire/exec/admin_plugin.php @@ -240,6 +240,9 @@ function affiche_arbre_plugins($liste_plugins,$liste_plugins_actifs){ } return false; }); + var pack=jQuery('div.spip_pack'); + jQuery(pack).find('a').hide(); + jQuery(pack).find('img').bind('click',function(){jQuery(this).siblings('a').toggle();}); }); "); @@ -285,9 +288,10 @@ function ligne_plug($plug_file, $actif, $id){ // bouton de desinstallation if ($actif && plugin_est_installe($plug_file)){ - $s .= "<div style='float:$spip_lang_right'>"; - $action = generer_action_auteur('desinstaller_plugin',$plug_file,generer_url_ecrire('admin_plugin')); + $s .= "<div style='float:$spip_lang_right' class='spip_pack'>"; $s .= "<a href='$action'>"._T('bouton_effacer_tout')."</a>"; + $s .= http_img_pack('spip-pack-24.png','spip-pack','','spip-pack'); + $action = generer_action_auteur('desinstaller_plugin',$plug_file,generer_url_ecrire('admin_plugin')); $s .= "</div>"; }