diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-05 10:31:29 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-05 10:31:29 +0000 |
commit | c12348f5e7ef8bd89ec70584abf539e963631ea2 (patch) | |
tree | 5e819c577dbc9df3a9a696bd3b3f09a9b9f88a0c | |
parent | b6188b66e434670e865ea942560f504f7dde8912 (diff) | |
download | semanticscuttle-c12348f5e7ef8bd89ec70584abf539e963631ea2.tar.gz semanticscuttle-c12348f5e7ef8bd89ec70584abf539e963631ea2.tar.bz2 |
Interface change: try contexual help with tooltip.
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@315 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | scuttle.css | 7 | ||||
-rw-r--r-- | templates/sidebar.block.menu2.php | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/scuttle.css b/scuttle.css index 988b551..4d1b0ee 100644 --- a/scuttle.css +++ b/scuttle.css @@ -153,9 +153,14 @@ h2 { text-transform: lowercase; } h2 a, h2 a:hover { - color: #DDD; + color: #DDD; } +/*sup { + color: #77ABE0; + font-weight: bold; +}*/ + /* NAVIGATION */ ul#navigation { diff --git a/templates/sidebar.block.menu2.php b/templates/sidebar.block.menu2.php index dafadcc..8329ef3 100644 --- a/templates/sidebar.block.menu2.php +++ b/templates/sidebar.block.menu2.php @@ -22,10 +22,13 @@ if (sizeOf($menu2Tags) > 0) { $this->includeTemplate("dojo.inc"); ?> -<h2><?php echo '<span>'.T_('Featured Menu Tags').'</span> ';?></h2> +<h2><?php echo T_('Featured Menu Tags');?></h2> -<div id="maintagsmenu"><?php +<div id="maintagsmenu" +<?php echo 'title="'.T_('This menu is composed of keywords (tags) organized by admins.').'"'?>> + +<?php foreach($menu2Tags as $menu2Tag) { echo '<div dojoType="dojo.data.ItemFileReadStore" url="'.ROOT.'ajax/getadminlinkedtags.php?tag='.filter($menu2Tag, 'url').'" jsid="linkedTagStore" ></div>'; |