}
function closeInfoBox(cleanup) {
+
+ if (!is_msie()) {
+ var overlay = document.getElementById("dialog_overlay");
+ if (overlay) {
+ overlay.style.display = "none";
+ }
+ }
+
var box = document.getElementById('infoBox');
var shadow = document.getElementById('infoBoxShadow');
function infobox_callback() {
if (xmlhttp.readyState == 4) {
+ var overlay = document.getElementById("dialog_overlay");
+
+ if (overlay) {
+ overlay.style.display = "block";
+ }
+
var box = document.getElementById('infoBox');
var shadow = document.getElementById('infoBoxShadow');
if (box) {
print "<tr class=\"title\">
<td align='center' width=\"5%\"> </td>
<td width=\"20%\"><a href=\"javascript:updateFilterList('reg_exp')\">".__('Filter expression')."</a></td>
- <td width=\"20%\"><a href=\"javascript:updateFilterList('feed_title')\">".__('Feed')."</a></td>
+ <td width=\"\"><a href=\"javascript:updateFilterList('feed_title')\">".__('Feed')."</a></td>
<td width=\"15%\"><a href=\"javascript:updateFilterList('filter_type')\">".__('Match')."</a></td>
<td width=\"15%\"><a href=\"javascript:updateFilterList('action_description')\">".__('Action')."</a></td>";
print "<tr class=\"title\">
<td width=\"5%\"> </td>
<td width=\"30%\"><a href=\"javascript:updateLabelList('description')\">".__('Caption')."</a></td>
- <td width=\"50%\"><a href=\"javascript:updateLabelList('sql_exp')\">".__('SQL Expression')."</a>
+ <td width=\"\"><a href=\"javascript:updateLabelList('sql_exp')\">".__('SQL Expression')."</a>
</td>
</tr>";
print "<tr class=\"title\">
<td align='center' width=\"5%\"> </td>
- <td width='40%'><a href=\"javascript:updateUsersList('login')\">".__('Login')."</a></td>
- <td width='40%'><a href=\"javascript:updateUsersList('access_level')\">".__('Access Level')."</a></td>
- <td width='30%'><a href=\"javascript:updateUsersList('last_login')\">".__('Last login')."</a></td></tr>";
+ <td width=''><a href=\"javascript:updateUsersList('login')\">".__('Login')."</a></td>
+ <td width='20%'><a href=\"javascript:updateUsersList('access_level')\">".__('Access Level')."</a></td>
+ <td width='20%'><a href=\"javascript:updateUsersList('last_login')\">".__('Last login')."</a></td></tr>";
$lnum = 0;
<div id="notify" class="notify"><span id="notify_body"> </span></div>
<div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
+<div id="dialog_overlay"> </div>
+
<div id="prefFooter">
<?php if (defined('_DEBUG_USER_SWITCH')) { ?>
<select id="userSwitch" onchange="userSwitch()">
font-size : 8pt;
}
+#dialog_overlay {
+ background : white;
+ left : 0;
+ top : 0;
+ height : 100%;
+ width : 100%;
+ z-index : 2;
+ opacity : 0.5;
+ position : absolute;
+ display : none;
+}
+
#overlay {
background : white;
left : 0;
<div id="fatal_error_msg">Unknown Error</div>
</div></div>
+<div id="dialog_overlay"> </div>
+
<script type="text/javascript">
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, null);