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