]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
Interface fix: correct visual bug under IE
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Tue, 3 Feb 2009 14:15:34 +0000 (14:15 +0000)
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Tue, 3 Feb 2009 14:15:34 +0000 (14:15 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@246 b3834d28-1941-0410-a4f8-b48e95affb8f

images/bg_admin.png [new file with mode: 0644]
images/logo_24.gif [new file with mode: 0644]
images/logo_24.png [deleted file]
scuttle.css
templates/bookmarks.tpl.php

diff --git a/images/bg_admin.png b/images/bg_admin.png
new file mode 100644 (file)
index 0000000..c707779
Binary files /dev/null and b/images/bg_admin.png differ
diff --git a/images/logo_24.gif b/images/logo_24.gif
new file mode 100644 (file)
index 0000000..d5af64d
Binary files /dev/null and b/images/logo_24.gif differ
diff --git a/images/logo_24.png b/images/logo_24.png
deleted file mode 100644 (file)
index f450b78..0000000
Binary files a/images/logo_24.png and /dev/null differ
index 5c9aba60ca2fd052205684458a012d1d4fd795ef..28377e0172974fa79f27ba960027a1617c1242d0 100644 (file)
@@ -116,7 +116,7 @@ html > body h1 {
     padding-left: 75px;
 }
 html > body div#header.popup h1 {
-    background: url('images/logo_24.png') no-repeat 10px;
+    background: url('images/logo_24.gif') no-repeat 10px;
     padding: 0.5em 0.5em 0.5em 50px;
 }
 /*html > body div#header #welcome {
@@ -193,11 +193,12 @@ html > body ol#bookmarks {
     margin: 0 1em;
     padding: 0;
 }
-img.thumbnail {
+img.thumbnail {        
     float: left;
     padding: 1px;
     margin-right: 6px;
     margin-bottom:4px;
+    cursor:pointer;
     border:1px solid #AAA;
 }
 div.link a {
@@ -513,11 +514,15 @@ ul {
 }
 
 .adminBackground {
-    background: #FFFFFF url(http://127.0.0.6/SemanticScuttle/trunk/images/logo_24.png) repeat-y scroll top right;    
+    /*background: #FFFFFF url(images/logo_24.png) no-repeat scroll center right;*/    
     /*border-top: 1px solid;
     border-color: #CC9900;*/
 }
 
+.adminBackground {
+       background: #FFF url('images/bg_admin.png') repeat-y top right;
+}
+
 /* DOJO Style */
 
 /* DOJO Style */
index 6203d33a028c10b3f0cb145b1bb3d2ede4130372..182f65edeb5f36f89ae47c329fd9983cc6e8d65c 100644 (file)
@@ -23,7 +23,7 @@ include('search.inc.php');
 
 <?php if($GLOBALS['enableAdminColors']!=false && isset($userid) && $userservice->isAdmin($userid)): ?>
 <div style="width:70%;text-align:center;">
-<img src="<?php echo ROOT ?>images/logo_24.png" width="12px"/> <?php echo T_('Bookmarks on this page are managed by an admin user.'); ?><img src="<?php echo ROOT ?>images/logo_24.png" width="12px"/>
+<img src="<?php echo ROOT ?>images/logo_24.gif" width="12px"/> <?php echo T_('Bookmarks on this page are managed by an admin user.'); ?><img src="<?php echo ROOT ?>images/logo_24.gif" width="12px"/>
 </div>
 <?php endif?>
 
@@ -196,16 +196,27 @@ if($currenttag!= '') {
                if ($GLOBALS['useredir']) {
                        $address = $GLOBALS['url_redir'] . $address;
                }
+               
+               // Admin specific design
+               if($userservice->isAdmin($row['uId'])) {
+                       $adminBgClass = 'class="adminBackground"';
+                       $adminStar = ' <img src="'. ROOT .'images/logo_24.gif" width="12px" title="'. T_('This bookmark is certified by an admin user.') .'" />';
+               } else {
+                       $adminBgClass = '';
+                       $adminStar = '';
+               }
 
                // Output
-               echo '<li class="xfolkentry'. $access .'">'."\n";
+               echo '<li class="xfolkentry'. $access .'" >'."\n";
                if ($GLOBALS['enableWebsiteThumbnails']) {
                        $thumbnailHash = md5($address.$GLOBALS['thumbnailsUserId'].$GLOBALS['thumbnailsKey']);
-                       echo '<a href="'. $address .'"'. $rel .' ><img class="thumbnail" src="http://www.artviper.net/screenshots/screener.php?url='.$address.'&w=120&sdx=1280&userID='.$GLOBALS['thumbnailsUserId'].'&hash='.$thumbnailHash.'" />  ';
+                       //echo '<a href="'. $address .'"'. $rel .' ><img class="thumbnail" src="http://www.artviper.net/screenshots/screener.php?url='.$address.'&w=120&sdx=1280&userID='.$GLOBALS['thumbnailsUserId'].'&hash='.$thumbnailHash.'" />';
+                       echo '<img class="thumbnail" onclick="window.location.href=\''.$address.'\'" src="http://www.artviper.net/screenshots/screener.php?url='.$address.'&w=120&sdx=1280&userID='.$GLOBALS['thumbnailsUserId'].'&hash='.$thumbnailHash.'" />';
                }
-               echo '<div>';
+               
+               echo '<div '.$adminBgClass.' >';;
 
-               echo '<div class="link"><a href="'. $address .'"'. $rel .' class="taggedlink">'. filter($row['bTitle']) ."</a></div>\n";
+               echo '<div class="link"><a href="'. $address .'"'. $rel .' class="taggedlink">'. filter($row['bTitle']) ."</a>" . $adminStar . "</div>\n";
                if ($row['bDescription'] == '') {
                        $bkDescription = '-';
                } else {