]> git.p6c8.net - jirafeau_project.git/commitdiff
New design from original Jiraphe project
authorJerome Jutteau <mojo@couak.net>
Mon, 31 Dec 2012 00:40:08 +0000 (01:40 +0100)
committerJerome Jutteau <mojo@couak.net>
Mon, 31 Dec 2012 00:40:08 +0000 (01:40 +0100)
install.php
lib/config.php
media/industrial/bandeau.png [new file with mode: 0755]
media/industrial/error.png [new file with mode: 0755]
media/industrial/jyraphe.png [new file with mode: 0755]
media/industrial/ok.png [new file with mode: 0755]
media/industrial/style.css.php [new file with mode: 0755]

index 838d749446589f3b3faab1494c094ffe5d73dd15..c55686c110c22e70f4a1ad0bb1eb2187bf810f35 100755 (executable)
@@ -247,7 +247,11 @@ case 2:
         </tr>
         <tr class = "nav">
         <td></td>
-        <td class = "nav next"><input type = "submit" name = "next" value =
+        <td class = "nav next">
+        <input type = "submit"
+        class = "navleft" name = "previous" value = "<?php
+        echo _('Previous step'); ?>" />
+        <input type = "submit" name = "next" value =
         "<?php echo _('Next step'); ?>" /></td> </tr> </table>
         </fieldset> </form> </div> <?php
 break;
@@ -299,11 +303,12 @@ case 3:
         else
           echo $cfg['var_root'];
       ?>" size = "40" /></td>
-        </tr> <tr> <td colspan = "2"> <input type = "submit"
-        class = "navright" name = "next" value = "
-        <?php echo _('Next step'); ?>" /><input type = "submit"
+        </tr> <tr> <td colspan = "2"><input type = "submit"
         class = "navleft" name = "previous" value = "<?php
-        echo _('Previous step'); ?>" /></td> </tr> </table> </fieldset>
+        echo _('Previous step'); ?>" />
+         <input type = "submit" class = "navright" name = "next" value = "
+        <?php echo _('Next step'); ?>" />
+        </td> </tr> </table> </fieldset>
         </form> </div> <?php
 break;
 
index 23ed74c3d0a8170e2fc69f9e473f4bde28088962..502a2a3c13e52ab95aa29efe6d5ab2304a11eeb7 100644 (file)
@@ -32,7 +32,7 @@ $cfg['var_root'] = '';
    user's langage is not available.
  */
 $cfg['lang'] = 'auto';
-$cfg['style'] = 'default';
+$cfg['style'] = 'industrial';
 $cfg['rewrite'] = false;
 /* An empty admin password will disable the admin interface. */
 $cfg['admin_password'] = '';
diff --git a/media/industrial/bandeau.png b/media/industrial/bandeau.png
new file mode 100755 (executable)
index 0000000..970ad95
Binary files /dev/null and b/media/industrial/bandeau.png differ
diff --git a/media/industrial/error.png b/media/industrial/error.png
new file mode 100755 (executable)
index 0000000..4990130
Binary files /dev/null and b/media/industrial/error.png differ
diff --git a/media/industrial/jyraphe.png b/media/industrial/jyraphe.png
new file mode 100755 (executable)
index 0000000..066e9de
Binary files /dev/null and b/media/industrial/jyraphe.png differ
diff --git a/media/industrial/ok.png b/media/industrial/ok.png
new file mode 100755 (executable)
index 0000000..c1ce846
Binary files /dev/null and b/media/industrial/ok.png differ
diff --git a/media/industrial/style.css.php b/media/industrial/style.css.php
new file mode 100755 (executable)
index 0000000..b3204bf
--- /dev/null
@@ -0,0 +1,136 @@
+<?php
+/*
+ *  Jyraphe, your web file repository
+ *  Copyright (C) 2008  Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU Affero General Public License as
+ *  published by the Free Software Foundation, either version 3 of the
+ *  License, or (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU Affero General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Affero General Public License
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/*
+ * This stylesheet is the default stylesheet for Jyraphe.
+ * The content is dynamically generated for easier handling.
+ */
+
+$dark = '#8B4513';
+
+header("Content-type: text/css");
+
+?>
+
+body {
+  font-family: sans-serif;
+  text-align: center;
+  margin: 2ex auto;
+  background: white;
+  /* border: <?php echo $dark; ?> 5px solid; */
+}
+
+fieldset {
+  text-align: left;
+  width: 40em;
+  margin: auto;
+  background: #E2f5ff;
+  border: 2px solid #02233f;
+  -moz-border-radius: 10px;
+  -webkit-border-radius: 10px;
+}
+
+fieldset legend {
+  color: white;
+  background: #02233f;
+  border: 2px solid #02233f;
+  padding: 1px 5px;
+  -moz-border-radius: 5px;
+  -webkit-border-radius: 5px;
+}
+
+h1 {
+  width: 100%;
+  text-align: center;
+  background: url('bandeau.png') left top repeat-x;
+  height: 70px;
+  padding-top: 30px;
+}
+
+h1 a {
+  text-decoration: none;
+  color: white;
+}
+
+fieldset p {
+  margin-left: 25%;
+}
+
+.jyraphe_info {
+  font-size: small;
+  margin-left: 30%;
+}
+
+label {
+  float: left;
+  width: 12em;
+}
+
+input[type=text], input[type=submit], select {
+  color: black;
+  width: 15em;
+  border: 1px #02233f solid;
+  background: white;
+}
+
+input:hover {
+  color: white;
+  background: #02233f;
+}
+
+#jyraphe {
+  background: url('jyraphe.png') right bottom no-repeat;
+  position: fixed;
+  bottom: 0;
+  right: 0;
+       height: 100px;
+  width: 100px;
+       clear:both;
+}
+
+#copyright {
+  text-align: center;
+}
+
+.error, .message {
+  width: 50em;
+  margin: 5ex auto;
+}
+
+.error {
+  padding-bottom: 1ex;
+  border: red 2px solid;
+  background-color: #FBB;
+}
+
+.error p:before {
+  content: url('error.png');
+  padding-right: 1ex;
+}
+
+.message {
+  padding: 1ex;
+  border: green 2px solid;
+  background-color: #BFB;
+}
+
+.message p:before {
+  content: url('ok.png');
+  padding-right: 1ex;
+}

patrick-canterino.de