From: Meik S. <acy...@ph...> - 2009-08-20 12:21:41
|
Author: acydburn Date: Thu Aug 20 13:20:37 2009 New Revision: 10030 Log: If style authors want to, they can show a feed icon for every forum enabled to show feeds. This is commented out by default Added: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/images/feed.gif (with props) Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forumlist_body.html branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/bidi.css branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/links.css Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forumlist_body.html ============================================================================== *** branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forumlist_body.html (original) --- branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forumlist_body.html Thu Aug 20 13:20:37 2009 *************** *** 27,32 **** --- 27,34 ---- <li class="row"> <dl class="icon" style="background-image: url({forumrow.FORUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;"> <dt title="{forumrow.FORUM_FOLDER_IMG_ALT}"> + <!-- IF S_ENABLE_FEEDS and forumrow.S_FEED_ENABLED --><!-- <a class="feed-icon-forum" title="{L_FEED} - {forumrow.FORUM_NAME}" href="{U_FEED}?f={forumrow.FORUM_ID}"><img src="{T_THEME_PATH}/images/feed.gif" title="{L_FEED} - {forumrow.FORUM_NAME}" /></a> --><!-- ENDIF --> + <!-- IF forumrow.FORUM_IMAGE --><span class="forum-image">{forumrow.FORUM_IMAGE}</span><!-- ENDIF --> <a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a><br /> {forumrow.FORUM_DESC} Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/bidi.css ============================================================================== *** branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/bidi.css (original) --- branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/bidi.css Thu Aug 20 13:20:37 2009 *************** *** 244,249 **** --- 244,253 ---- left: 0; } + .rtl a.feed-icon-forum { + float: left; + } + /** * content.css */ Added: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/images/feed.gif ============================================================================== Binary file - no diff available. Propchange: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/images/feed.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/links.css ============================================================================== *** branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/links.css (original) --- branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/links.css Thu Aug 20 13:20:37 2009 *************** *** 205,207 **** --- 205,213 ---- left: -999px; width: 990px; } + + /* Feed icon in forumlist_body.html */ + a.feed-icon-forum { + float: right; + margin: 3px; + } |