diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-14 14:24:22 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-14 14:24:22 +0000 |
commit | e5238fc1a9b8857fbe4e6a5b0d66aa30e041dfa1 (patch) | |
tree | ddfb3ef3202b980687a763b5a2c079ab4e10eac7 | |
parent | 27c12a5c5331fef8c0e84b261b558809b364d896 (diff) | |
download | forums-e5238fc1a9b8857fbe4e6a5b0d66aa30e041dfa1.tar forums-e5238fc1a9b8857fbe4e6a5b0d66aa30e041dfa1.tar.gz forums-e5238fc1a9b8857fbe4e6a5b0d66aa30e041dfa1.tar.bz2 forums-e5238fc1a9b8857fbe4e6a5b0d66aa30e041dfa1.tar.xz forums-e5238fc1a9b8857fbe4e6a5b0d66aa30e041dfa1.zip |
fix display of underlying alternative text for ucp_pm_viewfolder (used li instead of div) as well as hiding overflow text.
git-svn-id: file:///svn/phpbb/trunk@8235 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_pm_message_header.html | 9 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/buttons.css | 3 |
2 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_pm_message_header.html b/phpBB/styles/prosilver/template/ucp_pm_message_header.html index 08cdc02d56..f9eb1cc102 100644 --- a/phpBB/styles/prosilver/template/ucp_pm_message_header.html +++ b/phpBB/styles/prosilver/template/ucp_pm_message_header.html @@ -7,17 +7,16 @@ <!-- IF FOLDER_STATUS and FOLDER_MAX_MESSAGES neq 0 --><p>{FOLDER_STATUS}</p><!-- ENDIF --> - <ul class="linklist"> - <!-- IF U_POST_REPLY_PM or U_POST_NEW_TOPIC or U_FORWARD_PM --> - <li class="buttons"> + <div class="buttons"> <!-- IF U_POST_REPLY_PM --><div class="pmreply-icon"><a title="{L_POST_REPLY_PM}" href="{U_POST_REPLY_PM}"><span></span>{L_POST_REPLY_PM}</a></div> <!-- ELSEIF U_POST_NEW_TOPIC --><div class="newpm-icon"><a href="{U_POST_NEW_TOPIC}" accesskey="n" title="{L_UCP_PM_COMPOSE}"><span></span>{L_UCP_PM_COMPOSE}</a></div><!-- ENDIF --> <!-- IF U_FORWARD_PM --><div class="forwardpm-icon"><a title="{L_POST_FORWARD_PM}" href="{U_FORWARD_PM}"><span></span>{L_FORWARD_PM}</a></div><!-- ENDIF --> - </li> + </div> <!-- ENDIF --> <!-- IF TOTAL_MESSAGES or S_VIEW_MESSAGE --> + <ul class="linklist"> <li class="rightside pagination"> <!-- IF S_VIEW_MESSAGE --><a class="{S_CONTENT_FLOW_BEGIN}" href="{U_CURRENT_FOLDER}">{L_RETURN_TO} {CUR_FOLDER_NAME}</a><!-- ENDIF --> <!-- IF FOLDER_CUR_MESSAGES neq 0 --> @@ -25,5 +24,5 @@ <!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> • <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> • <span>{PAGINATION}</span><!-- ELSE --> • {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF --> <!-- ENDIF --> </li> - <!-- ENDIF --> </ul> + <!-- ENDIF --> diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css index 33410c7f0a..6cffdc5930 100644 --- a/phpBB/styles/prosilver/theme/buttons.css +++ b/phpBB/styles/prosilver/theme/buttons.css @@ -24,12 +24,13 @@ height: 100%; background-position: 0 0; position: relative; + overflow: hidden; } /* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */ /*.buttons div span { display: none; }*/ /*.buttons div a:hover { background-image: none; }*/ -.buttons div span { position: absolute; width: 100%; height: 100%; cursor: pointer; } +.buttons div span { position: absolute; width: 100%; height: 100%; cursor: pointer;} .buttons div a:hover span { background-position: 0 100%; } /* Big button images */ |