From 2eafb444e3163351093cf860e60a15068ed870e0 Mon Sep 17 00:00:00 2001 From: CharlyCoste Date: Sun, 14 Mar 2010 02:14:13 +0100 Subject: [PATCH] "border" attribute is not a valid attribute for tags. Using proper CSS instructions instead. --- css/default.css | 8 ++++++++ inc/lib_base.php | 2 +- inc/lib_files.php | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/css/default.css b/css/default.css index a3cbaab3123..ede77ec0dde 100755 --- a/css/default.css +++ b/css/default.css @@ -2,6 +2,10 @@ 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;} +a img { + border:none; +} + h1 { margin-bottom:1.5em; } @@ -78,6 +82,10 @@ a#owncloud-logo span { text-decoration:none; } +.navigationitem1 img { + border:none; +} + .navigationitem1:hover { background-color: #EEEEEE; } diff --git a/inc/lib_base.php b/inc/lib_base.php index b8d5bcb9ed4..8fc8e7955b6 100755 --- a/inc/lib_base.php +++ b/inc/lib_base.php @@ -133,7 +133,7 @@ class OC_UTIL { */ public static function shownavigation(){ echo(''); - echo(''); + echo(''); if($_SERVER['SCRIPT_NAME']=='/index.php') echo(''); else echo(''); foreach(OC_UTIL::$NAVIGATION as $NAVI) { diff --git a/inc/lib_files.php b/inc/lib_files.php index 39d48c13a97..ab0a5252982 100755 --- a/inc/lib_files.php +++ b/inc/lib_files.php @@ -53,7 +53,7 @@ class OC_FILES { $currentdir=''; foreach($dirs as $d) { $currentdir.='/'.$d.''; - if($d<>'') echo(''); + if($d<>'') echo(''); } echo('
 '.$d.' '.$d.'
'); } -- 2.39.5