1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/10270] Renamed the CSS class "jalert" to "phpbb_alert".

PHPBB3-10270
This commit is contained in:
Callum Macrae
2011-09-25 18:12:34 +01:00
committed by Igor Wiedler
parent db7c4f938e
commit ba817086f8
3 changed files with 19 additions and 14 deletions

View File

@@ -30,15 +30,15 @@
<div class="jalert" id="loadingalert"><h3>{L_LOADING}</h3><p>{L_PLEASE_WAIT}</p></div>
</div>
<div id="jalert_alert" class="jalert">
<div id="phpbb_alert" class="phpbb_alert">
<a href="#"><img src="{T_THEME_PATH}/images/alert_close.png" class="alert_close" /></a>
<h3></h3><p></p>
</div>
<div id="jalert_confirm" class="jalert">
<div id="phpbb_confirm" class="phpbb_alert">
<a href="#"><img src="{T_THEME_PATH}/images/alert_close.png" class="alert_close" /></a>
<p></p>
<input type="button" class="jalertbut button1" value="Yes" />&nbsp;
<input type="button" class="jalertbut button2" value="No" />
<input type="button" class="button1" value="{L_YES}" />&nbsp;
<input type="button" class="button2" value="{L_NO}" />
</div>
</div>

View File

@@ -590,7 +590,7 @@ li.pagination {
/* jQuery popups
---------------------------------------- */
.jalert {
.phpbb_alert {
background-color: #FFFFFF;
border: 1px solid #999999;
position: fixed;
@@ -603,13 +603,13 @@ li.pagination {
padding: 0 25px 20px 25px;
}
.jalert img.alert_close {
.phpbb_alert img.alert_close {
float: right;
margin-top: -7px;
margin-right: -30px;
}
.jalert p {
.phpbb_alert p {
margin: 8px 0;
padding-bottom: 8px;
}