1/** 2 * webtrees: online genealogy 3 * Copyright (C) 2019 webtrees development team 4 * This program is free software: you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation, either version 3 of the License, or 7 * (at your option) any later version. 8 * This program is distributed in the hope that it will be useful, 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * GNU General Public License for more details. 12 * You should have received a copy of the GNU General Public License 13 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 */ 15 16/* The xenea theme */ 17@import "_base.css"; 18@import "_block-charts.css"; 19@import "_chart-ancestors.css"; 20@import "_chart-compact.css"; 21@import "_chart-descendants.css"; 22@import "_chart-family-book.css"; 23@import "_chart-fan.css"; 24@import "_chart-hourglass.css"; 25@import "_chart-interactive.css"; 26@import "_chart-lifespans.css"; 27@import "_chart-pedigree.css"; 28@import "_chart-pedigree-map.css"; 29@import "_chart-relationships.css"; 30@import "_chart-statistics.css"; 31@import "_chart-timeline.css"; 32@import "_list-branches.css"; 33@import "_list-individuals.css"; 34@import "_list-media.css"; 35@import "_list-notes.css"; 36@import "_list-places.css"; 37@import "_list-repositories.css"; 38@import "_list-sources.css"; 39@import "_mime-type-icons.css"; 40@import "_on-screen-keyboard.css"; 41@import "_tab-relatives.css"; 42 43/* Colors for chart boxes, etc. */ 44:root { 45 --sex-f-fg: #ff2080; 46 --sex-m-fg: #84beff; 47 --sex-u-fg: #008080; 48 --sex-f-bg: #fff0f0; 49 --sex-m-bg: #f0f9ff; 50 --sex-u-bg: #ffffff; 51 --chart-line: solid gray thin; 52} 53 54/* Override Bootstrap formatting */ 55.btn-link { 56 padding-left: 0.25rem; 57 padding-right: 0.25rem; 58} 59 60.table-given-name { 61 overflow-x: hidden; 62} 63 64.container-fluid { 65 padding-left: 5px; 66 padding-right: 5px; 67} 68 69table { 70 border-collapse: separate; 71} 72 73/* 74 * Pages have the following high-level structure: 75 * 76 * wt-global wt-theme-<THEME> wt-route-<ROUTE> 77 * +---wt-header-wrapper 78 * | +---wt-header-container 79 * | +---wt-header-content 80 * | +---wt-accessibility-links 81 * | +---wt-site-logo 82 * | +---wt-site-title 83 * | +---wt-header-search 84 * | | +---wt-header-search-form 85 * | | +---wt-header-search-field 86 * | | +---wt-header-search-button 87 * | +---wt-secondary-navigation 88 * | | +---wt-user-menu 89 * | +---wt-primary-navigation 90 * | +---wt-genealogy-menu 91 * +---wt-main-wrapper 92 * | +---wt-main-container 93 * | +---wt-main-content 94 * | +---wt-messages 95 * | +---wt-page-title 96 * | +---wt-page-options wt-page-options-xxxxx 97 * | +---wt-page-content 98 * +---wt-footers 99 * +---wt-footer wt-footer-contact 100 * +---wt-footer wt-footer-cookies 101 * +---wt-footer wt-footer-page-views 102 * +---wt-footer wt-footer-powered-by 103 */ 104 105.wt-global { 106 color: #006; 107} 108 109.wt-header-wrapper { 110 background-image: linear-gradient(to right, #06d, #acf); 111 border-bottom: 2px solid #0073cf; 112} 113 114.wt-header-container { 115 color: #fff; 116} 117 118.wt-header-content { 119} 120 121.wt-accessibility-links { 122} 123 124.wt-site-logo { 125 display: none; 126} 127 128.wt-site-title { 129 order: 1; 130 flex: 0 0 calc(100% - 15rem); 131 font-size: 1.5rem; 132 margin: 0.5rem 0; 133} 134 135.wt-header-search { 136 order: 2; 137 flex: 0 0 15rem; 138 margin: 0.25rem 0; 139} 140 141.wt-header-search-form { 142} 143 144.wt-header-search-field { 145} 146 147.wt-header-search-button { 148 color: #000; 149 background: #ddd; 150 border: 0; 151} 152 153.wt-header-search-button .fa-search::before { 154 content: ">"; 155} 156 157.wt-secondary-navigation { 158 order: 3; 159 background-image: linear-gradient(#1548a7, #81bafc, #1548a7); 160 /* Extend to full page width */ 161 flex: 0 1 100vw; 162 max-width: 100vw; 163 /* Recalculate margins for content */ 164 margin: 0 calc(50% - 50vw); 165 padding: 0 calc(50vw - 50%); 166} 167 168.wt-user-menu { 169 flex-wrap: nowrap; 170 padding: 0.25rem 0; 171 justify-content: space-between; 172} 173 174.wt-user-menu a.nav-link { 175 color: #fff; 176 font-weight: bold; 177} 178 179.wt-user-menu .dropdown-toggle::after { 180 display: none; 181} 182 183.wt-primary-navigation { 184 order: 4; 185 background: #fff; 186 /* Extend to full page width */ 187 flex: 0 1 100vw; 188 max-width: 100vw; 189 /* Recalculate margins for content */ 190 margin: 0 calc(50% - 50vw); 191 padding: 0 calc(50vw - 50%); 192} 193 194.wt-genealogy-menu { 195 justify-content: center; 196} 197 198.wt-genealogy-menu .nav-item { 199 text-align: center; 200 min-width: 5rem; 201 padding-top: 0.25rem; 202} 203 204.wt-genealogy-menu .nav-link::before { 205 display: block; 206} 207 208.wt-genealogy-menu .dropdown-toggle::after { 209 display: none; 210} 211 212.wt-genealogy-menu .dropdown-menu { 213 border-radius: 0; 214} 215 216.wt-genealogy-menu .dropdown-item { 217 padding: 0 0.25rem; 218} 219 220.wt-genealogy-menu .dropdown-item::before { 221 vertical-align: top; 222 padding: 0 0.25rem; 223} 224 225.menu-tree .nav-link::before { 226 content: url(xenea/menu/tree.png); 227} 228 229.menu-tree .dropdown-item::before { 230 content: url(xenea/menu/tree-tree.png); 231} 232 233.menu-chart .nav-link::before { 234 content: url(xenea/menu/chart.png); 235} 236 237.menu-chart-ancestry::before { 238 content: url(xenea/menu/chart-ancestors.png); 239} 240 241.menu-chart-compact::before { 242 content: url(xenea/menu/chart-compact.png); 243} 244 245.menu-chart-descendants::before { 246 content: url(xenea/menu/chart-descendants.png); 247} 248 249.menu-chart-familybook::before { 250 content: url(xenea/menu/chart-family-book.png); 251} 252 253.menu-chart-fanchart::before { 254 content: url(xenea/menu/chart-fanchart.png); 255} 256 257.menu-chart-hourglass::before { 258 content: url(xenea/menu/chart-hourglass.png); 259} 260 261.menu-chart-lifespan::before { 262 content: url(xenea/menu/chart-lifespan.png); 263} 264 265.menu-chart-pedigree::before { 266 content: url(xenea/menu/chart-pedigree.png); 267} 268 269.menu-chart-pedigreemap::before { 270 content: url(xenea/menu/chart-pedigree-map.png); 271} 272 273.menu-chart-relationship::before { 274 content: url(xenea/menu/chart-relationship.png); 275} 276 277.menu-chart-statistics::before { 278 content: url(xenea/menu/chart-statistics.png); 279} 280 281.menu-chart-timeline::before { 282 content: url(xenea/menu/chart-timeline.png); 283} 284 285.menu-chart-tree::before { 286 content: url(xenea/menu/chart-tree.png); 287} 288 289.menu-list .nav-link::before { 290 content: url(xenea/menu/list.png); 291} 292 293.menu-branches::before { 294 content: url(xenea/menu/branches.png); 295} 296 297.menu-list-fam::before { 298 content: url(xenea/menu/list-fam.png); 299} 300 301.menu-list-indi::before { 302 content: url(xenea/menu/list-indi.png); 303} 304 305.menu-list-note::before { 306 content: url(xenea/menu/list-note.png); 307} 308 309.menu-list-obje::before { 310 content: url(xenea/menu/list-obje.png); 311} 312 313.menu-list-plac::before { 314 content: url(xenea/menu/list-plac.png); 315} 316 317.menu-list-repo::before { 318 content: url(xenea/menu/list-repo.png); 319} 320 321.menu-list-sour::before { 322 content: url(xenea/menu/list-sour.png); 323} 324 325.menu-calendar .nav-link::before { 326 content: url(xenea/menu/calendar.png); 327} 328 329.menu-calendar-day::before { 330 content: url(xenea/menu/calendar-calendar.png); 331} 332 333.menu-calendar-month::before { 334 content: url(xenea/menu/calendar-calendar.png); 335} 336 337.menu-calendar-year::before { 338 content: url(xenea/menu/calendar-calendar.png); 339} 340 341.menu-report .nav-link::before { 342 content: url(xenea/menu/report.png); 343} 344 345.menu-report .dropdown-item::before { 346 content: url(xenea/menu/report-report.png); 347} 348 349.menu-search .nav-link::before { 350 content: url(xenea/menu/search.png); 351} 352 353.menu-search .dropdown-item::before { 354 content: url(xenea/menu/search-search.png); 355} 356 357.menu-help .nav-link::before { 358 content: url(xenea/menu/help.png); 359} 360 361.menu-clippings .nav-link::before { 362 content: url(xenea/menu/clippings.png); 363} 364 365.menu-clippings-add::before { 366 content: url(xenea/menu/clippings-add.png); 367} 368 369.menu-clippings-cart::before { 370 content: url(xenea/menu/clippings-cart.png); 371} 372 373.menu-clippings-download::before { 374 content: url(xenea/menu/edit-preferences.png); 375} 376 377.menu-clippings-empty::before { 378 content: url(xenea/menu/edit-delete.png); 379} 380 381.menu-fam .nav-link::before { 382 content: url(xenea/menu/fam.png); 383} 384 385.menu-fam-change::before { 386 content: url(xenea/menu/edit-fam.png); 387} 388 389.menu-fam-addchil::before { 390 content: url(xenea/menu/edit-fam.png); 391} 392 393.menu-fam-orderchil::before { 394 content: url(xenea/menu/edit-fam.png); 395} 396 397.menu-fam-del::before { 398 content: url(xenea/menu/edit-delete.png); 399} 400 401.menu-fam-addfav::before { 402 content: url(xenea/menu/edit-add-favorite.png); 403} 404 405.menu-fam-editraw::before { 406 content: url(xenea/menu/edit-gedcom.png); 407} 408 409.menu-indi .nav-link::before { 410 content: url(xenea/menu/indi.png); 411} 412 413.menu-indi-addname::before { 414 content: url(xenea/menu/edit-indi.png); 415} 416 417.menu-indi-editsex::before { 418 content: url(xenea/menu/edit-indi.png); 419} 420 421.menu-indi-del::before { 422 content: url(xenea/menu/edit-delete.png); 423} 424 425.menu-indi-addfav::before { 426 content: url(xenea/menu/edit-add-favorite.png); 427} 428 429.menu-indi-editraw::before { 430 content: url(xenea/menu/edit-gedcom.png); 431} 432 433.menu-obje .nav-link::before { 434 content: url(xenea/menu/obje.png); 435} 436 437.menu-obje-edit::before { 438 content: url(xenea/menu/edit-obje.png); 439} 440 441.menu-obje-link::before { 442 content: url(xenea/menu/edit-link.png); 443} 444 445.menu-obje-del::before { 446 content: url(xenea/menu/edit-delete.png); 447} 448 449.menu-obje-addfav::before { 450 content: url(xenea/menu/edit-add-favorite.png); 451} 452 453.menu-obje-editraw::before { 454 content: url(xenea/menu/edit-gedcom.png); 455} 456 457.menu-note .nav-link::before { 458 content: url(xenea/menu/note.png); 459} 460 461.menu-note-edit::before { 462 content: url(xenea/menu/edit-note.png); 463} 464 465.menu-note-del::before { 466 content: url(xenea/menu/edit-delete.png); 467} 468 469.menu-note-addfav::before { 470 content: url(xenea/menu/edit-add-favorite.png); 471} 472 473.menu-note-editraw::before { 474 content: url(xenea/menu/edit-gedcom.png); 475} 476 477.menu-record .nav-link::before { 478 content: url(xenea/menu/indi.png); 479} 480 481.menu-record-del::before { 482 content: url(xenea/menu/edit-delete.png); 483} 484 485.menu-record-editraw::before { 486 content: url(xenea/menu/edit-gedcom.png); 487} 488 489.menu-repo .nav-link::before { 490 content: url(xenea/menu/repo.png); 491} 492 493.menu-repo-edit::before { 494 content: url(xenea/menu/edit-repo.png); 495} 496 497.menu-repo-del::before { 498 content: url(xenea/menu/edit-delete.png); 499} 500 501.menu-repo-addfav::before { 502 content: url(xenea/menu/edit-add-favorite.png); 503} 504 505.menu-repo-editraw::before { 506 content: url(xenea/menu/edit-gedcom.png); 507} 508 509.menu-sour .nav-link::before { 510 content: url(xenea/menu/sour.png); 511} 512 513.menu-sour-edit::before { 514 content: url(xenea/menu/edit-sour.png); 515} 516 517.menu-sour-del::before { 518 content: url(xenea/menu/edit-delete.png); 519} 520 521.menu-sour-addfav::before { 522 content: url(xenea/menu/edit-add-favorite.png); 523} 524 525.menu-sour-editraw::before { 526 content: url(xenea/menu/edit-gedcom.png); 527} 528 529.menu-story .nav-link::before { 530 content: url(xenea/menu/story.png); 531} 532 533.wt-main-container { 534 /* Space between the header/footer and the main content. */ 535 padding-top: 1rem; 536 padding-bottom: 1rem; 537} 538 539.wt-main { 540} 541 542.wt-messages { 543} 544 545.wt-page-title { 546 text-align: center; 547} 548 549.wt-page-options { 550} 551 552.wt-page-content { 553} 554 555.wt-page-options .form-group { 556 margin-bottom: 2px; 557} 558 559.wt-page-options-label { 560 color: #006; 561 background-color: #95b8e0; 562 border-left: 2px solid transparent; 563 border-right: 2px solid transparent; 564} 565 566.wt-page-options-value { 567 background-color: #ecf5ff; 568 border: thin solid #c3dfff; 569 padding: 0.25rem 0.75rem; 570} 571 572.wt-page-content { 573 margin-top: 1rem; 574} 575 576.wt-footers { 577} 578 579.wt-footer { 580} 581 582.wt-footer-contact { 583} 584 585.wt-footer-cookies { 586 background: #aaa; 587 color: #fff; 588 transition: height 0.5s; 589} 590 591.wt-footer-page-views { 592} 593 594.wt-footer-powered-by { 595} 596 597.wt-footer-powered-by-webtrees { 598 width: 100px; 599 height: 21px; 600 content: url(images/powered-by-webtrees.png); 601} 602 603/* 604 * The tree/user home pages 605 * 606 * wt-home-page / wt-user-page 607 * +---wt-main-blocks 608 * | +---wt-block, wt-block-AAA 609 * | +---wt-block, wt-block-BBB 610 * | +---wt-block, wt-block-CCC 611 * +---wt-side-blocks 612 * +---wt-block, wt-block-XXX 613 * +---wt-block, wt-block-YYY 614 * +---wt-block, wt-block-ZZZ 615 * 616 * Each block as the structure 617 * wt-block, wt-block-XXX 618 * +---wt-block-header, wt-block-header-XXX 619 * +---wt-block-content, wt-block-content-XXX 620 */ 621 622.wt-block { 623 background-color: #edf7fd; 624 border: thin solid #81a9cb; 625} 626 627.wt-block-header { 628 background-color: #edf7fd; 629 border-bottom: none; 630 font-weight: bold; 631} 632 633.wt-block-content { 634} 635 636.wt-block-content .list_table { 637 border-spacing: 1px; 638 border: solid #81a9cb 1px; 639 border-right: 0; 640} 641 642.wt-block-content .list_value, 643.wt-block-content .list_value_wrap { 644 border: 0; 645 border-top: solid #81a9cb 1px; 646 border-right: solid #81a9cb 1px; 647} 648 649/* 650 * The individual page. 651 * 652 * wt-route-individual 653 * +---wt-header-wrapper 654 */ 655 656.wt-individual-silhouette { 657 content: url(images/individual-silhouette-unknown.png); 658} 659 660.wt-individual-silhouette-f { 661 content: url(images/individual-silhouette-female.png); 662} 663 664.wt-individual-silhouette-m { 665 content: url(images/individual-silhouette-male.png); 666} 667 668/* 669 * Chart-boxes are used to build the various charts. 670 * Each type of chart will set its own size and hide/show content. 671 * 672 * wt-chart-box 673 * +--- wt-chart-box-thumbnail 674 * +--- wt-chart-box-extra 675 * +--- wt-chart-box-zoom 676 * +--- wt-chart-box-icon 677 * +--- wt-chart-box-dropdown wt-chart-box-zoom-dropdown 678 * +--- wt-chart-box-links 679 * +--- wt-chart-box-icon 680 * +--- wt-chart-box-dropdown wt-chart-box-links-dropdown 681 * +--- wt-chart-box-name 682 * +--- wt-chart-box-lifespan 683 * +--- wt-chart-box-facts 684 * +--- wt-chart-box-fact 685 */ 686.wt-chart-box, 687.wt-chart-box-menu { 688 background: var(--sex-u-bg); 689 border: dashed var(--sex-u-fg) thin; 690} 691 692.wt-chart-box { 693 height: 5rem; 694 padding: 2px; 695 line-height: 1.1; 696} 697 698.wt-chart-box-f, 699.wt-chart-box-f .wt-chart-box-dropdown { 700 background: var(--sex-f-bg); 701 border: solid var(--sex-f-fg) thin; 702} 703 704.wt-chart-box-m, 705.wt-chart-box-m .wt-chart-box-dropdown { 706 background: var(--sex-m-bg); 707 border: solid var(--sex-m-fg) thin; 708} 709 710/* 711 * Calendar 712 * 713 * wt-calendar-page 714 */ 715 716/* 717 * Reports 718 * 719 * wt-reports-page 720 */ 721 722/* 723 * Search 724 * 725 * wt-search-page, wt-general-serach-page/wt-phonetic-search-page/wt-advanced-search-page/wt-search-replace-page 726 */ 727 728#content #home-page { 729 margin-left: 5px; 730} 731 732/* ====== Round Corners ======== */ 733 734a { 735 color: #00f; 736 text-decoration: none; 737} 738 739a:hover { 740 color: #f00; 741 text-decoration: none; 742} 743 744:focus { 745 outline-style: none; 746} 747 748.flash-messages { 749 clear: both; 750 text-align: center; 751} 752 753img.block, 754#mycart img { 755 border: 0; 756 height: 25px; 757 vertical-align: middle; 758} 759 760.topbottombar { 761 background-color: #c3dfff; 762 color: #fff; 763 font-size: 12px; 764 font-weight: bold; 765 padding: 4px; 766 text-align: center; 767} 768 769#mycart a img { 770 height: 15px; 771} 772 773.button { 774 width: 60px; 775} 776 777.alpha_index { 778 color: #999; 779} 780 781.news_box:target, 782#gedcom_stats:target { 783 background-color: #ffc; 784} 785 786/* families tab person box */ 787table.center { 788 margin-left: auto; 789 margin-right: auto; 790} 791 792.list_table { 793 margin: 0 auto; 794} 795 796.list_label, 797.list_label_wrap { 798 color: #006; 799 font-size: 12px; 800 background-color: #c3dfff; 801 border: solid #81a9cb 1px; 802 font-weight: bold; 803 text-align: center; 804} 805 806.list_value, 807.list_value_wrap { 808 background-color: #edf7fd; 809 font-size: 12px; 810 border: solid #81a9cb 1px; 811 vertical-align: top; 812 padding: 4px; 813} 814 815.list_label, 816.list_value { 817 white-space: nowrap; 818} 819 820.list_label_wrap, 821.list_value_wrap { 822 white-space: normal; 823} 824 825div.fact_SHARED_NOTE { 826 clear: both; 827} 828 829/* Table of genealogical facts */ 830 831.wt-facts-table caption { 832 caption-side: top; 833} 834 835.wt-facts-table th { 836 background-color: #c3dfff; 837 color: #006; 838 text-align: center; 839 font-weight: normal; 840 min-width: 20%; 841} 842 843.wt-facts-table td { 844 background-color: #ecf5ff; 845 border: solid #c3dfff 1px; 846} 847 848.wt-facts-table .wt-gender-M td { 849 background-color: #f0f9ff; 850 border-color: #84beff; 851} 852 853.wt-facts-table .wt-gender-F td { 854 background-color: #fff0f0; 855 border-color: #ff2080; 856} 857 858.tabs_table { 859 width: 99%; 860} 861 862.name1 { 863 font-weight: bold; 864 font-size: 12px; 865} 866 867.name2 { 868 font-size: 16px; 869 } 870 871a:hover .name1, a:hover .name2 { 872 color: #f00; 873 font-weight: bold; 874 font-size: 12px; 875} 876 877a:hover .nameZoom { 878 color: #f00; 879 font-size: 16px; 880 font-weight: bold; 881} 882 883.details0, 884.details1 { 885 font-size: 11px; 886} 887 888.details2 { 889 font-size: 12px; 890} 891 892.nameZoom { 893 color: #555; 894 font-size: 16px; 895 font-weight: bold; 896} 897 898.details_label { 899 font-weight: bold; 900} 901 902.name_head { 903 color: #555; 904 font-size: 16px; 905 font-weight: bold; 906 line-height: 2; 907 padding: 0 5px; 908} 909 910.date { 911 color: #337; 912} 913 914.label { 915 font-weight: bold; 916} 917 918.error { 919 color: #d00; 920 font-weight: bold; 921} 922 923.largeError { 924 color: #d00; 925 font-size: large; 926 font-weight: bold; 927} 928 929.warning { 930 color: #f00; 931 font-weight: bold; 932} 933 934.indent { 935 padding-left: 20px; 936} 937 938.image { 939 height: 150px; 940 padding: 5px; 941 margin: 2px; 942} 943 944.gender_image { 945 margin: 0 3px; 946 border: 0; 947 vertical-align: middle; 948} 949 950.thumbnail { 951 height: auto; 952 padding: 3px; 953} 954 955.icon { 956 border: 0; 957 padding: 0 5px; 958} 959 960.sublinks_cell { 961 background-color: #edf7fd; 962 font-size: 12px; 963} 964 965.submenu .icon { 966 vertical-align: middle; 967 width: 20px; 968 height: 20px; 969} 970 971.subheaders { 972 font-weight: bold; 973 font-size: 15px; 974 margin-top: 15px; 975 vertical-align: bottom; 976} 977 978#family-table .subheaders:first-child { 979 width: 285px; 980} 981 982.parentdeath { 983 border: thin solid #888; 984 padding: 1px; 985} 986 987.source_citations { 988 display: none; 989} 990 991.selected-option { 992 background-color: #edf7fd; 993} 994 995.border1 { 996 border: solid #000 1px; 997} 998 999.menuitem { 1000 text-decoration: none; 1001 font-size: 11px; 1002 padding: 1px; 1003} 1004 1005.menuitem_hover { 1006 text-decoration: none; 1007 font-size: 11px; 1008 padding: 1px; 1009} 1010 1011.menuitem .icon, .menuitem_hover .icon { 1012 width: 50px; 1013 height: 50px; 1014} 1015 1016.submenu { 1017 text-decoration: none; 1018 font-size: 11px; 1019 background-color: #edf7fd; 1020 border: solid #81a9cb 1px; 1021 visibility: hidden; 1022 position: absolute; 1023 padding: 5px; 1024} 1025 1026.submenuitem { 1027 vertical-align: middle; 1028 font-size: 11px; 1029 height: 20px; 1030 text-decoration: none; 1031 background-color: #edf7fd; 1032 padding: 1px; 1033 white-space: nowrap; 1034} 1035 1036.submenuitem_hover { 1037 vertical-align: middle; 1038 height: 20px; 1039 font-size: 11px; 1040 background-color: #e6f0fa; 1041 white-space: nowrap; 1042 padding: 1px; 1043} 1044 1045.submenuitem a, 1046.submenuitem_hover a { 1047 display: inline-block; 1048 vertical-align: middle; 1049} 1050 1051.journal_box { 1052 padding: 3pt; 1053 border: thin solid #aaa; 1054 overflow: visible; 1055} 1056 1057.news_box { 1058 background-color: #edf7fd; 1059 border-top: solid #81a9cb 1px; 1060} 1061 1062.news_title { 1063 font-weight: bold; 1064 font-size: 14px; 1065} 1066 1067.news_date { 1068 margin-bottom: 12px; 1069} 1070 1071.current_day { 1072 font-weight: bold; 1073 font-size: 16px; 1074} 1075 1076.cal_day { 1077 float: left; 1078 font-weight: bold; 1079} 1080 1081.rtl_cal_day { 1082 direction: rtl; 1083 float: right; 1084 color: #00f; 1085 font-weight: bold; 1086} 1087 1088.helpcontent { 1089 margin-left: 10px; 1090 margin-right: 10px; 1091} 1092 1093.helpcontent dt { 1094 clear: both; 1095} 1096 1097#user-page h1 { 1098 margin: 0.25em auto 0.6em; 1099} 1100 1101.tvertline { 1102 vertical-align: bottom; 1103} 1104 1105#childbox { 1106 padding: 5px; 1107 position: absolute; 1108 display: none; 1109 text-align: start; 1110 white-space: nowrap; 1111 top: 20px; 1112 left: 0; 1113} 1114 1115.layout3 #childbox { 1116 top: auto; 1117 bottom: 20px; 1118} 1119 1120#childbox a.name1 { 1121 display: block; 1122 margin-left: 5px; 1123} 1124 1125.person0 { 1126 background-color: #aaf; 1127 border: outset #aaf 1px; 1128 vertical-align: top; 1129} 1130 1131.person1 { 1132 background-color: #afa; 1133 border: outset #afa 1px; 1134 vertical-align: top; 1135} 1136 1137.person2 { 1138 background-color: #faa; 1139 border: outset #faa 1px; 1140 vertical-align: top; 1141} 1142 1143.person3 { 1144 background-color: #55f; 1145 border: outset #55f 1px; 1146 vertical-align: top; 1147} 1148 1149.person4 { 1150 background-color: #f55; 1151 border: outset #f55 1px; 1152 vertical-align: top; 1153} 1154 1155.person5 { 1156 background-color: #5f5; 1157 border: outset #5f5 1px; 1158 vertical-align: top; 1159} 1160 1161.listlog { 1162 line-height: 20pt; 1163} 1164 1165.starredname { 1166 text-decoration: underline; 1167} 1168 1169.search_hit { 1170 background-color: #ff0; 1171} 1172 1173.search_item { 1174 font-weight: 600; 1175} 1176 1177.descriptionbox { 1178 color: #006; 1179 font-size: 12px; 1180 background-color: #c3dfff; 1181 vertical-align: top; 1182 padding: 3px; 1183} 1184 1185.optionbox { 1186 background-color: #ecf5ff; 1187 font-size: 1rem; 1188 border: solid #c3dfff 1px; 1189 vertical-align: top; 1190 white-space: nowrap; 1191 padding: 3px; 1192} 1193 1194.vmiddle { 1195 vertical-align: middle; 1196} 1197 1198.red { 1199 color: #f00; 1200} 1201 1202.wt-relation-fact, 1203.wt-historic-fact { 1204 opacity: 0.8; 1205} 1206 1207.messagebox { 1208 background-color: #c2ceef; 1209 border: solid #81a9cb 1px; 1210} 1211 1212/* ---Pending edits--- */ 1213.new { 1214 outline: solid blue 1px; 1215} 1216 1217.old { 1218 outline: solid red 1px; 1219} 1220 1221.tag_cloud { 1222 text-align: center; 1223} 1224 1225.tag_cloud a { 1226 white-space: nowrap; 1227} 1228 1229.nowrap { 1230 white-space: nowrap; 1231} 1232 1233.wrap { 1234 white-space: normal; 1235} 1236 1237.statistics-page { 1238 text-align: center; 1239} 1240 1241.gchart { 1242 border: solid #81a9cb 1px; 1243} 1244 1245/* ---Find special characters--- */ 1246.largechars { 1247 font-family: monospace; 1248 font-size: 200%; 1249} 1250 1251#facts_content dd { 1252 float: left; 1253 width: 70%; 1254} 1255 1256/* this keeps the tag color the same when it is a link as when not */ 1257 1258.place { 1259 padding-top: 5px; 1260} 1261 1262#pending h2 { 1263 text-align: center; 1264 margin-bottom: 20px; 1265} 1266 1267#pending h3 { 1268 text-align: center; 1269 margin-top: 20px; 1270} 1271 1272#pending .list_value { 1273 padding: 3px; 1274 text-align: center; 1275 vertical-align: middle; 1276 white-space: nowrap; 1277} 1278 1279#pending .indent { 1280 padding: 0; 1281} 1282 1283/* --- reportengine.php --- */ 1284#reportengine-page table { 1285 margin: 20px auto; 1286} 1287 1288#reportengine-page .report-type { 1289 overflow: hidden; 1290 margin: auto; 1291 width: 180px; 1292} 1293 1294#reportengine-page .report-type div { 1295 float: left; 1296 margin: 0 20px; 1297} 1298 1299#reportengine-page .report-type p { 1300 margin: 0; 1301 text-align: center; 1302} 1303 1304/* styles for popup menus */ 1305.itr { 1306 position: absolute; 1307 line-height: 1.5; 1308} 1309 1310.popup { 1311 position: absolute; 1312 top: 20px; 1313 right: 0; 1314 left: auto; 1315 visibility: hidden; 1316 opacity: 0; 1317 transition: visibility 0s ease .25s,opacity .25s ease; 1318 z-index: 9999; 1319 box-shadow: 5px 5px 5px 0 rgba(0,0,0,.4); 1320} 1321 1322.popup ul { 1323 white-space: nowrap; 1324 list-style: none; 1325 margin: 0; 1326 padding: 0 10px; 1327 font-size: smaller; 1328} 1329 1330.popup > ul { 1331 padding: 2px 10px; 1332} 1333 1334.popup li .NAME { 1335 padding: 0 5px; 1336} 1337 1338.itr:hover .popup { 1339 visibility: visible; 1340 opacity: 1; 1341 transition-delay: 0s; 1342} 1343 1344/* styles for FindFacts pop-up */ 1345#layDefinedTags, 1346#tabDefinedTagsShow { 1347 width: 450px; 1348} 1349 1350#tabDefinedTags { 1351 width: 430px; 1352} 1353 1354#layDefinedTags { 1355 margin-left: auto; 1356 margin-right: auto; 1357 height: 285px; 1358 overflow: auto; 1359} 1360 1361#tabDefinedTags { 1362 border-collapse: collapse; 1363} 1364 1365#tabDefinedTags th, 1366#tabDefinedTags td { 1367 border: solid 1px #000; 1368 margin: 0; 1369 padding: 3px; 1370} 1371 1372#tabDefinedTags tbody th { 1373 text-align: left; 1374 font-weight: bold; 1375} 1376 1377#tabDefinedTags tr.sel { 1378 background-color: #d1d9ef; 1379 color: #888; 1380} 1381 1382#tabDefinedTags tr.unsel { 1383 background-color: #fff; 1384 color: #888; 1385} 1386 1387#tabDefinedTagsShow { 1388 margin-left: auto; 1389 margin-right: auto; 1390} 1391 1392#tabDefinedTagsShow td { 1393 width: 50%; 1394 text-align: center; 1395} 1396 1397#tabFilterAndCustom { 1398 margin-left: auto; 1399 margin-right: auto; 1400} 1401 1402#tabAction { 1403 margin-left: auto; 1404 margin-right: auto; 1405} 1406 1407#tabAction td { 1408 width: 50%; 1409 text-align: center; 1410} 1411 1412/* ======== List styles ====== */ 1413.surname-list, 1414.givn-list { 1415 margin: 5px auto; 1416} 1417 1418.surname-list td { 1419 vertical-align: top; 1420} 1421 1422.indi-list .stats, 1423.fam-list .stats { 1424 margin: 0 auto; 1425 width: auto; 1426} 1427 1428.source-list th, 1429.note-list th, 1430.repo-list th, 1431.media-list th, 1432.indi-list th, 1433.fam-list th, 1434.surname-list th, 1435.givn-list th { 1436 cursor: pointer; 1437 font-weight: 600; 1438 padding: 2px 4px; 1439 white-space: nowrap; 1440} 1441 1442.source-list th:last-child, 1443.note-list th:last-child, 1444.repo-list th:last-child { 1445 margin: 0 -2px 1px 1px; 1446 padding: 3px 0 4px; 1447 width: 24px; 1448} 1449 1450.givn-list th { 1451 cursor: pointer; 1452 white-space: nowrap; 1453 padding: 2px; 1454 text-align: center; 1455} 1456 1457#source-details h2, 1458#sourcelist-page h2, 1459#note-details h2, 1460#notelist-page h2, 1461#repo-details h2, 1462#repolist-page h2, 1463#media-details h2, 1464#statistics-page h2 { 1465 margin-bottom: 20px; 1466 text-align: center; 1467} 1468 1469#source-edit, 1470#note-edit, 1471#repo-edit, 1472#media-edit { 1473 overflow-x: auto; 1474} 1475 1476.media-list td img { 1477 display: block; 1478 height: 40px; 1479 width: auto; 1480 margin: 3px auto; 1481} 1482 1483.filtersH, 1484.filtersF { 1485 margin: 4px; 1486} 1487 1488.filtersH img { 1489 margin-bottom: 2px; 1490} 1491 1492.list-charts { 1493 text-align: center; 1494} 1495 1496#search-result-tabs h3 { 1497 text-align: center; 1498} 1499 1500#searchAccordion-indi, 1501#searchAccordion-fam, 1502#searchAccordion-source, 1503#searchAccordion-note { 1504 margin: auto; 1505 width: 99%; 1506} 1507 1508#place-hierarchy h2, 1509#place-hierarchy h4 { 1510 text-align: center; 1511} 1512 1513#main_select, 1514#available_select, 1515#right_select { 1516 min-width: 150px; 1517} 1518 1519/* ==== FAQ table styles ===== */ 1520table.faq { 1521 background-color: #e0e0e0; 1522 margin: 5px 0 50px 5px; 1523 width: 98%; 1524} 1525 1526table.faq tr:nth-child(odd) td { 1527 background-color: #e7eef3; 1528} 1529 1530div.faq_title { 1531 background-color: #e0e0e0; 1532 margin: 1em 0; 1533 padding: .25em; 1534 font-weight: bold; 1535 width: 98%; 1536} 1537 1538div.faq_body { 1539 clear: both; 1540 padding: 0 1em; 1541} 1542 1543.faq_top { 1544 float: right; 1545} 1546 1547/* === Positioning edit, copy, delete links === */ 1548/* General use */ 1549.editfacts { 1550 clear: left; 1551 padding-top: 15px; 1552} 1553 1554/* ======== Indi header ====== */ 1555#indi_header { 1556 overflow: hidden; 1557 border-radius: 3px; 1558 border: 1px solid #b2c7d7; 1559 margin: 0 0 5px 10px; 1560 padding: 10px 0; 1561} 1562 1563#indi_header h3 { 1564 font-size: 90%; 1565 font-weight: bold; 1566 margin: 0; 1567 padding: 0 10px 0 30px; 1568 text-align: left; 1569 overflow: hidden; 1570 position: relative; 1571} 1572 1573#indi_header .name_one { 1574 font-size: 1.5em; 1575} 1576 1577#indi_header h3 .details1 { 1578 font-size: 1.0em; 1579} 1580 1581#indi_header h3 .header_age { 1582 padding: 5px 0 5px 5px; 1583 float: right; 1584 font-weight: normal; 1585 font-size: 65%; 1586} 1587 1588#indi_header h3 a { 1589 display: inline; 1590} 1591 1592#indi_header a { 1593 color: #337; 1594 font-size: 0.75em; 1595 font-weight: normal; 1596} 1597 1598#indi_header a:hover { 1599 color: #f00; 1600} 1601 1602#indi_mainimage { 1603 float: left; 1604 padding: 0 10px; 1605} 1606 1607#header_accordion1 { 1608 padding: 0 10px 0 0; 1609 overflow: hidden; 1610} 1611 1612#header_accordion1 .indi_name_details { 1613 margin: 0; 1614 overflow: hidden; 1615 padding: 5px; 1616} 1617 1618.indi_name_details .name1 { 1619 font-weight: normal; 1620 padding-top: 5px; 1621 font-size: inherit; 1622} 1623 1624#indi_header a.warning { 1625 color: #f00; 1626 font-size: 1em; 1627} 1628 1629#indi_note { 1630 margin: 0 0 5px; 1631} 1632 1633.indi_table { 1634 clear: left; 1635} 1636 1637#sex { 1638 float: right; 1639} 1640 1641#dates { 1642 float: right; 1643} 1644 1645#individual-names .wt-icon-edit, 1646#individual-names .wt-icon-delete { 1647 float: right; 1648} 1649 1650#indi_note .fact_NOTE { 1651 float: left; 1652 margin: 0 5px 0 0; 1653} 1654 1655#indi_note .fact_SOUR { 1656 margin: 3px 0; 1657} 1658 1659#indi_note .fact_SOUR a { 1660 font-size: 100%; 1661} 1662 1663#indi_note .fact_NOTE, 1664#indi_note .fact_SOUR { 1665 clear: both; 1666} 1667 1668/* markdown formatting */ 1669 1670.markdown { 1671 /* Tables and pre-formatted text can break the layout. */ 1672 overflow-x: auto; 1673} 1674 1675.markdown p { 1676 margin: 0 0 0.5em; 1677 white-space: pre-wrap; 1678} 1679 1680.markdown table { 1681 border-collapse: collapse; 1682 margin-bottom: 5px; 1683} 1684 1685.markdown th { 1686 font-weight: bold; 1687} 1688 1689.markdown td, 1690.markdown th { 1691 border: solid thin #000; 1692 padding: 3px; 1693} 1694 1695.odometer { 1696 font-family: courier, monospace; 1697 font-weight: bold; 1698 background: #000; 1699 color: #fff; 1700} 1701 1702/* ======== Indi tabs ======== */ 1703/* Facts & Events tab */ 1704#personal_facts_content .fact_NOTE, 1705#personal_facts_content .fact_SOUR, 1706#family-table .fact_NOTE, 1707#family-table .fact_SOUR { 1708 margin: 5px 3px 5px 0; 1709 clear: both; 1710} 1711 1712.media-display-image { 1713 float: left; 1714} 1715 1716.media-display-title { 1717 float: left; 1718 font-style: italic; 1719 margin: 10px; 1720} 1721 1722/* === jQuery.datatable styling general over-rides === */ 1723.odd { 1724 background-color: #e7eef3; 1725} 1726 1727.even { 1728 background-color: #e6e6e6; 1729} 1730 1731.css_right { 1732 float: left; 1733} 1734 1735.fg-button { 1736 padding: 2px 6px; 1737} 1738 1739/* Sidebar - Family navigator */ 1740.wt-family-navigator-dropdown { 1741 background: #edf7fd; 1742} 1743 1744.wt-family-navigator-dropdown-heading { 1745 font-weight: bold; 1746 font-size: inherit; 1747 color: inherit; 1748} 1749 1750/* Sidebar - Descendants */ 1751#sb_content_descendancy { 1752 margin-top: 5px; 1753} 1754 1755#sb_desc_content { 1756 margin-left: 3px; 1757 font-size: 0.8em; 1758} 1759 1760#sb_desc_content ul { 1761 padding: 0; 1762 margin: 0; 1763} 1764 1765.sb_desc_indi_li { 1766 list-style-type: none; 1767} 1768 1769.desc_tree_div { 1770 display: none; 1771} 1772 1773.desc_tree_div ul { 1774 padding: 0; 1775 margin-left: 10px; 1776 margin-top: 0; 1777 margin-right: 0; 1778} 1779 1780/* Individuals and Families */ 1781#sidebar-content-individuals, 1782#sidebar-content-families { 1783 margin-top: 5px; 1784} 1785 1786.sb_indi_surname_li, 1787.sb_fam_surname_li { 1788 list-style-image: url(xenea/images/plus.png); 1789} 1790 1791.name_tree_div ul { 1792 padding: 0; 1793 margin: 0; 1794} 1795 1796.name_tree_div li { 1797 list-style: none; 1798 margin: 0; 1799 padding: 0; 1800} 1801 1802/* Clippings */ 1803#sb_clippings_content ul { 1804 padding: 0; 1805 margin: 0; 1806} 1807 1808#sb_clippings_content li { 1809 list-style: none; 1810 margin: 0; 1811 padding: 0; 1812 white-space: nowrap; 1813} 1814 1815/* Extra info */ 1816#sb_content_extra_info { 1817 font-size: 80%; 1818 font-weight: bold; 1819 margin-top: 1px; 1820 overflow: hidden; 1821 padding: 5px; 1822} 1823 1824#sb_content_extra_info .editfacts { 1825 float: right; 1826 margin-top: -30px; 1827} 1828 1829#sb_content_extra_info a { 1830 display: block; 1831} 1832 1833#sb_content_extra_info span { 1834 font-weight: normal; 1835} 1836 1837#sb_content_extra_info span a { 1838 display: inline; 1839} 1840 1841#sb_content_extra_info #hitcounter { 1842 border-top: 1px solid #b2c7d7; 1843 font-weight: bold; 1844 padding-top: 5px; 1845} 1846 1847/* http://www.jacklmoore.com/colorbox */ 1848#colorbox, 1849#cboxOverlay, 1850#cboxWrapper { 1851 position: absolute; 1852 top: 0; 1853 left: 0; 1854 z-index: 9999; 1855 overflow: hidden; 1856} 1857 1858#cboxWrapper { 1859 max-width: none; 1860} 1861 1862#cboxOverlay { 1863 position: fixed; 1864 width: 100%; 1865 height: 100%; 1866 background: #fff; 1867} 1868 1869#cboxContent { 1870 background: #fff; 1871 overflow: hidden; 1872 position: relative; 1873 padding: 0.5rem; 1874 border: 0.25rem solid #ccc; 1875} 1876 1877#cboxLoadingOverlay, 1878#cboxLoadingGraphic { 1879 position: absolute; 1880 top: 0; 1881 left: 0; 1882 width: 100%; 1883 height: 100%; 1884} 1885 1886.cboxPhoto { 1887 float: left; 1888 margin: auto; 1889 border: 0; 1890 display: block; 1891 max-width: none; 1892} 1893 1894#colorbox, 1895#cboxContent, 1896#cboxLoadedContent { 1897 box-sizing: content-box; 1898} 1899 1900#cboxError { 1901 padding: 50px; 1902 border: 1px solid #ccc; 1903} 1904 1905#cboxLoadedContent { 1906 margin-bottom: 28px; 1907} 1908 1909#cboxTitle { 1910 background: #fff; 1911 position: absolute; 1912 bottom: 0.25rem; 1913 left: 0; 1914 margin: 0 3rem; 1915 text-align: center; 1916} 1917 1918#cboxLoadingGraphic { 1919 background: url(images/loading-32x32.gif) no-repeat center center; 1920} 1921 1922#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose { 1923 background: none; 1924 border: 0; 1925 cursor: pointer; 1926 font-family: "Font Awesome\ 5 Free", sans-serif; 1927 font-weight: 900; 1928 overflow: visible; 1929 padding: 0; 1930 position: absolute; 1931} 1932 1933#cboxSlideshow { 1934 bottom: 0.25rem; 1935 right: 0.25rem; 1936} 1937 1938#cboxPrevious { 1939 bottom: 0.25rem; 1940 left: 0.25rem; 1941} 1942 1943#cboxNext { 1944 bottom: 0.25rem; 1945 left: 1.5rem; 1946} 1947 1948#cboxClose { 1949 top: 0.25rem; 1950 right: 0.25rem; 1951} 1952 1953/* Stories module */ 1954.story_title { 1955 padding-top: 12px; 1956 font-size: 13px; 1957 height: 32px; 1958 font-weight: bold; 1959} 1960 1961.story_body { 1962 padding: 20px; 1963 white-space: normal; 1964} 1965 1966.story_edit { 1967 padding: 12px; 1968} 1969 1970/* Stories module */ 1971.story_title { 1972 padding-top: 12px; 1973 font-size: 13px; 1974 height: 32px; 1975 font-weight: bold; 1976} 1977 1978.story_body { 1979 padding: 20px; 1980 white-space: normal; 1981} 1982 1983.story_edit { 1984 padding: 12px; 1985} 1986 1987/* ====== Charts Styles ======== */ 1988#people label { 1989 display: block; 1990} 1991 1992/* Ancestry chart */ 1993.wt-chart-ancestors-list { 1994 background: transparent url(images/vline.png) left top repeat-y; 1995 margin: 0 0 0 15px; 1996 padding: 0; 1997 display: block; 1998} 1999 2000.wt-chart-ancestors-list-item { 2001 margin: 5px 0; 2002} 2003 2004.chart_common li { 2005 list-style: outside none none; 2006} 2007 2008.generations { 2009 background: transparent url(images/vline.png) repeat-y scroll left top; 2010 display: block; 2011 margin: 0 0 0 15px; 2012 padding: 0; 2013} 2014 2015.chart_common table { 2016 padding: 0; 2017 border-spacing: 0; 2018 border-collapse: collapse; 2019 margin: 5px 0; 2020} 2021 2022.chart_common td { 2023 border: 0; 2024 padding: 0; 2025} 2026 2027.chart_common span.details1 div[class^=fact_] { 2028 display: inline-block; 2029} 2030 2031.chart_common span.details1 .date { 2032 color: inherit; 2033} 2034 2035/*-- Family book --*/ 2036#familybook_chart { 2037 margin-left: 10px; 2038} 2039 2040#familybook_chart table { 2041 border-collapse: collapse; 2042 empty-cells: show; 2043} 2044 2045#familybook_chart td { 2046 margin: 0; 2047 padding: 0; 2048} 2049 2050#familybook_chart h2 { 2051 text-align: center; 2052} 2053 2054#familybook_chart .line3, 2055#familybook_chart .pvline, 2056#familybook_chart .spacer { 2057 width: 3px; 2058} 2059 2060#familybook_chart .line4 { 2061 width: 7px; 2062 vertical-align: middle; 2063} 2064 2065[ID^="vline"] { 2066 width: 3px; 2067} 2068 2069#familybook_chart h3 { 2070 color: #006; 2071 font-size: 16px; 2072 text-align: center; 2073} 2074 2075/*-- Fan chart ---- */ 2076.fan_chart_menu { 2077 position: absolute; 2078 display: none; 2079 z-index: 100; 2080} 2081 2082#fan_chart ul { 2083 list-style-type: none; 2084 margin: 0; 2085} 2086 2087/* Lifespans chart */ 2088.wt-lifespans-subtitle { 2089 text-align: center; 2090} 2091 2092.wt-lifespans-scale { 2093 white-space: nowrap; 2094} 2095 2096.wt-lifespans-decade { 2097 width: 70px; 2098 height: 60px; 2099 display: inline-block; 2100 background-image: url(images/lifespan-decade.png); 2101 background-position-y: bottom; 2102 background-repeat: no-repeat; 2103 background-size: 70px 37px; 2104} 2105 2106.wt-lifespans-individuals { 2107 background: #fafafa; 2108} 2109 2110.wt-lifespans-individual { 2111 2112} 2113 2114.wt-lifespans-summary { 2115 background: #ffffff; 2116 border: thin solid #000; 2117 z-index: 1; 2118} 2119 2120.wt-lifespans-summary-link { 2121 font-weight: bold; 2122} 2123 2124/*-- Pedigree ---- */ 2125#pedigree_chart { 2126 position: relative; 2127 margin: 20px auto; 2128} 2129 2130#pedigree_canvas { 2131 color: #81a9cb; 2132 z-index: -1000; 2133} 2134 2135#pedigree-page .shadow { 2136 position: absolute; 2137 white-space: nowrap; 2138} 2139 2140#pedigree-page .layout0 .shadow > div, 2141#pedigree-page .layout1 .shadow > div { 2142 display: inline-block; 2143 vertical-align: middle; 2144} 2145 2146#pedigree-page .spacer { 2147 background-image: url(images/spacer.png); 2148 height: 20px; 2149 width: 1px; 2150} 2151 2152#childarrow, 2153.ancestorarrow { 2154 text-align: center; 2155} 2156 2157#pedigree-page #childarrow { 2158 position: relative; 2159} 2160 2161#pedigree-page #childbox { 2162 border: 1px solid; 2163 background-color: #fff; 2164} 2165 2166#pedigree-page table.list_table { 2167 margin: 0 auto; 2168 width: 500px; 2169} 2170 2171.pedigree_chart_table { 2172 border: 0; 2173 border-collapse: collapse; 2174 padding: 0; 2175 width: 100%; 2176} 2177 2178/*-- timeline --*/ 2179#timeline_chart { 2180 position: relative; 2181 top: 0; 2182 left: 0; 2183} 2184 2185#field_table { 2186 width: 30%; 2187 min-width: 500px; 2188} 2189 2190/* 2191 * Any element that is loaded dynamically has the class wt-ajax-load. 2192 * We can provide a "loading" placeholder for empty elements with this class. 2193 */ 2194.wt-ajax-load:empty { 2195 height: 32px; 2196 background: url(images/loading-32x32.gif) no-repeat 50% 50%; 2197} 2198 2199/* 2200 * Default icons are provided by FontAwesome. 2201 * Some icons get mirrored on RTL pages. Typiclly arrows 2202 */ 2203[dir=rtl] .wt-flip-rtl { 2204 transform: scale(-1, 1); 2205} 2206 2207.wt-icon-anniversary { 2208 content: url(images/anniversary.png); 2209} 2210 2211.wt-icon-arrow-down { 2212 content: url(xenea/icons/arrow-down.png); 2213} 2214 2215a > .wt-icon-arrow-down:hover { 2216 content: url(xenea/icons/arrow-down-hover.png); 2217} 2218 2219.wt-icon-arrow-left { 2220 content: url(xenea/icons/arrow-left.png); 2221} 2222 2223a > .wt-icon-arrow-left:hover { 2224 content: url(xenea/icons/arrow-left-hover.png); 2225} 2226 2227.wt-icon-arrow-right { 2228 content: url(xenea/icons/arrow-right.png); 2229} 2230 2231a > .wt-icon-arrow-right:hover { 2232 content: url(xenea/icons/arrow-right-hover.png); 2233} 2234 2235.wt-icon-arrow-up { 2236 content: url(xenea/icons/arrow-up.png); 2237} 2238 2239a > .wt-icon-arrow-up:hover { 2240 content: url(xenea/icons/arrow-up-hover.png); 2241} 2242 2243.wt-icon-coordinates { 2244 content: url(images/coordinates.png) 2245} 2246 2247.wt-icon-reorder { 2248 content: url(images/reorder.png); 2249} 2250 2251.wt-icon-sex-f { 2252 content: url(images/sex-female.png); 2253} 2254 2255.wt-icon-sex-m { 2256 content: url(images/sex-male.png); 2257} 2258 2259.wt-icon-sex-u { 2260 content: url(images/sex-unknown.png); 2261} 2262 2263.wt-icon-sex-x { 2264 content: url(images/sex-unknown.png); 2265} 2266 2267.wt-icon-warning { 2268 content: url(images/warning.png); 2269} 2270 2271.wt-icon-zoom-in { 2272 content: url(xenea/images/zoomin.png); 2273} 2274 2275.wt-icon-zoom-out { 2276 content: url(xenea/images/zoomout.png); 2277} 2278 2279/* 2280 * .wt-icon-bing-maps 2281 * .wt-icon-calendar 2282 * .wt-icon-copy 2283 * .wt-icon-delete 2284 * .wt-icon-edit 2285 * .wt-icon-email 2286 * .wt-icon-family 2287 * .wt-icon-help 2288 * .wt-icon-individual 2289 * .wt-icon-google-maps 2290 * .wt-icon-keyboard 2291 * .wt-icon-media 2292 * .wt-icon-note 2293 * .wt-icon-openstreetmap 2294 * .wt-icon-preferences 2295 * .wt-icon-repository 2296 * .wt-icon-source 2297 * .wt-icon-submitter 2298 */ 2299.wt-icon-bing-maps::before { 2300 width: 16px; 2301 height: 16px; 2302 content: url(xenea/icons/bing-maps.png); 2303} 2304 2305.wt-icon-calendar::before { 2306 width: 19px; 2307 height: 15px; 2308 content: url(xenea/icons/calendar.png) 2309} 2310 2311.wt-icon-copy::before { 2312 width: 16px; 2313 height: 16px; 2314 content: url(xenea/icons/copy.png) 2315} 2316 2317.wt-icon-delete::before { 2318 width: 16px; 2319 height: 16px; 2320 content: url(xenea/icons/delete.png); 2321} 2322 2323.wt-icon-edit::before { 2324 width: 16px; 2325 height: 16px; 2326 content: url(xenea/icons/edit.png); 2327} 2328 2329.wt-icon-family::before { 2330 width: 14px; 2331 height: 15px; 2332 content: url(xenea/icons/family.png); 2333} 2334 2335.wt-icon-help::before { 2336 width: 16px; 2337 height: 16px; 2338 content: url(xenea/icons/help.png); 2339} 2340 2341.wt-icon-google-maps::before { 2342 width: 16px; 2343 height: 16px; 2344 content: url(xenea/icons/google-maps.png); 2345} 2346 2347.wt-icon-individual::before { 2348 width: 11px; 2349 height: 15px; 2350 content: url(xenea/icons/individual.png); 2351} 2352 2353.wt-icon-keyboard::before { 2354 width: 30px; 2355 height: 15px; 2356 content: url(xenea/icons/keyboard.png); 2357} 2358 2359.wt-icon-media::before { 2360 width: 18px; 2361 height: 16px; 2362 content: url(xenea/icons/media.png); 2363} 2364 2365.wt-icon-note::before { 2366 width: 20px; 2367 height: 20px; 2368 content: url(xenea/icons/note.png); 2369} 2370 2371.wt-icon-openstreetmap::before { 2372 width: 16px; 2373 height: 16px; 2374 content: url(xenea/icons/openstreetmap.png); 2375} 2376 2377.wt-icon-preferences::before { 2378 width: 25px; 2379 height: 25px; 2380 content: url(xenea/icons/preferences.png); 2381} 2382 2383.wt-icon-repository::before { 2384 width: 15px; 2385 height: 15px; 2386 content: url(xenea/icons/repository.png); 2387} 2388 2389.wt-icon-source::before { 2390 width: 18px; 2391 height: 16px; 2392 content: url(xenea/icons/source.png); 2393} 2394 2395.wt-icon-submitter::before { 2396 width: 11px; 2397 height: 15px; 2398 content: url(xenea/icons/individual.png); 2399} 2400 2401[class^="icon-"], 2402[class*=" icon-"] { 2403 display: inline-block; 2404 vertical-align: text-bottom; 2405 background-repeat: no-repeat; 2406 background-size: cover; 2407} 2408 2409.icon-add { 2410 width: 14px; 2411 height: 15px; 2412 background-image: url(images/add.png); 2413} 2414 2415.icon-cfamily { 2416 width: 25px; 2417 height: 25px; 2418 background-image: url(xenea/images/cfamily.png); 2419} 2420 2421.icon-childless { 2422 width: 25px; 2423 height: 25px; 2424 background-image: url(xenea/images/childless.png); 2425} 2426 2427.icon-children { 2428 width: 16px; 2429 height: 16px; 2430 background-image: url(xenea/images/children.png); 2431} 2432 2433.icon-clippings { 2434 width: 22px; 2435 height: 22px; 2436 background-image: url(xenea/images/clippings.png); 2437} 2438 2439.icon-edit_indi { 2440 width: 25px; 2441 height: 25px; 2442 background-image: url(xenea/images/edit_indi.png); 2443} 2444 2445.icon-fam-list { 2446 width: 25px; 2447 height: 25px; 2448 background-image: url(xenea/images/cfamily.png); 2449} 2450 2451.icon-indi-list { 2452 width: 20px; 2453 height: 20px; 2454 background-image: url(xenea/images/indis.png); 2455} 2456 2457.icon-loading-small { 2458 width: 16px; 2459 height: 16px; 2460 background-image: url(xenea/images/indicator.gif); 2461} 2462 2463.icon-media { 2464 width: 20px; 2465 height: 20px; 2466 background-image: url(xenea/images/media.png); 2467} 2468 2469.icon-media-list { 2470 width: 20px; 2471 height: 20px; 2472 background-image: url(xenea/images/media.png); 2473} 2474 2475.icon-media-next { 2476 width: 20px; 2477 height: 20px; 2478 background-image: url(xenea/images/rdarrow.png); 2479} 2480 2481.icon-media-play { 2482 width: 20px; 2483 height: 20px; 2484 background-image: url(xenea/images/rarrow.png); 2485} 2486 2487.icon-media-stop { 2488 width: 20px; 2489 height: 20px; 2490 background-image: url(xenea/images/stop.png); 2491} 2492 2493.icon-minus { 2494 width: 11px; 2495 height: 11px; 2496 background-image: url(xenea/images/minus.png); 2497} 2498 2499.icon-mypage { 2500 width: 24px; 2501 height: 24px; 2502 background-image: url(xenea/images/mypage.png); 2503} 2504 2505.icon-note { 2506 width: 22px; 2507 height: 22px; 2508 background-image: url(xenea/icons/note.png); 2509} 2510 2511.icon-plus { 2512 width: 11px; 2513 height: 11px; 2514 background-image: url(xenea/images/plus.png); 2515} 2516 2517.icon-remove { 2518 width: 20px; 2519 height: 20px; 2520 background-image: url(xenea/images/remove.png); 2521} 2522 2523.icon-resn-confidential { 2524 width: 16px; 2525 height: 16px; 2526 background-image: url(xenea/images/resn_confidential.png); 2527} 2528 2529.icon-resn-locked { 2530 width: 16px; 2531 height: 16px; 2532 background-image: url(xenea/images/resn_locked.png); 2533} 2534 2535.icon-resn-none { 2536 width: 16px; 2537 height: 16px; 2538 background-image: url(xenea/images/resn_none.png); 2539} 2540 2541.icon-resn-privacy { 2542 width: 16px; 2543 height: 16px; 2544 background-image: url(xenea/images/resn_privacy.png); 2545} 2546 2547.icon-rings { 2548 width: 9px; 2549 height: 9px; 2550 background-image: url(xenea/images/rings.png); 2551} 2552 2553.icon-selected { 2554 width: 12px; 2555 height: 12px; 2556 background-image: url(xenea/images/selected.png); 2557} 2558 2559.icon-source { 2560 width: 20px; 2561 height: 20px; 2562 background-image: url(xenea/images/source.png); 2563} 2564 2565/* Silhouettes on charts */ 2566.icon-silhouette-F { 2567 width: 37px; 2568 height: 50px; 2569 background-image: url(xenea/images/silhouette_female_small.png); 2570} 2571 2572.icon-silhouette-M { 2573 width: 37px; 2574 height: 50px; 2575 background-image: url(xenea/images/silhouette_male_small.png); 2576} 2577 2578.icon-silhouette-U { 2579 width: 37px; 2580 height: 50px; 2581 background-image: url(xenea/images/silhouette_unknown_small.png); 2582} 2583 2584.icon-indis { 2585 width: 25px; 2586 height: 25px; 2587 background-image: url(xenea/images/indis.png); 2588} 2589 2590.icon-patriarch { 2591 width: 25px; 2592 height: 25px; 2593 background-image: url(xenea/images/patriarch.png); 2594} 2595 2596.icon-pedigree { 2597 width: 25px; 2598 height: 25px; 2599 background-image: url(xenea/images/pedigree.png); 2600} 2601 2602.icon-place { 2603 width: 25px; 2604 height: 25px; 2605 background-image: url(xenea/images/place.png); 2606} 2607 2608.icon-repo-list { 2609 width: 25px; 2610 height: 25px; 2611 background-image: url(xenea/images/repository.png); 2612} 2613 2614.icon-repository { 2615 width: 25px; 2616 height: 25px; 2617 background-image: url(xenea/images/repository.png); 2618} 2619 2620.icon-search { 2621 width: 25px; 2622 height: 25px; 2623 background-image: url(xenea/images/search.png); 2624} 2625 2626.icon-sfamily { 2627 width: 25px; 2628 height: 25px; 2629 background-image: url(xenea/images/sfamily.png); 2630} 2631 2632.icon-source-list { 2633 width: 25px; 2634 height: 25px; 2635 background-image: url(xenea/images/source.png); 2636} 2637 2638.icon-user_add { 2639 width: 25px; 2640 height: 25px; 2641 background-image: url(xenea/images/user_add.png); 2642} 2643 2644/* Census assistant */ 2645.wt-census-assistant-form-control:focus { 2646 min-width: 12rem; 2647} 2648 2649/* 2650 * Drag and drop sortable lists 2651 */ 2652.wt-sortable-list { 2653} 2654 2655.wt-sortable-item { 2656 cursor: move; 2657} 2658 2659/* Some blocks show a reduced version on the right-hand side. */ 2660.wt-side-blocks .wt-side-block-optional { 2661 display: none !important; 2662} 2663 2664/* my page chart enhancements */ 2665.wt-block-content-charts { 2666 flex-flow: column-reverse; 2667 overflow: auto; 2668} 2669 2670.wt-block-content-todays-events-block { 2671 padding: .25rem; 2672} 2673 2674/* Some charts are wider than the page. */ 2675.wt-chart { 2676 overflow-x: auto; 2677 overflow-y: hidden; 2678} 2679 2680/* Fit thumbnail into parent on charts */ 2681.select2-selection.select2-selection--single { 2682 min-height: 36px; 2683 height: auto; 2684 padding: 2px 0; 2685} 2686 2687.select2-container .select2-selection--single .select2-selection__rendered { 2688 padding-left: 2px; 2689} 2690 2691.select2-selection--single .NAME { 2692 padding-left: 4px; 2693} 2694 2695/* 2696 * These selectors control how the short horizontal lines are positioned in the Charts 2697 * Optimized for Win10 and FF, Chrome and Edge browsers 2698 * Ancestors 2699 * Descendants 2700 * amily book 2701 * Hourglass chart 2702 * 2703 */ 2704 2705/* Ascentors */ 2706.wt-chart-ancestors .linea1 { 2707 margin-bottom: 4px; 2708} 2709 2710.wt-chart-ancestors .linea2 { 2711 margin-bottom: 7px; 2712} 2713 2714.wt-chart-ancestors .linea3 { 2715 margin-bottom: 4px; 2716} 2717 2718.wt-chart-ancestors .linea4 { 2719 margin-bottom: 7px; 2720} 2721 2722.wt-chart-ancestors .linea5 { 2723 vertical-align: top; 2724} 2725 2726/* Descendants */ 2727.wt-chart-descendants .lined1 { 2728 margin-bottom: 4px; 2729} 2730 2731.wt-chart-descendants .lined2 { 2732 margin-bottom: 7px; 2733} 2734 2735.wt-chart-descendants .lined3 { 2736 margin-bottom: 4px; 2737} 2738 2739.wt-chart-descendants .lined4 { 2740 margin-bottom: 7px; 2741} 2742 2743.wt-chart-descendants .linea5 { 2744 vertical-align: top; 2745} 2746 2747/* Family book */ 2748.linef1 { 2749 margin-bottom: 3px; 2750} 2751 2752.linef2 { 2753 margin-bottom: 3px; 2754} 2755 2756.linef3 { 2757 margin-bottom: 7px; 2758} 2759 2760/* Hourglass */ 2761.lineh1 { 2762 margin-bottom: 4px; 2763} 2764 2765.lineh2 { 2766 margin-bottom: 4px; 2767} 2768 2769.lineh3 { 2770 margin-bottom: 7px; 2771} 2772 2773/* 2774 * Pedigree chart 2775 * 2776 * wt-chart, wt-chart-pedigree 2777 */ 2778 2779#pedigree_chart { 2780 position: relative; 2781 margin: 20px auto; 2782} 2783 2784#pedigree_canvas { 2785 z-index: -1000; 2786} 2787 2788#childbox-pedigree { 2789 border: 1px solid; 2790 background-color: #fff; 2791} 2792 2793#pedigree-page #childbox-pedigree { 2794 border: 1px solid; 2795 background-color: #fff; 2796} 2797 2798#childbox-pedigree { 2799 padding: 5px; 2800 position: absolute; 2801 display: none; 2802 text-align: start; 2803 white-space: nowrap; 2804 left: auto; 2805 z-index: 9999; 2806} 2807 2808.wt-chart-pedigree, .wt-chart-hourglass { 2809 overflow-y: auto; 2810} 2811 2812.wt-chart-pedigree .spacer { 2813 background-image: url(images/spacer.png); 2814 height: 20px; 2815 width: 1px; 2816} 2817 2818#pedigree-page .shadow { 2819 box-shadow: 0 0 0 !important; /* override vendor css shadow */ 2820} 2821 2822#childarrow, 2823.ancestorarrow { 2824 text-align: center; 2825 display: inline-block; 2826 vertical-align: middle; 2827} 2828 2829.layout3 #childbox-pedigree { 2830 top: auto; 2831} 2832 2833#childbox-pedigree a.name1 { 2834 display: block; 2835 margin-left: 5px; 2836} 2837 2838 2839/* 2840 * Place hierarchy 2841 * 2842 * wt-place-hierarchy-page 2843 */ 2844 2845#place-hierarchy ul { 2846 list-style-type: none; 2847} 2848 2849.d-table-cell { 2850 padding-right: 5px; 2851} 2852 2853/* 2854 * Search 2855 * 2856 * wt-search-page, wt-general-serach-page/wt-phonetic-search-page/wt-advanced-search-page/wt-search-replace-page 2857 */ 2858 2859/* Some menus (e.g. languages) can be longer than a page */ 2860.dropdown-menu { 2861 max-height: 30rem; 2862 overflow-x: hidden; 2863} 2864 2865/* Clipping cart */ 2866.clipping-cart h2 { 2867 margin: 20px; 2868 text-align: center; 2869} 2870 2871.clipping-cart .wt-page-options { 2872 max-width: 25rem; 2873} 2874 2875.clipping-cart .topbottombar, .clipping-cart .optionbox, .add-to .topbottombar { 2876 font-size: 1rem; 2877} 2878 2879.clipping-cart .add-to { 2880 text-align: left; 2881} 2882 2883/* Forms */ 2884.col-form-label { 2885 font-weight: bold; 2886} 2887 2888/* Popups */ 2889.popup .nav-link { 2890 display: inline; 2891 vertical-align: top; 2892 padding: 5px; 2893} 2894 2895