add infobox overlay, layout fixes
This commit is contained in:
parent
e8d0177dab
commit
5ede560f8c
14
functions.js
14
functions.js
|
@ -1319,6 +1319,14 @@ function leading_zero(p) {
|
|||
}
|
||||
|
||||
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');
|
||||
|
||||
|
@ -1375,6 +1383,12 @@ function infobox_submit_callback() {
|
|||
|
||||
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) {
|
||||
|
|
|
@ -260,7 +260,7 @@
|
|||
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>";
|
||||
|
||||
|
|
|
@ -234,7 +234,7 @@
|
|||
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>";
|
||||
|
||||
|
|
|
@ -212,9 +212,9 @@
|
|||
|
||||
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;
|
||||
|
||||
|
|
|
@ -131,6 +131,8 @@ window.onload = init;
|
|||
<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()">
|
||||
|
|
12
tt-rss.css
12
tt-rss.css
|
@ -1068,6 +1068,18 @@ a.cdmToggleLink:hover {
|
|||
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;
|
||||
|
|
|
@ -93,6 +93,8 @@
|
|||
<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);
|
||||
|
|
Loading…
Reference in New Issue