diff options
| -rw-r--r-- | includes/functions/functions_print.php | 3 | ||||
| -rw-r--r-- | modules_v3/charts/module.php | 4 | ||||
| -rw-r--r-- | themes/clouds/style.css | 3 | ||||
| -rw-r--r-- | themes/colors/css/colors.css | 3 | ||||
| -rw-r--r-- | themes/fab/style.css | 3 | ||||
| -rw-r--r-- | themes/minimal/style.css | 3 | ||||
| -rw-r--r-- | themes/webtrees/style.css | 3 | ||||
| -rw-r--r-- | themes/xenea/style.css | 3 |
8 files changed, 9 insertions, 16 deletions
diff --git a/includes/functions/functions_print.php b/includes/functions/functions_print.php index 6aea6ed73b..99b854c342 100644 --- a/includes/functions/functions_print.php +++ b/includes/functions/functions_print.php @@ -138,9 +138,8 @@ function print_pedigree_person($person, $style=1, $count=0, $personcount="1") { $icons .= "<a href=\"javascript:;\""; $icons .= $mouseAction4; $icons .= "><img id=\"iconz-$boxID\" src=\"".$WT_IMAGES["zoomin"]."\" border=\"0\" alt=\"".WT_I18N::translate('Zoom in/out on this box.')."\" title=\"".WT_I18N::translate('Zoom in/out on this box.')."\" /></a>"; + $icons .= '<div class="itr"><img src="'.$WT_IMAGES['pedigree'].'" alt="" title="" /><div class="popup">'.$personlinks.'</div></div>'; } - - $icons .= '<div class="itr"><img src="'.$WT_IMAGES['pedigree'].'" alt="" title="" /><div class="popup">'.$personlinks.'</div></div>'; } else { if ($style==1) { $outBoxAdd .= "class=\"person_box$isF\" style=\"width: ".$bwidth."px; height: ".$bheight."px; overflow: hidden;\""; diff --git a/modules_v3/charts/module.php b/modules_v3/charts/module.php index dd37d7347d..b338386075 100644 --- a/modules_v3/charts/module.php +++ b/modules_v3/charts/module.php @@ -186,14 +186,14 @@ class charts_WT_Module extends WT_Module implements WT_Module_Block { if (safe_POST_bool('save')) { set_block_setting($block_id, 'details', safe_POST_bool('details')); - set_block_setting($block_id, 'type', safe_POST('type', array('pedigree', 'descendants', 'hourglass', 'treenav'), 'treenav')); + set_block_setting($block_id, 'type', safe_POST('type', array('pedigree', 'descendants', 'hourglass', 'treenav'), 'pedigree')); set_block_setting($block_id, 'pid', safe_POST('pid', WT_REGEX_XREF)); echo WT_JS_START, 'window.opener.location.href=window.opener.location.href;window.close();', WT_JS_END; exit; } $details=get_block_setting($block_id, 'details', false); - $type =get_block_setting($block_id, 'type', 'treenav'); + $type =get_block_setting($block_id, 'type', 'pedigree'); $pid =get_block_setting($block_id, 'pid', WT_USER_ID ? (WT_USER_GEDCOM_ID ? WT_USER_GEDCOM_ID : $PEDIGREE_ROOT_ID) : $PEDIGREE_ROOT_ID); if ($ENABLE_AUTOCOMPLETE) require WT_ROOT.'js/autocomplete.js.htm'; diff --git a/themes/clouds/style.css b/themes/clouds/style.css index 7eaa53ed56..e4321c43a0 100644 --- a/themes/clouds/style.css +++ b/themes/clouds/style.css @@ -1605,8 +1605,7 @@ margin: 0; top: 0; } -.user_favorites_block, -.charts_block .person_box, .charts_block .person_boxF, .charts_block .person_boxNN, +.user_favorites_block, .gedcom_favorites_block, #family_page .person_box, #family_page .person_boxF, #family_page .person_boxNN, #ancestry_chart .person_box, #ancestry_chart .person_boxF, #ancestry_chart .person_boxNN, #descendancy_chart .person_box, #descendancy_chart .person_boxF, #descendancy_chart .person_boxNN, diff --git a/themes/colors/css/colors.css b/themes/colors/css/colors.css index 963317f743..2ace6e6c7b 100644 --- a/themes/colors/css/colors.css +++ b/themes/colors/css/colors.css @@ -1554,8 +1554,7 @@ margin: 0; top: 0; } -.user_favorites_block, -.charts_block .person_box, .charts_block .person_boxF, .charts_block .person_boxNN, +.user_favorites_block, .gedcom_favorites_block, #family_page .person_box, #family_page .person_boxF, #family_page .person_boxNN, #ancestry_chart .person_box, #ancestry_chart .person_boxF, #ancestry_chart .person_boxNN, #descendancy_chart .person_box, #descendancy_chart .person_boxF, #descendancy_chart .person_boxNN, diff --git a/themes/fab/style.css b/themes/fab/style.css index 3290368e2c..60ef8f715f 100644 --- a/themes/fab/style.css +++ b/themes/fab/style.css @@ -986,8 +986,7 @@ dd { top: 0; } -.user_favorites_block, -.charts_block .person_box, .charts_block .person_boxF, .charts_block .person_boxNN, +.user_favorites_block, .gedcom_favorites_block, #family_page .person_box, #family_page .person_boxF, #family_page .person_boxNN, #ancestry_chart .person_box, #ancestry_chart .person_boxF, #ancestry_chart .person_boxNN, #descendancy_chart .person_box, #descendancy_chart .person_boxF, #descendancy_chart .person_boxNN, diff --git a/themes/minimal/style.css b/themes/minimal/style.css index be87ba4f69..2b5730ffd1 100644 --- a/themes/minimal/style.css +++ b/themes/minimal/style.css @@ -1366,8 +1366,7 @@ dd { top: 0; } -.user_favorites_block, -.charts_block .person_box, .charts_block .person_boxF, .charts_block .person_boxNN, +.user_favorites_block, .gedcom_favorites_block, #family_page .person_box, #family_page .person_boxF, #family_page .person_boxNN, #ancestry_chart .person_box, #ancestry_chart .person_boxF, #ancestry_chart .person_boxNN, #descendancy_chart .person_box, #descendancy_chart .person_boxF, #descendancy_chart .person_boxNN, diff --git a/themes/webtrees/style.css b/themes/webtrees/style.css index 8a9de9b62a..c0ccea7aa2 100644 --- a/themes/webtrees/style.css +++ b/themes/webtrees/style.css @@ -1309,8 +1309,7 @@ td.descriptionbox a {color:#fff;}/* this keeps the tag color the same when it i .block .itr, #family_page .itr, #ancestry_chart .itr, #descendancy_chart .itr, #familybook_chart .itr, #familybook_chart_rtl .itr, #hourglass_chart .itr, #hourglass_chart_rtl .itr, #relatives_content .itr {position:relative;top:0;} -.user_favorites_block, -.charts_block .person_box, .charts_block .person_boxF, .charts_block .person_boxNN, +.user_favorites_block, .gedcom_favorites_block, #family_page .person_box, #family_page .person_boxF, #family_page .person_boxNN, #ancestry_chart .person_box, #ancestry_chart .person_boxF, #ancestry_chart .person_boxNN, #descendancy_chart .person_box, #descendancy_chart .person_boxF, #descendancy_chart .person_boxNN, diff --git a/themes/xenea/style.css b/themes/xenea/style.css index 5c2d096def..f6e8026974 100644 --- a/themes/xenea/style.css +++ b/themes/xenea/style.css @@ -1637,8 +1637,7 @@ dd { top: 0; } -.user_favorites_block, -.charts_block .person_box, .charts_block .person_boxF, .charts_block .person_boxNN, +.user_favorites_block, .gedcom_favorites_block, #family_page .person_box, #family_page .person_boxF, #family_page .person_boxNN, #ancestry_chart .person_box, #ancestry_chart .person_boxF, #ancestry_chart .person_boxNN, #descendancy_chart .person_box, #descendancy_chart .person_boxF, #descendancy_chart .person_boxNN, |
