summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpfspot.class.php4
-rw-r--r--stylesheet.css15
2 files changed, 17 insertions, 2 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 42d3075..c1bf643 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -150,7 +150,7 @@ class PHPFSPOT {
continue;
// return all available (= not selected) tags
- print "<a href=\"javascript:Tags('add', ". $tag .");\">". $this->tags[$tag] ."</a>&nbsp;";
+ print "<a href=\"javascript:Tags('add', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>&nbsp;";
}
@@ -162,7 +162,7 @@ class PHPFSPOT {
{
// return all selected tags
if(isset($_SESSION['selected_tags']) && in_array($tag, $_SESSION['selected_tags'])) {
- print "<a href=\"javascript:Tags('del', ". $tag .");\">". $this->tags[$tag] ."</a>&nbsp;";
+ print "<a href=\"javascript:Tags('del', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>&nbsp;";
}
}
diff --git a/stylesheet.css b/stylesheet.css
index b4c69c5..72955f6 100644
--- a/stylesheet.css
+++ b/stylesheet.css
@@ -105,6 +105,21 @@ a:hover {
color: #00aa44;
}
+a.tag {
+ font-size: 14px;
+ color: #000000;
+ text-decoration: underline;
+ font-style: italic;
+}
+
+a.tag:visited, a.tag:active {
+ color: #00ff00;
+}
+a.tag:hover {
+
+ color: #00aa44;
+}
+
#matrix,#single {
padding: 10px;
}