diff options
author | root <root@dev.(none)> | 2010-03-16 08:48:36 +0100 |
---|---|---|
committer | root <root@dev.(none)> | 2010-03-16 08:48:36 +0100 |
commit | 6d57de7b326b09437b3c90c4dea60d596f92fdd3 (patch) | |
tree | f64aac8fdf48f28a3d33823291eb90e36ea22923 /css | |
parent | 01b7bf3b216811719e63407dcd32b8f8acbd1f4f (diff) | |
download | nextcloud-server-6d57de7b326b09437b3c90c4dea60d596f92fdd3.tar.gz nextcloud-server-6d57de7b326b09437b3c90c4dea60d596f92fdd3.zip |
cleanup autoconfiguration wizard, add settings page, make it run from subdirectories, huge cleanup
Diffstat (limited to 'css')
-rwxr-xr-x | css/default.php (renamed from css/default.css) | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/css/default.css b/css/default.php index be4ffd0bc1f..7da6bb5c657 100755 --- a/css/default.css +++ b/css/default.php @@ -1,3 +1,7 @@ +<?php +header('Content-Type: text/css'); +require_once('../inc/lib_base.php'); +?> body {background-color: #F9F9F9;} body.error {background-color: #F0F0F0;} body,th,td,ul,li,a,div,p,pre {color:#333333; font-family:Verdana,"Bitstream Vera Sans",Arial,Helvetica,Sans,"Bitstream Vera Serif"; font-size:9.0pt;} @@ -29,7 +33,7 @@ a#owncloud-logo { display:block; width:200px; height:99px; - background: transparent url(/img/owncloud-logo-small.png) no-repeat scroll 0 0; + background: transparent url(<?php if(isset($WEBROOT)) echo($WEBROOT); ?>/img/owncloud-logo-small.png) no-repeat scroll 0 0; } a#owncloud-logo span { @@ -37,10 +41,12 @@ a#owncloud-logo span { } .nametext a {color:#333333; font-size:8pt; font-weight:bold; text-decoration:none;} +.errortext {color:#CC3333; font-size:9pt; font-weight:bold; text-decoration:none;} .highlighttext {color:#333333; font-size:9pt; font-weight:bold; text-decoration:none;} .datetext {color:#333333; font-size:7pt;} .sizetext {color:#333333; font-size:7pt;} .footer {color:#999999; text-align:center; font-size:9pt; margin-top:4em;} +.footer a {color:#999999; text-decoration:none;} .hint {color:#AAAAAA; text-align:center; font-size:8pt; margin-top:4em; margin-bottom:2em;} .hint a{color:#AAAAAA; text-align:center; font-size:8pt;} @@ -81,7 +87,7 @@ a#owncloud-logo span { .navigationitem1 a{ text-decoration:none; padding-right:15px; - background: transparent url(/img/dots.png) no-repeat scroll center right; + background: transparent url(<?php if(isset($WEBROOT)) echo($WEBROOT); ?>/img/dots.png) no-repeat scroll center right; } .navigationitem1 img { |