Changeset 10113


Ignore:
Timestamp:
Apr 6, 2011, 6:01:21 PM (13 years ago)
Author:
patdenice
Message:

feature:2250
Add warning icon and tiptip

Location:
trunk/admin/themes
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes/default/template/plugins_list.tpl

    r10100 r10113  
    88  jQuery('.incompatible').click(function() {
    99    return confirm(incompatible_msg);
     10  });
     11  jQuery('.warning').tipTip({
     12    'delay' : 0,
     13    'fadeIn' : 200,
     14    'fadeOut' : 200
    1015  });
    1116});
     
    4348    <table>
    4449      <tr>
    45         <td class="pluginBoxNameCell">{$plugin.NAME}</td>
     50        <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}">
     51          {$plugin.NAME}
     52        </td>
    4653        <td>{$plugin.DESC}</td>
    4754      </tr>
  • trunk/admin/themes/default/theme.css

    r9951 r10113  
    10441044#batchManagerGlobal #applyFilterBlock {margin-top:20px;}
    10451045#batchManagerGlobal .useFilterCheckbox {display:none}
     1046
     1047.warning {
     1048  background:url(icon/warning.png) no-repeat top left;
     1049  width: 130px;
     1050  padding-left: 20px;
     1051}
Note: See TracChangeset for help on using the changeset viewer.