diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-02-17 14:08:03 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-02-17 14:08:03 +0100 |
commit | 625a1f2b20e77cbec4dd36605d4d3bf6e3273928 (patch) | |
tree | 14cdccb6169b65d57892afd3542554ee288f31ab /phpBB | |
parent | 5e0b4e63d032151d230b6eb44ee107835af0712a (diff) | |
parent | c54c06e98cc39568c8259e74091ddddb36d2921c (diff) | |
download | forums-625a1f2b20e77cbec4dd36605d4d3bf6e3273928.tar forums-625a1f2b20e77cbec4dd36605d4d3bf6e3273928.tar.gz forums-625a1f2b20e77cbec4dd36605d4d3bf6e3273928.tar.bz2 forums-625a1f2b20e77cbec4dd36605d4d3bf6e3273928.tar.xz forums-625a1f2b20e77cbec4dd36605d4d3bf6e3273928.zip |
Merge remote-tracking branch 'cyberalien/ticket/10378' into develop
* cyberalien/ticket/10378:
[ticket/10378] Missing entries from imageset to css conversion
[ticket/10378] Imageset to css convertor typo
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/develop/imageset_to_css.php | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/en/stylesheet.css | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/phpBB/develop/imageset_to_css.php b/phpBB/develop/imageset_to_css.php index 3db005a054..d49fe9c741 100644 --- a/phpBB/develop/imageset_to_css.php +++ b/phpBB/develop/imageset_to_css.php @@ -10,7 +10,7 @@ $phpbb_root_path = '../'; $style = 'subsilver2'; $imageset_path = $phpbb_root_path . 'styles/' . $style . '/imageset'; -$theme_path = $phpbb_root_path . 'styles/' . $style . '/theme2'; +$theme_path = $phpbb_root_path . 'styles/' . $style . '/theme'; // Start output buffering ob_start(); diff --git a/phpBB/styles/prosilver/theme/en/stylesheet.css b/phpBB/styles/prosilver/theme/en/stylesheet.css index 62d6b86726..d17f9a5be4 100644 --- a/phpBB/styles/prosilver/theme/en/stylesheet.css +++ b/phpBB/styles/prosilver/theme/en/stylesheet.css @@ -11,6 +11,22 @@ ul.profile-icons li.pm-icon { width: 28px; height: 20px; } ul.profile-icons li.quote-icon { width: 54px; height: 20px; } ul.profile-icons li.edit-icon { width: 42px; height: 20px; } +/* Online image */ +.online { background-image: url("./icon_user_online.gif"); } + +/* Big button images */ +.reply-icon span { background-image: url("./button_topic_reply.gif"); } +.post-icon span { background-image: url("./button_topic_new.gif"); } +.locked-icon span { background-image: url("./button_topic_locked.gif"); } +.pmreply-icon span { background-image: url("./button_pm_reply.gif") ;} +.newpm-icon span { background-image: url("./button_pm_new.gif") ;} +.forwardpm-icon span { background-image: url("./button_pm_forward.gif") ;} + +/* Icon images */ +.pm-icon, .pm-icon a { background-image: url("./icon_contact_pm.gif"); } +.quote-icon, .quote-icon a { background-image: url("./icon_post_quote.gif"); } +.edit-icon, .edit-icon a { background-image: url("./icon_post_edit.gif"); } + /* EN Language Pack */ .imageset.icon_contact_pm { background-image: url("./icon_contact_pm.gif"); |