]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
Interface fix: improve crossing tags
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Fri, 22 May 2009 09:39:22 +0000 (09:39 +0000)
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Fri, 22 May 2009 09:39:22 +0000 (09:39 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@330 b3834d28-1941-0410-a4f8-b48e95affb8f

scuttle.css
templates/sidebar.block.related.php

index 5cbfb0c88c640de946528c052a49c6d2afb886ce..5dd4dc52d5f9f8dfb8986a5641fcc51a2d421fc8 100644 (file)
@@ -310,6 +310,11 @@ div#related {
     padding: 0.5em;
 }
 
+.crossTags {
+    padding:0px 3px;    
+    border: 1px solid #999955
+}
+
 div#sidebar>div#maintagsmenu {
     padding: 0.5em;
     border: 5px solid #999955
index ccb59b3874c18f543c250e00523205274ef878d7..182ea833a254d61764995e927076610f8397ccd5 100644 (file)
@@ -28,7 +28,7 @@ if ($currenttag) {
     <table>
     <?php foreach($relatedTags as $row): ?>
     <tr>        
-        <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($row['tag'], 'url')); ?>" rel="tag"><?php echo filter($row['tag']); ?></a> <b><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($currenttag, 'url') .'+'. filter($row['tag'], 'url')); ?>" title="<?php echo T_('Add this tag to the query') ?>">+</a></b></td>      
+        <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($row['tag'], 'url')); ?>" rel="tag"><?php echo filter($row['tag']); ?></a> <a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($currenttag, 'url') .'+'. filter($row['tag'], 'url')); ?>" title="<?php echo $currenttag . '+' . filter($row['tag']); ?>" class="crossTags">+</a></td>      
     </tr>
     <?php endforeach; ?>
     </table>