Changeset 12893 for extensions
- Timestamp:
- Jan 15, 2012, 5:13:52 PM (13 years ago)
- Location:
- extensions/stripped
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/stripped/lowercase.css
r10688 r12893 1 #the_page , input, select, textarea, file{1 #the_page { 2 2 text-transform:lowercase; 3 3 } -
extensions/stripped/readme.txt
r12659 r12893 31 31 Changelog 32 32 --------- 33 34 *** version 2.0.4 35 36 - several small bug fixes 33 37 34 38 *** version 2.0.3 -
extensions/stripped/template/picture.tpl
r12547 r12893 105 105 106 106 {assign var='showTitle' value=false} 107 {if ($SHOW_PICTURE_NAME_ON_TITLE && (isset($COMMENT_IMG) || (($stripped.imageCaption != 'description') )))}107 {if isset($COMMENT_IMG) and $stripped.imageCaption == 'description'} 108 108 {assign var='showTitle' value=true} 109 109 {/if} 110 111 {php} 112 global $pwg_loaded_plugins; 113 $this->assign('usertags', (isset($pwg_loaded_plugins[ 'user_tags' ]))); 114 {/php} 110 {if isset($current.TITLE) and $stripped.imageCaption == 'title'} 111 {assign var='showTitle' value=true} 112 {/if} 113 114 {php} 115 global $pwg_loaded_plugins; 116 $this->assign('usertags', (isset($pwg_loaded_plugins[ 'user_tags' ]))); 117 {/php} 115 118 116 119 <div id="theImageAndTitle"> … … 129 132 <div id="imageTitleContainer"><div id="imageTitle"> 130 133 {if ($stripped.imageCaption == 'description' )} 131 {$COMMENT_IMG |strip_tags:false}134 {$COMMENT_IMG} 132 135 {/if} 133 136 {if ($stripped.imageCaption == 'title' )} -
extensions/stripped/template/thumbnails.tpl
r12321 r12893 10 10 <span class="wrap1"> 11 11 <span class="wrap2 {if !($stripped.showThumbLegend)}wrap2full{/if}"> 12 <a href="{$thumbnail.URL}"> 12 <a href="{$thumbnail.URL}"><div class="thumbframe"><div class="thumbpos"> 13 13 <img class="thumbnail" src="{$thumbnail.TN_SRC}" alt="{$thumbnail.TN_ALT}" {if ((isset($thumbnail.NAME))&!($downloadMulti_loaded))}title="{$thumbnail.NAME}"{else}title="{$thumbnail.TN_TITLE}"{/if} /> 14 14 {if (isset($stripped.imagePreload) & isset($stripped.imagePreloadThumbs))}<div class="preload" style="display:none;">{$thumbnail.FILE_PATH}</div>{/if} 15 </ a>15 </div></div></a> 16 16 </span> 17 17 <span class="thumbLegend {if !($stripped.showThumbLegend)}noLegend{/if}"> 18 {if isset($thumbnail.NAME)}{$thumbnail.NAME}{/if}18 <span class="thumbCaption">{if isset($thumbnail.NAME)}{$thumbnail.NAME}{/if}</span> 19 19 {if !empty($thumbnail.icon_ts)} 20 20 <img title="{$thumbnail.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent.png" class="icon" alt="(!)"> -
extensions/stripped/theme-black.css
r12659 r12893 419 419 #thePicturePage .stuffs_block { display: none;} 420 420 421 /* No Thumb Fra nce CSS------------------------------------------------------------------------- */421 /* No Thumb Frame CSS -------------------------------------------------------------------------- */ 422 422 423 423 .ntf .stuffs_block .personal_block ul.thumbnailCategories li, … … 455 455 background: none; 456 456 } 457 458 /* Misc ---------------------------------------------------------------------------------------- */ 459 460 #thePicturePage .Online { display: none;} -
extensions/stripped/theme-white.css
r12659 r12893 460 460 #thePicturePage .stuffs_block { display: none;} 461 461 462 /* No Thumb Fra nce CSS------------------------------------------------------------------------- */462 /* No Thumb Frame CSS -------------------------------------------------------------------------- */ 463 463 464 464 .ntf .stuffs_block .personal_block ul.thumbnailCategories li, … … 496 496 background: none; 497 497 } 498 499 /* Misc ---------------------------------------------------------------------------------------- */ 500 501 #thePicturePage .Online { display: none;} -
extensions/stripped/theme.css
r12659 r12893 42 42 43 43 #theHeader, 44 #username,45 #comments blockquote,44 .comment blockquote, 45 .comment .author, 46 46 #contenteditid, 47 47 .additional_info,
Note: See TracChangeset
for help on using the changeset viewer.