summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Noorenberghe <github@matthew.noorenberghe.com>2014-02-23 01:21:47 -0800
committerMatthew Noorenberghe <github@matthew.noorenberghe.com>2014-02-23 01:21:57 -0800
commit3e5ec7ae76dcb1b4a806b65f35bbaa00e8bdadf4 (patch)
tree7bc2c0f79c160224dcff94585617b3f1516314da
parent7348059e9ab05dcecb9f4dcffc9fbd3c28fae364 (diff)
downloadwebtrees-3e5ec7ae76dcb1b4a806b65f35bbaa00e8bdadf4.tar.gz
webtrees-3e5ec7ae76dcb1b4a806b65f35bbaa00e8bdadf4.tar.bz2
webtrees-3e5ec7ae76dcb1b4a806b65f35bbaa00e8bdadf4.zip
Remove ancient layer-background-color CSS property for Netscape
-rw-r--r--includes/functions/functions_edit.php2
-rw-r--r--reportengine.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/includes/functions/functions_edit.php b/includes/functions/functions_edit.php
index a974e7b2dd..4a095d5268 100644
--- a/includes/functions/functions_edit.php
+++ b/includes/functions/functions_edit.php
@@ -309,7 +309,7 @@ function remove_links($gedrec, $xref) {
function print_calendar_popup($id) {
return
' <a href="#" onclick="cal_toggleDate(\'caldiv'.$id.'\', \''.$id.'\'); return false;" class="icon-button_calendar" title="'.WT_I18N::translate('Select a date').'"></a>'.
- '<div id="caldiv'.$id.'" style="position:absolute;visibility:hidden;background-color:white;layer-background-color:white; z-index: 1000;"></div>';
+ '<div id="caldiv'.$id.'" style="position:absolute;visibility:hidden;background-color:white;z-index:1000;"></div>';
}
function print_addnewmedia_link($element_id) {
diff --git a/reportengine.php b/reportengine.php
index 302a928137..d22d421901 100644
--- a/reportengine.php
+++ b/reportengine.php
@@ -259,7 +259,7 @@ elseif ($action=='setup') {
echo print_findsource_link($input['name']);
} elseif ($input['lookup']=='DATE') {
echo ' <a href="#" onclick="cal_toggleDate(\'div_', WT_Filter::EscapeJs($input['name']), '\', \'', WT_Filter::EscapeJs($input['name']), '\'); return false;" class="icon-button_calendar" title="', WT_I18N::translate('Select a date'), '"></a>';
- echo '<div id="div_', WT_Filter::EscapeHtml($input['name']), '" style="position:absolute;visibility:hidden;background-color:white;layer-background-color:white;"></div>';
+ echo '<div id="div_', WT_Filter::EscapeHtml($input['name']), '" style="position:absolute;visibility:hidden;background-color:white;"></div>';
}
}
echo '</td></tr>';