mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-05 05:55:15 +02:00
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
This commit is contained in:
parent
bb43f8f0de
commit
59c4fad296
@ -997,6 +997,7 @@ if (version_compare($current_version, '3.0.b5', '<='))
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_read', 'topic_read.gif', '', 27, 27, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_unread', 'topic_unread.gif', '', 27, 27, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_back_top', 'icon_back_top.gif', '', 11, 11, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_aim', 'icon_contact_aim.gif', '', 20, 20, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_email', 'icon_contact_email.gif', '', 20, 20, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_icq', 'icon_contact_icq.gif', '', 20, 20, 1);
|
||||
|
@ -515,6 +515,7 @@ INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang,
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_read', 'topic_read.gif', '', 27, 27, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_unread', 'topic_unread.gif', '', 27, 27, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_back_top', 'icon_back_top.gif', '', 11, 11, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_aim', 'icon_contact_aim.gif', '', 20, 20, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_email', 'icon_contact_email.gif', '', 20, 20, 1);
|
||||
INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_icq', 'icon_contact_icq.gif', '', 20, 20, 1);
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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 */
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user