Changeset 11701
- Timestamp:
- Jul 10, 2011, 7:43:32 PM (13 years ago)
- Location:
- extensions/stripped
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/stripped/readme.txt
r11490 r11701 27 27 Changelog 28 28 --------- 29 30 *** version 1.4.0 31 32 - tables not in html code anymore thanks to flop25 33 - new HD picture link 29 34 30 35 *** version 1.3.12 -
extensions/stripped/template/picture_content.tpl
r9960 r11701 14 14 <div id="theImg" {if ($stripped.useNavigationArrows)}class="img_frame"{/if}> 15 15 {if ($stripped.useNavigationArrows) && ($DISPLAY_NAV_THUMB)} 16 {if isset($high)} 17 {if isset($pwghigh)}<a href="{$high.U_HIGH}" rel="shadowbox"> </a>{/if} 18 {if isset($winhigh)}<div onclick="openDisplayHigh('{$high.U_HIGH}');" class="hd_link"> </div>{/if} 19 {/if} 16 20 {if isset($previous)} 17 21 <a href="{$previous.U_IMG}" class="img_nav img_prev"> </a> … … 20 24 <a href="{$next.U_IMG}" class="img_nav img_next"> </a> 21 25 {/if} 26 <img src="{$SRC_IMG}" style="width:{$WIDTH_IMG}px;height:{$HEIGHT_IMG}px;" alt="{$ALT_IMG}"> 27 {else} 28 {if isset($pwghigh)}<a href="{$high.U_HIGH}" rel="shadowbox">{/if} 29 <img src="{$SRC_IMG}" style="width:{$WIDTH_IMG}px;height:{$HEIGHT_IMG}px;" alt="{$ALT_IMG}" {if isset($winhigh) }onclick="openDisplayHigh('{$high.U_HIGH}');" class="pointer"{/if} 30 {if isset($high)} 31 title="{'Click on the photo to see it in high definition'|@translate}" 32 {/if}> 33 {if isset($pwghigh)}</a>{/if} 22 34 {/if} 23 24 {if isset($pwghigh)}<a href="{$high.U_HIGH}" rel="shadowbox">{/if}25 <img src="{$SRC_IMG}" style="width:{$WIDTH_IMG}px;height:{$HEIGHT_IMG}px;" alt="{$ALT_IMG}" {if isset($winhigh) }onclick="openDisplayHigh('{$high.U_HIGH}');" class="pointer"{/if}26 {if isset($high)}27 title="{'Click on the photo to see it in high definition'|@translate}"28 {/if}>29 {if isset($pwghigh)}</a>{/if}30 35 </div> -
extensions/stripped/theme.css
r11652 r11701 229 229 border-radius:10px; 230 230 } 231 232 /* new css for links in album description */ 233 .additional_info p a {color:#ddd;} 234 .additional_info p a:hover {color:#fff;} 231 235 232 236 #content .content_block .additional_info p { … … 852 856 .img_next:hover { 853 857 background:transparent url(icon/img_next.png) no-repeat right center; 858 } 859 860 .hd_link { 861 position:absolute; 862 height:60%; 863 width:100%; 864 top:20%; 865 left:0; 866 display:block; 867 background:transparent url(icon/none.png) no-repeat center center; 868 cursor:pointer; 869 } 870 .hd_link:hover { 871 background:transparent url(icon/HD.png) no-repeat center center; 854 872 } 855 873
Note: See TracChangeset
for help on using the changeset viewer.