diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-02-28 00:07:59 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2011-02-28 00:07:59 +0100 |
commit | ab3f45c0e9c2f96c3b4c5fa17c4f460aa2a2d200 (patch) | |
tree | d8ca15ef2fff63547bc0b5c0d98edc06fac2c06d /phpBB/styles/prosilver/template/ucp_main_front.html | |
parent | f49b8a0e3eb7b0caad763e5bab4c846ce17204b0 (diff) | |
parent | 39a26785bb6669633969a7af01d1422e289e7b3f (diff) | |
download | forums-ab3f45c0e9c2f96c3b4c5fa17c4f460aa2a2d200.tar forums-ab3f45c0e9c2f96c3b4c5fa17c4f460aa2a2d200.tar.gz forums-ab3f45c0e9c2f96c3b4c5fa17c4f460aa2a2d200.tar.bz2 forums-ab3f45c0e9c2f96c3b4c5fa17c4f460aa2a2d200.tar.xz forums-ab3f45c0e9c2f96c3b4c5fa17c4f460aa2a2d200.zip |
Merge branch 'ticket/hanakin/10001' into develop
* ticket/hanakin/10001:
[ticket/10001] Created the new styles within colours.css to handle the displaying of the forum & topic images
[ticket/10001] Created new Template variable to house class names based on $folder_img value, Modified prosilver template files to utilize class for forum & topic images through out template via the newly created Template variable, Created the new styles within colours.css to handle the displaying of the forum & topic images
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_main_front.html')
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_main_front.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_main_front.html b/phpBB/styles/prosilver/template/ucp_main_front.html index 6c9c46c9cf..68f89edf12 100644 --- a/phpBB/styles/prosilver/template/ucp_main_front.html +++ b/phpBB/styles/prosilver/template/ucp_main_front.html @@ -13,7 +13,7 @@ <ul class="topiclist cplist"> <!-- BEGIN topicrow --> <li class="row<!-- IF topicrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->"> - <dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;"> + <dl class="icon {topicrow.TOPIC_IMG_STYLE}"> <dt <!-- IF topicrow.TOPIC_ICON_IMG -->style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF -->> <!-- IF topicrow.S_UNREAD --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a><br /> <!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF --> |