Skip to content

Commit

Permalink
feature:2250
Browse files Browse the repository at this point in the history
Add warning icon and tiptip

git-svn-id: http://piwigo.org/svn/trunk@10113 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
patdenice committed Apr 6, 2011
1 parent 0ab5e51 commit 65988fe
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
Binary file added admin/themes/clear/icon/warning.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added admin/themes/default/icon/warning.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion admin/themes/default/template/plugins_list.tpl
Expand Up @@ -8,6 +8,11 @@ jQuery(document).ready(function() {
jQuery('.incompatible').click(function() {
return confirm(incompatible_msg);
});
jQuery('.warning').tipTip({
'delay' : 0,
'fadeIn' : 200,
'fadeOut' : 200
});
});
{/literal}{/footer_script}

Expand Down Expand Up @@ -42,7 +47,9 @@ jQuery(document).ready(function() {
<div class="pluginBox">
<table>
<tr>
<td class="pluginBoxNameCell">{$plugin.NAME}</td>
<td class="pluginBoxNameCell{if $plugin.INCOMPATIBLE} warning" title="{'WARNING! This plugin does not seem to be compatible with this version of Piwigo.'|@translate|@escape:'html'}{/if}">
{$plugin.NAME}
</td>
<td>{$plugin.DESC}</td>
</tr>
<tr>
Expand Down
6 changes: 6 additions & 0 deletions admin/themes/default/theme.css
Expand Up @@ -1043,3 +1043,9 @@ LEGEND {
#batchManagerGlobal .removeFilter span {display:none}
#batchManagerGlobal #applyFilterBlock {margin-top:20px;}
#batchManagerGlobal .useFilterCheckbox {display:none}

.warning {
background:url(icon/warning.png) no-repeat top left;
width: 130px;
padding-left: 20px;
}

0 comments on commit 65988fe

Please sign in to comment.