summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--medialist.php2
-rw-r--r--notelist.php6
-rw-r--r--repolist.php6
-rw-r--r--sourcelist.php6
-rw-r--r--themes/clouds/style.css2
-rw-r--r--themes/colors/css/colors.css2
-rw-r--r--themes/fab/style.css2
-rw-r--r--themes/minimal/style.css2
-rw-r--r--themes/webtrees/style.css2
-rw-r--r--themes/xenea/style.css2
10 files changed, 19 insertions, 13 deletions
diff --git a/medialist.php b/medialist.php
index a80736f99b..26708dd1bc 100644
--- a/medialist.php
+++ b/medialist.php
@@ -170,7 +170,7 @@ if ($build == 'yes') {
$controller->pageHeader();
-echo '<div class="center"><h2>', $controller->getPageTitle(), '</h2></div>';
+echo '<div id="media-list-page"><h2>', $controller->getPageTitle(), '</h2></div>';
if (WT_USE_LIGHTBOX) {
require WT_ROOT.WT_MODULES_DIR.'lightbox/functions/lb_call_js.php';
}
diff --git a/notelist.php b/notelist.php
index 0ae9dfe285..089d240e00 100644
--- a/notelist.php
+++ b/notelist.php
@@ -31,5 +31,7 @@ $controller=new WT_Controller_Base();
$controller->setPageTitle(WT_I18N::translate('Shared notes'));
$controller->pageHeader();
-echo '<h2>', WT_I18N::translate('Shared notes'), '</h2>';
-print_note_table(get_note_list(WT_GED_ID));
+echo '<div id="note-list-page">',
+ '<h2>', WT_I18N::translate('Shared notes'), '</h2>';
+ print_note_table(get_note_list(WT_GED_ID));
+echo '</div>';
diff --git a/repolist.php b/repolist.php
index 4157598f92..3297822073 100644
--- a/repolist.php
+++ b/repolist.php
@@ -31,5 +31,7 @@ $controller=new WT_Controller_Base();
$controller->setPageTitle(WT_I18N::translate('Repositories'));
$controller->pageHeader();
-echo '<h2>', WT_I18N::translate('Repositories'), '</h2>';
-print_repo_table(get_repo_list(WT_GED_ID));
+echo '<div id="repo-list-page">',
+ '<h2>', WT_I18N::translate('Repositories'), '</h2>';
+ print_repo_table(get_repo_list(WT_GED_ID));
+echo '</div>';
diff --git a/sourcelist.php b/sourcelist.php
index c84e852ffc..76ec9ec9b0 100644
--- a/sourcelist.php
+++ b/sourcelist.php
@@ -31,5 +31,7 @@ $controller=new WT_Controller_Base();
$controller->setPageTitle(WT_I18N::translate('Sources'));
$controller->pageHeader();
-echo '<h2>', WT_I18N::translate('Sources'), '</h2>';
-print_sour_table(get_source_list(WT_GED_ID));
+echo '<div id="source-list-page">',
+ '<h2>', WT_I18N::translate('Sources'), '</h2>';
+ print_sour_table(get_source_list(WT_GED_ID));
+echo '</div>';
diff --git a/themes/clouds/style.css b/themes/clouds/style.css
index 4c2b233536..77788b554d 100644
--- a/themes/clouds/style.css
+++ b/themes/clouds/style.css
@@ -1882,7 +1882,7 @@ html[dir='rtl'] .DataTables_sort_wrapper span {left:auto; right:0; margin-right:
.indi-list .stats, .fam-list .stats {margin:0 auto; width:auto;}
.source-list th, .note-list th, .repo-list th, .media-list th, .indi-list th, .fam-list th, .recent_changes_block th, .upcoming_events_block th, .todays_events_block th, .todo_block th, .yahrzeit_block th {cursor:pointer; white-space: nowrap;}
.source-list th:last-child, .note-list th:last-child, .repo-list th:last-child {margin:0 -2px 1px 1px; padding:3px 0 4px; width:24px;}
-#source-details h2, #note-details h2, #repo-details h2, #media-details h2 {margin-bottom:20px; text-align:center;}
+#source-details h2,#source-list-page h2, #note-details h2, #note-list-page h2, #repo-details h2, #repo-list-page h2, #media-details h2, #media-list-page h2 {margin-bottom:20px; text-align:center;}
#source-tabs, #note-tabs, #repo-tabs, #media-tabs {margin:auto; visibility:hidden; width:80%;}
#source-edit, #note-edit, #repo-edit, #media-edit {overflow-x:auto;}
.media-list td img {display:block; height:40px; margin:3px auto;}
diff --git a/themes/colors/css/colors.css b/themes/colors/css/colors.css
index 5c9bfe6061..5c706bdcad 100644
--- a/themes/colors/css/colors.css
+++ b/themes/colors/css/colors.css
@@ -1854,7 +1854,7 @@ html[dir='rtl'] .DataTables_sort_wrapper span {left:auto; right:0; margin-right:
.indi-list .stats, .fam-list .stats {margin:0 auto; width:auto;}
.source-list th, .note-list th, .repo-list th, .media-list th, .indi-list th, .fam-list th, .recent_changes_block th, .upcoming_events_block th, .todays_events_block th, .todo_block th, .yahrzeit_block th {cursor:pointer; white-space:nowrap;}
.source-list th:last-child, .note-list th:last-child, .repo-list th:last-child {margin:0 -2px 1px 1px; padding:3px 0 4px; width:24px;}
-#source-details h2, #note-details h2, #repo-details h2, #media-details h2 {margin-bottom:20px; text-align:center;}
+#source-details h2,#source-list-page h2, #note-details h2, #note-list-page h2, #repo-details h2, #repo-list-page h2, #media-details h2, #media-list-page h2 {margin-bottom:20px; text-align:center;}
#source-tabs, #note-tabs, #repo-tabs, #media-tabs {margin:auto; visibility:hidden; width:80%;}
#source-edit, #note-edit, #repo-edit, #media-edit {overflow-x:auto;}
.media-list td img {display:block; height:40px; margin:3px auto;}
diff --git a/themes/fab/style.css b/themes/fab/style.css
index fff2b94631..6873b511c1 100644
--- a/themes/fab/style.css
+++ b/themes/fab/style.css
@@ -1274,7 +1274,7 @@ html[dir='rtl'] .DataTables_sort_wrapper span {left:auto; right:0; margin-right:
.indi-list .stats, .fam-list .stats {margin:0 auto; width:auto;}
.source-list th, .note-list th, .repo-list th, .media-list th, .indi-list th, .fam-list th, .recent_changes_block th, .upcoming_events_block th, .todays_events_block th, .todo_block th, .yahrzeit_block th {cursor:pointer; white-space:nowrap;}
.source-list th:last-child, .note-list th:last-child, .repo-list th:last-child {margin:0 -2px 1px 1px; padding:3px 0 4px; width:24px;}
-#source-details h2, #note-details h2, #repo-details h2, #media-details h2 {margin-bottom:20px; text-align:center;}
+#source-details h2,#source-list-page h2, #note-details h2, #note-list-page h2, #repo-details h2, #repo-list-page h2, #media-details h2, #media-list-page h2 {margin-bottom:20px; text-align:center;}
#source-tabs, #note-tabs, #repo-tabs, #media-tabs {margin:auto; visibility:hidden; width:80%;}
#source-edit, #note-edit, #repo-edit, #media-edit {overflow-x:auto;}
.media-list td img {display:block; height:40px; margin:3px auto;}
diff --git a/themes/minimal/style.css b/themes/minimal/style.css
index 319f8fdec6..f0a064a9a0 100644
--- a/themes/minimal/style.css
+++ b/themes/minimal/style.css
@@ -1668,7 +1668,7 @@ html[dir='rtl'] .DataTables_sort_wrapper span {left:auto; right:0; margin-right:
.indi-list .stats, .fam-list .stats {margin:0 auto; width:auto;}
.source-list th, .note-list th, .repo-list th, .media-list th, .indi-list th, .fam-list th, .recent_changes_block th, .upcoming_events_block th, .todays_events_block th, .todo_block th, .yahrzeit_block th {cursor:pointer; white-space: nowrap;}
.source-list th:last-child, .note-list th:last-child, .repo-list th:last-child {margin:0 -2px 1px 1px; padding:3px 0 4px; width:24px;}
-#source-details h2, #note-details h2, #repo-details h2, #media-details h2 {margin-bottom:20px; text-align:center;}
+#source-details h2,#source-list-page h2, #note-details h2, #note-list-page h2, #repo-details h2, #repo-list-page h2, #media-details h2, #media-list-page h2 {margin-bottom:20px; text-align:center;}
#source-tabs, #note-tabs, #repo-tabs, #media-tabs {margin:auto; visibility:hidden; width:80%;}
#source-edit, #note-edit, #repo-edit, #media-edit {overflow-x:auto;}
.media-list td img {display:block; height:40px; margin:3px auto;}
diff --git a/themes/webtrees/style.css b/themes/webtrees/style.css
index d42c487c82..9a530ea9d3 100644
--- a/themes/webtrees/style.css
+++ b/themes/webtrees/style.css
@@ -1338,7 +1338,7 @@ html[dir='rtl'] .itr:hover .popup {left:0; right:auto;}
.indi-list .stats, .fam-list .stats {margin:0 auto; width:auto;}
.source-list th, .note-list th, .repo-list th, .media-list th, .indi-list th, .fam-list th, .recent_changes_block th, .upcoming_events_block th, .todays_events_block th, .todo_block th, .yahrzeit_block th {cursor:pointer; font-weight: 600; padding: 2px 4px; white-space: nowrap;}
.source-list th:last-child, .note-list th:last-child, .repo-list th:last-child {margin:0 -2px 1px 1px; padding:3px 0 4px; width:24px;}
-#source-details h2, #note-details h2, #repo-details h2, #media-details h2 {margin-bottom:20px; text-align:center;}
+#source-details h2,#source-list-page h2, #note-details h2, #note-list-page h2, #repo-details h2, #repo-list-page h2, #media-details h2, #media-list-page h2 {margin-bottom:20px; text-align:center;}
#source-tabs, #note-tabs, #repo-tabs, #media-tabs {margin:auto; visibility:hidden; width:80%;}
#source-edit, #note-edit, #repo-edit, #media-edit {overflow-x:auto;}
.media-list td img {display:block; height:40px; margin:3px auto;}
diff --git a/themes/xenea/style.css b/themes/xenea/style.css
index 2355498ca2..f7d5def657 100644
--- a/themes/xenea/style.css
+++ b/themes/xenea/style.css
@@ -1934,7 +1934,7 @@ html[dir='rtl'] .DataTables_sort_wrapper span {left:auto; right:0; margin-right:
.indi-list .stats, .fam-list .stats {margin:0 auto; width:auto;}
.source-list th, .note-list th, .repo-list th, .media-list th, .indi-list th, .fam-list th, .recent_changes_block th, .upcoming_events_block th, .todays_events_block th, .todo_block th, .yahrzeit_block th {cursor:pointer; white-space:nowrap;}
.source-list th:last-child, .note-list th:last-child, .repo-list th:last-child {margin:0 -2px 1px 1px; padding:3px 0 4px; width:24px;}
-#source-details h2, #note-details h2, #repo-details h2, #media-details h2 {margin-bottom:20px; text-align:center;}
+#source-details h2,#source-list-page h2, #note-details h2, #note-list-page h2, #repo-details h2, #repo-list-page h2, #media-details h2, #media-list-page h2 {margin-bottom:20px; text-align:center;}
#source-tabs, #note-tabs, #repo-tabs, #media-tabs {margin:auto; visibility:hidden; width:80%;}
#source-edit, #note-edit, #repo-edit, #media-edit {overflow-x:auto;}
.media-list td img {display:block; height:40px; margin:3px auto;}