Changeset 17008 for branches/2.4/admin


Ignore:
Timestamp:
Jul 25, 2012, 1:43:35 PM (12 years ago)
Author:
plg
Message:

feature 2693 added: automatically show link to caddie if caddie not empty

Location:
branches/2.4/admin/themes/default
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/admin/themes/default/template/admin.tpl

    r15230 r17008  
    4242        <li><a href="{$U_RECENT_SET}">{'Recent photos'|@translate}</a></li>
    4343        <li><a href="{$U_BATCH}">{'Batch Manager'|@translate}</a></li>
     44{if $NB_PHOTOS_IN_CADDIE > 0}
     45        <li><a href="{$U_CADDIE}">{'Caddie'|@translate}<span class="adminMenubarCounter">{$NB_PHOTOS_IN_CADDIE}</span></a></li>
     46{/if}
    4447      </ul>
    4548    </dd>
  • branches/2.4/admin/themes/default/theme.css

    r14546 r17008  
    11151115#wImg {max-height:100px;border:2px solid #ccc;margin-top:5px;}
    11161116#addWatermark {display:none;}
     1117
     1118.adminMenubarCounter {
     1119  background-color:#666;
     1120  color:white;
     1121  padding:1px 5px;
     1122  border-radius:10px;
     1123  -moz-border-radius:10px;
     1124  -webkit-border-radius:10px;
     1125  -border-radius:10px;
     1126  margin-left:5px;
     1127}
Note: See TracChangeset for help on using the changeset viewer.