Surcharge css
authorLudovic CHEVALIER <ludovic.chevalier@heureuxcyclage.org>
Fri, 16 Mar 2012 17:23:05 +0000 (18:23 +0100)
committerLudovic CHEVALIER <ludovic.chevalier@heureuxcyclage.org>
Fri, 16 Mar 2012 17:23:05 +0000 (18:23 +0100)
habillage/skel_lhc.css [new file with mode: 0644]
plugin.xml [new file with mode: 0755]
skel_lhc_pipelines.php [new file with mode: 0644]

diff --git a/habillage/skel_lhc.css b/habillage/skel_lhc.css
new file mode 100644 (file)
index 0000000..e1380ca
--- /dev/null
@@ -0,0 +1,8 @@
+#menu_lang {
+    list-style: none outside none;
+    position: absolute;
+    bottom: 0px;
+    right:0px;
+        background-color: rgba(255,255,255,0.7);
+        padding: 5px;
+}
diff --git a/plugin.xml b/plugin.xml
new file mode 100755 (executable)
index 0000000..31a3f5e
--- /dev/null
@@ -0,0 +1,34 @@
+<plugin>
+    <nom>
+    <multi>
+    [fr]heureuxcyclage: fonctionnalites specifiques au reseau l'Heureux Cyclage
+    </multi>
+    </nom>
+    <auteur>Ludovic CHEVALIER</auteur>
+    <licence>&#169; 2011 - GNU/LGPL</licence>
+    <version>
+    0.1
+    </version>
+    <etat>
+        test
+    </etat>
+    <description>
+        <multi>
+            [fr]Squelette de personnalisation de L'Heureux Cyclage.
+        </multi>
+    </description>
+    <lien>http://www.heureux-cyclage.org</lien>
+    <prefix>
+        skel_lhc
+    </prefix>
+    <icon>
+    hc.png
+    </icon>
+    <pipeline>
+               <nom>insert_head</nom>
+               <inclure>skel_lhc_pipelines.php</inclure>
+       </pipeline>
+       <categorie>squelette</categorie>
+    <necessite id="SPIP" version="[2.1.11;2.1.99]" />
+    <necessite id="Z" version= "[1.9.9;]" />
+</plugin>
diff --git a/skel_lhc_pipelines.php b/skel_lhc_pipelines.php
new file mode 100644 (file)
index 0000000..4b16b63
--- /dev/null
@@ -0,0 +1,6 @@
+<?php
+    function skel_lhc_insert_head($texte){
+        $texte .= '<link rel="stylesheet" type="text/css" href="'.find_in_path('habillage/skel_lhc.css').'" media="all" />'."\n";
+        return $texte;
+    }
+?>