From: <for...@us...> - 2012-08-08 09:31:46
|
Revision: 10036 http://xoops.svn.sourceforge.net/xoops/?rev=10036&view=rev Author: forxoops Date: 2012-08-08 09:31:40 +0000 (Wed, 08 Aug 2012) Log Message: ----------- Change tooltip icons for admin side Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/icons.html Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/icons.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/icons.html 2012-08-08 09:21:51 UTC (rev 10035) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/icons.html 2012-08-08 09:31:40 UTC (rev 10036) @@ -2,13 +2,15 @@ <ul class="nav nav-pills pull-right"> <{foreach item=op from=$mod_options}> <li> - <a class="xo-tooltip" href="<{$op.link}>" title="<{$op.title}>"> + <a class="xo-tooltip" href="<{$op.link}>" title="<strong><{$op.title}></strong><br/><{$op.desc}>"> <img src='<{$op.icon|default:"$theme_icons/icon_options.png"}>' alt="<{$op.title}>"/> </a></li> <{/foreach}> <{foreach item=plug from=$extension_mod}> <li> - <a class="xo-tooltip" href="<{$xoops_url}>/modules/<{$plug->getInfo('dirname')}>/<{$plug->getInfo('adminindex')}>" title="<{$plug->getInfo('name')}>"> + <a class="xo-tooltip" + href="<{$xoops_url}>/modules/<{$plug->getInfo('dirname')}>/<{$plug->getInfo('adminindex')}>" + title="<strong><{$plug->getInfo('name')}></strong><br/><{$plug->getInfo('description')}>"> <img src="<{$plug->getInfo('logo_large')}>" alt="<{$plug->getInfo('name')}>"/> </a></li> <{/foreach}> @@ -16,20 +18,22 @@ <li> <a class="xo-tooltip" href="<{$xoops_url}>/modules/system/admin.php?fct=preferences&op=showmod&mod=<{$modid}>" - title="<{$smarty.const._OXYGEN_SITEPREF}>"> + title="<strong><{$smarty.const._OXYGEN_SITEPREF}></strong>"> <img src="<{$theme_icons}>/prefs.png" alt="<{$smarty.const._OXYGEN_SITEPREF}>"/> </a> </li> <{/if}> <{if $moddir == 'system' && $mod_options}> <li> - <a class="xo-tooltip" href="<{xoAppUrl modules/system/admin.php}>" title="<{$smarty.const._AM_SYSTEM_CONFIG}>"> + <a class="xo-tooltip" href="<{xoAppUrl modules/system/admin.php}>" + title="<b><{$smarty.const._AM_SYSTEM_CONFIG}></b>"> <img src='<{"$theme_icons/configuration.png"}>' alt="<{$smarty.const._AM_SYSTEM_CONFIG}>"/> </a> </li> <{/if}> <li> - <a class="xo-tooltip" href="<{xoAppUrl modules/system/help.php}>" title="<{$smarty.const._AM_SYSTEM_HELP}>"> + <a class="xo-tooltip" href="<{xoAppUrl modules/system/help.php}>" + title="<strong><{$smarty.const._AM_SYSTEM_HELP}></strong>"> <img src='<{"$theme_icons/help.png"}>' alt="<{$smarty.const._AM_SYSTEM_HELP}>"/> </a> </li> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |