diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-02-23 14:28:35 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-02-23 14:28:35 +0000 |
| commit | af28dc5d24bfe39e427df2e723fe8d5bcd1fe032 (patch) | |
| tree | 2aa6841ad72f8c39d218c0bdf74521b20151dee3 | |
| parent | 0f664db22028ee587b83c5a1442390630e258043 (diff) | |
| parent | 3e5ec7ae76dcb1b4a806b65f35bbaa00e8bdadf4 (diff) | |
| download | webtrees-af28dc5d24bfe39e427df2e723fe8d5bcd1fe032.tar.gz webtrees-af28dc5d24bfe39e427df2e723fe8d5bcd1fe032.tar.bz2 webtrees-af28dc5d24bfe39e427df2e723fe8d5bcd1fe032.zip | |
Merge pull request #111 from mnoorenberghe/layer_background
Remove ancient layer-background-color CSS property for Netscape
| -rw-r--r-- | includes/functions/functions_edit.php | 2 | ||||
| -rw-r--r-- | reportengine.php | 2 |
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>'; |
