diff options
-rw-r--r-- | phpBB/adm/images/alert_close.png | bin | 0 -> 669 bytes | |||
-rw-r--r-- | phpBB/adm/style/admin.css | 10 | ||||
-rw-r--r-- | phpBB/adm/style/overall_footer.html | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/phpBB/adm/images/alert_close.png b/phpBB/adm/images/alert_close.png Binary files differnew file mode 100644 index 0000000000..123ac4ac90 --- /dev/null +++ b/phpBB/adm/images/alert_close.png diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 70c06f2d62..01af071766 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1072,7 +1072,7 @@ input.disabled { /* jQuery popups ---------------------------------------- */ -.jalert { +.phpbb_alert { background-color: #FFFFFF; border: 1px solid #999999; position: fixed; @@ -1085,7 +1085,13 @@ input.disabled { padding: 0 25px 20px 25px; } -.jalert p { +.phpbb_alert img.alert_close { + float: right; + margin-top: -7px; + margin-right: -30px; +} + +.phpbb_alert p { margin: 8px 0; padding-bottom: 8px; } diff --git a/phpBB/adm/style/overall_footer.html b/phpBB/adm/style/overall_footer.html index d58ac06aaa..5daaa4c6db 100644 --- a/phpBB/adm/style/overall_footer.html +++ b/phpBB/adm/style/overall_footer.html @@ -24,11 +24,11 @@ </div> <div id="phpbb_alert" class="phpbb_alert"> - <a href="#"><img src="{T_THEME_PATH}/images/alert_close.png" class="alert_close" /></a> + <a href="#"><img src="images/alert_close.png" class="alert_close" /></a> <h3 class="alert_title"></h3><p class="alert_text"></p> </div> <div id="phpbb_confirm" class="phpbb_alert"> - <a href="#"><img src="{T_THEME_PATH}/images/alert_close.png" class="alert_close" /></a> + <a href="#"><img src="images/alert_close.png" class="alert_close" /></a> <p class="alert_text"></p> <input type="button" class="button1" value="{L_YES}" /> <input type="button" class="button2" value="{L_NO}" /> |