To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Changeset 4475

Show
Ignore:
Timestamp:
01/17/12 10:47:12 (4 months ago)
Author:
kerry
Message:

aPhotoGrid now has a placeholder state and more flexible styles.

Location:
plugins/apostropheExtraSlotsPlugin/trunk
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • plugins/apostropheExtraSlotsPlugin/trunk/modules/aPhotoGridSlot/templates/_three.php

    r4468 r4475  
    77  $title = count($items) > 1 ? __('Click For Next Image', null, 'apostrophe') : false; 
    88?> 
     9 
     10<?php if (!count($items)): ?> 
     11        <?php include_partial('aPhotoGridSlot/placeholder', array('columns' => 3, 'boxSize' => $options['gridWidth']/3 )) ?> 
     12<?php endif ?> 
    913 
    1014 
     
    3741  
    3842 <div class="a-grid-image"> 
    39    <a href="<?php echo $full ?>" rel="lightbox"><img src="<?php echo $thumbnail ?>" /></a> 
     43   <a href="<?php echo $full ?>" class="light-box"><img src="<?php echo $thumbnail ?>" /></a> 
    4044   <?php /* ?>  
    4145   $item->title 
  • plugins/apostropheExtraSlotsPlugin/trunk/web/css/aExtraSlots.less

    r4468 r4475  
    221221.a-slot.aPhotoGrid 
    222222{ 
     223  .a-photogrid-placeholder 
     224  { 
     225    display: block; 
     226    float: left; 
     227    width: 32.2%; 
     228    height: 32.2%; 
     229    margin: 0 1% 1% 0; 
     230    overflow: hidden; 
     231    background-color: #eee; 
     232     
     233    .pusher 
     234    { 
     235      span 
     236      { 
     237       display: block; 
     238       text-align: center; 
     239       width:95%; 
     240       float: left; 
     241       margin: 47% 0;         
     242      } 
     243    } 
     244  } 
     245   
    223246  .a-grid-image 
    224247  { 
    225248    float: left; 
    226     width: 28%; 
     249    width: 32.3%; 
    227250    margin: 0 1% 1% 0; 
    228251    &:last-child 
     
    232255    img 
    233256    { 
     257      width: 100%; 
    234258      max-width: 100%; 
    235259      height: auto;