diff options
author | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-13 06:34:09 +0000 |
---|---|---|
committer | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-13 06:34:09 +0000 |
commit | 59c4fad29693584f44fe3acf4de12291c4d8f170 (patch) | |
tree | a9cc780ce9fb26938761d840e0b2158d620e1620 /phpBB/styles/prosilver | |
parent | bb43f8f0de7c1cdc640ddca980e089de695442bf (diff) | |
download | forums-59c4fad29693584f44fe3acf4de12291c4d8f170.tar forums-59c4fad29693584f44fe3acf4de12291c4d8f170.tar.gz forums-59c4fad29693584f44fe3acf4de12291c4d8f170.tar.bz2 forums-59c4fad29693584f44fe3acf4de12291c4d8f170.tar.xz forums-59c4fad29693584f44fe3acf4de12291c4d8f170.zip |
icon_back_top.gif wasn't imagesetified and was an ugly inlined image in viewtopic... bleurgh! :P
git-svn-id: file:///svn/phpbb/trunk@7353 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/imageset/imageset.cfg | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/links.css | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/styles/prosilver/imageset/imageset.cfg b/phpBB/styles/prosilver/imageset/imageset.cfg index 6af9ed56af..21dc56e00b 100644 --- a/phpBB/styles/prosilver/imageset/imageset.cfg +++ b/phpBB/styles/prosilver/imageset/imageset.cfg @@ -83,7 +83,7 @@ img_global_unread_locked_mine = announce_unread_locked_mine.gif*27*27 img_pm_read = topic_read.gif*27*27 img_pm_unread = topic_unread.gif*27*27 -img_icon_back_top = icon_back_top.gif +img_icon_back_top = icon_back_top.gif*11*11 img_icon_contact_aim = icon_contact_aim.gif*20*20 img_icon_contact_email = icon_contact_email.gif*20*20 diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 494686f419..c785d541e1 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -209,7 +209,7 @@ </dl> <!-- ENDIF --> - <div class="back2top"><a href="#wrap" title="{L_BACK_TO_TOP}"><img src="{T_IMAGESET_PATH}/icon_back_top.gif" alt="{L_BACK_TO_TOP}" /></a></div> + <div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div> <span class="corners-bottom"><span></span></span></div> </div> diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index c946a501ae..71ad7b4ec4 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -328,11 +328,11 @@ a.topictitle:active { /* Back to top of page */ a.top { - background-image: url("{T_IMAGESET_PATH}/images/top.gif"); + background-image: url("{IMG_ICON_BACK_TOP_SRC}"); } a.top2 { - background-image: url("{T_IMAGESET_PATH}/images/top.gif"); + background-image: url("{IMG_ICON_BACK_TOP_SRC}"); } /* Arrow links */ diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index c04d7f0420..733a3cc8d3 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -136,8 +136,8 @@ a.topictitle:active { a.top { background: none no-repeat 50% 50%; text-decoration: none; - width: 11px; - height: 11px; + width: {IMG_ICON_BACK_TOP_WIDTH}px; + height: {IMG_ICON_BACK_TOP_HEIGHT}px; display: block; float: right; overflow: hidden; |