1/** 2 * webtrees: online genealogy 3 * Copyright (C) 2020 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 clouds theme */ 17@import "_base.css"; 18 19/* Colors for chart boxes, etc. */ 20:root { 21 --sex-f-fg: #aaaaaa; 22 --sex-m-fg: #aaaaaa; 23 --sex-u-fg: #aaaaaa; 24 --sex-f-bg: #ffdddd; 25 --sex-m-bg: #ddddff; 26 --sex-u-bg: #ffffff; 27 --chart-line: solid gray thin; 28 --chart-line-radius: 1rem; 29} 30 31/* Override Bootstrap formatting */ 32 33.table-given-name { 34 overflow-x: hidden; 35} 36 37.btn-link { 38 padding: 0 .25rem; 39} 40 41.container-fluid { 42 padding-left: 5px; 43 padding-right: 5px; 44} 45 46table { 47 border-collapse: separate; 48} 49 50.dropdown-menu { /* Fix dropdown on Place Lists/Place Hierarchy */ 51 z-index: 1010; 52} 53 54/* 55 * Pages have the following high-level structure: 56 * 57 * wt-global wt-theme-<THEME> wt-route-<ROUTE> 58 * +---wt-header-wrapper 59 * | +---wt-header-container 60 * | +---wt-header-content 61 * | +---wt-accessibility-links 62 * | +---wt-site-logo 63 * | +---wt-site-title 64 * | +---wt-header-search 65 * | | +---wt-header-search-form 66 * | | +---wt-header-search-field 67 * | | +---wt-header-search-button 68 * | +---wt-secondary-navigation 69 * | | +---wt-user-menu 70 * | +---wt-primary-navigation 71 * | +---wt-genealogy-menu 72 * +---wt-main-wrapper 73 * | +---wt-main-container 74 * | +---wt-main-content 75 * | +---wt-messages 76 * | +---wt-page-title 77 * | +---wt-page-options wt-page-options-xxxxx 78 * | +---wt-page-content 79 * +---wt-footers 80 * +---wt-footer wt-footer-xxxxx 81 */ 82 83.wt-global { 84 background: #c8e7ff url(clouds/images/background.png) repeat-x fixed top left; 85 color: #006; 86} 87 88.wt-header-wrapper { 89 background: #acf url(clouds/images/clouds.png) repeat-x; 90 border-bottom: thin solid #79c; 91} 92 93.wt-header-wrapper .dropdown-item.active { 94 background-color: inherit; 95 color: inherit; 96 font-weight: bold; 97} 98 99.wt-header-container { 100 margin-top: 0.5rem; 101} 102 103.wt-header-content { 104} 105 106.wt-accessibility-links { 107} 108 109.wt-site-logo { 110 display: none; 111} 112 113.wt-site-title { 114 order: 1; 115 flex: 1 1 auto; 116 width: auto; 117 font-size: 1.5rem; 118} 119 120.wt-header-search { 121 order: 3; 122 flex: 0 0 15rem; 123} 124 125.wt-header-search-form { 126} 127 128.wt-header-search-field { 129} 130 131.wt-header-search-button { 132} 133 134.wt-secondary-navigation { 135 order: 2; 136 flex: 0 0 auto; 137 width: auto; 138 white-space: nowrap; 139} 140 141.wt-user-menu { 142 flex-wrap: nowrap; 143} 144 145.wt-user-menu .nav-link { 146 display: inline-block; 147 padding: 0.5rem; 148} 149 150.wt-user-menu .nav-item + .nav-item::before { 151 content: "|"; 152} 153 154.wt-user-menu .dropdown-toggle:after { 155 display: none; 156} 157 158.wt-user-menu .dropdown-item { 159 padding-left: 1rem; 160 padding-right: 1rem; 161} 162 163.wt-primary-navigation { 164 order: 3; 165 flex: 1 0 auto; 166} 167 168.wt-genealogy-menu { 169 display: flex; flex-wrap: wrap; 170} 171 172.wt-genealogy-menu .nav-item { 173 padding: 0 0.75rem; 174} 175 176.wt-genealogy-menu .nav-link { 177 /* All menu icons are 22px x 22px */ 178 height: calc(22px + 1rem); 179 width: 22px; 180 /* Hide text */ 181 padding: 0.5rem 0; 182 overflow: hidden; 183} 184 185.wt-genealogy-menu .dropdown-item { 186 /* Space between icons and align with submenu icons */ 187 padding: 0 5px 0 0; 188} 189 190.wt-genealogy-menu .dropdown-item::before { 191 /* All submenu icons are 22px x 22px */ 192 height: 22px; 193 width: 22px; 194 /* Align icons and text */ 195 vertical-align: text-top; 196 /* Space between icon and text */ 197 padding: 0 .25rem; 198 line-height: 1.8; 199} 200 201.wt-genealogy-menu .nav-item::before { 202 /* The size of the menu icons */ 203 width: 22px; 204 height: 22px; 205} 206 207.wt-genealogy-menu .dropdown-item::before { 208 /* The size of the submneu icons */ 209 width: 22px; 210 height: 22px; 211} 212 213.wt-genealogy-menu .dropdown-item:first-child { 214 font-weight: bold; 215 text-align: center; 216 border-bottom: solid thin #ddd; 217} 218 219.menu-tree .nav-link::before { 220 content: url(clouds/menu/tree.png); 221} 222 223.menu-tree .dropdown-item:not(:first-child)::before { 224 content: url(clouds/menu/tree-tree.png); 225} 226 227.menu-chart .nav-link::before { 228 content: url(clouds/menu/chart.png); 229} 230 231.menu-chart-ancestry::before { 232 content: url(clouds/menu/chart-ancestors.png); 233} 234 235.menu-chart-compact::before { 236 content: url(clouds/menu/chart-compact.png); 237} 238 239.menu-chart-descendants::before { 240 content: url(clouds/menu/chart-descendants.png); 241} 242 243.menu-chart-familybook::before { 244 content: url(clouds/menu/chart-family-book.png); 245} 246 247.menu-chart-fanchart::before { 248 content: url(clouds/menu/chart-fanchart.png); 249} 250 251.menu-chart-hourglass::before { 252 content: url(clouds/menu/chart-hourglass.png); 253} 254 255.menu-chart-lifespan::before { 256 content: url(clouds/menu/chart-lifespan.png); 257} 258 259.menu-chart-pedigree::before { 260 content: url(clouds/menu/chart-pedigree.png); 261} 262 263.menu-chart-pedigreemap::before { 264 content: url(clouds/menu/chart-pedigree-map.png); 265} 266 267.menu-chart-relationship::before { 268 content: url(clouds/menu/chart-relationship.png); 269} 270 271.menu-chart-statistics::before { 272 content: url(clouds/menu/chart-statistics.png); 273} 274 275.menu-chart-timeline::before { 276 content: url(clouds/menu/chart-timeline.png); 277} 278 279.menu-chart-tree::before { 280 content: url(clouds/menu/chart-tree.png); 281} 282 283.menu-list .nav-link::before { 284 content: url(clouds/menu/list.png); 285} 286 287.menu-branches::before { 288 content: url(clouds/menu/branches.png); 289} 290 291.menu-list-fam::before { 292 content: url(clouds/menu/list-fam.png); 293} 294 295.menu-list-indi::before { 296 content: url(clouds/menu/list-indi.png); 297} 298 299.menu-list-loc::before { 300 content: url(clouds/menu/list-plac.png); 301} 302 303.menu-list-note::before { 304 content: url(clouds/menu/list-note.png); 305} 306 307.menu-list-obje::before { 308 content: url(clouds/menu/list-obje.png); 309} 310 311.menu-list-plac::before { 312 content: url(clouds/menu/list-plac.png); 313} 314 315.menu-list-repo::before { 316 content: url(clouds/menu/list-repo.png); 317} 318 319.menu-list-sour::before { 320 content: url(clouds/menu/list-sour.png); 321} 322 323.menu-list-subm::before { 324 content: url(clouds/menu/list-indi.png); 325} 326 327.menu-calendar .nav-link::before { 328 content: url(clouds/menu/calendar.png); 329} 330 331.menu-calendar-day::before { 332 content: url(clouds/menu/calendar.png); 333} 334 335.menu-calendar-month::before { 336 content: url(clouds/menu/calendar.png); 337} 338 339.menu-calendar-year::before { 340 content: url(clouds/menu/calendar.png); 341} 342 343.menu-report .nav-link::before { 344 content: url(clouds/menu/report.png); 345} 346 347.menu-report .dropdown-item:not(:first-child)::before { 348 content: url(clouds/menu/report.png); 349} 350 351.menu-search .nav-link::before { 352 content: url(clouds/menu/search.png); 353} 354 355.menu-search .dropdown-item:not(:first-child)::before { 356 content: url(clouds/menu/search.png); 357} 358 359.menu-faq .nav-link::before { 360 content: url(clouds/menu/faq.png); 361} 362 363.menu-clippings .nav-link::before { 364 content: url(clouds/menu/clippings.png); 365} 366 367.menu-clippings-add::before { 368 content: url(clouds/menu/clippings-cart.png); 369} 370 371.menu-clippings-cart::before { 372 content: url(clouds/menu/clippings-cart.png); 373} 374 375.menu-clippings-download::before { 376 content: url(clouds/menu/edit-gedcom.png); 377} 378 379.menu-clippings-empty::before { 380 content: url(clouds/menu/edit-delete.png); 381} 382 383.menu-clippings-remove::before { 384 content: url(clouds/menu/edit-delete.png); 385} 386 387.menu-story .nav-link::before { 388 content: url(clouds/menu/story.png); 389} 390 391.wt-main-container { 392 /* Space between the header/footer and the main content. */ 393 padding-top: 1rem; 394 padding-bottom: 1rem; 395} 396 397.wt-main { 398} 399 400.wt-messages { 401} 402 403.wt-page-title { 404 text-align: center; 405} 406 407.wt-page-options { 408} 409 410.wt-page-options .form-group { 411 margin-bottom: 2px; 412} 413 414.wt-page-options-label { 415 color: #039; 416 background-color: #95b8e0; 417} 418 419.wt-page-options-value { 420 color: #006; 421 background-color: #ecf5ff; 422 border: thin solid #ccc; 423 padding: 0.25rem 0.75rem; 424} 425 426.wt-page-content { 427 margin-top: 1rem; 428} 429 430.wt-footers { 431} 432 433.wt-footer { 434} 435 436.wt-footer-contact { 437} 438 439.wt-footer-cookies { 440 background: #666; 441 color: #fff; 442 transition: height 0.5s; 443} 444 445.wt-footer-page-views { 446} 447 448.wt-footer-powered-by { 449} 450 451.wt-footer-powered-by-webtrees { 452 width: 100px; 453 height: 21px; 454 content: url(images/powered-by-webtrees.png); 455} 456 457/* 458 * The tree/user home pages 459 * 460 * wt-home-page / wt-user-page 461 * +---wt-main-blocks 462 * | +---wt-block, wt-block-AAA 463 * | +---wt-block, wt-block-BBB 464 * | +---wt-block, wt-block-CCC 465 * +---wt-side-blocks 466 * +---wt-block, wt-block-XXX 467 * +---wt-block, wt-block-YYY 468 * +---wt-block, wt-block-ZZZ 469 * 470 * Each block as the structure 471 * wt-block, wt-block-XXX 472 * +---wt-block-header, wt-block-header-XXX 473 * +---wt-block-content, wt-block-content-XXX 474 */ 475 476.wt-block { 477 color: #000; 478 margin-bottom: 5px; 479 padding: 1px; 480 vertical-align: top; 481} 482 483.wt-block-header { 484 background: url(clouds/images/block-header-background.png); 485 background-size: auto 100%; 486 padding: 0.25rem 0.75rem; 487} 488 489.wt-block-header::before { 490 content: url(clouds/images/block-header-disk.png); 491 margin: 0.5rem; 492} 493 494.wt-block-content { 495} 496 497.blockcontent { 498 border: solid #999 1px; 499 margin: 0 2px 10px 0; 500 overflow: auto; 501 padding: 5px; 502} 503 504.blockcontent .list_table { 505 border-spacing: 1px; 506 border: solid #999 1px; 507 border-right: 0; 508} 509 510.blockcontent .list_value, 511.blockcontent .list_value_wrap { 512 border: 0; 513 border-top: solid #999 1px; 514 border-right: solid #999 1px; 515} 516 517/* 518 * The individual page. 519 * 520 * wt-route-individual 521 * +---wt-header-wrapper 522 */ 523 524.wt-individual-silhouette { 525 content: url(images/individual-silhouette-unknown.png); 526} 527 528.wt-individual-silhouette-f { 529 content: url(images/individual-silhouette-female.png); 530} 531 532.wt-individual-silhouette-m { 533 content: url(images/individual-silhouette-male.png); 534} 535 536/* 537 * Chart-boxes are used to build the various charts. 538 * Each type of chart will set its own size and hide/show content. 539 * 540 * wt-chart-box 541 * +--- wt-chart-box-thumbnail 542 * +--- wt-chart-box-extra 543 * +--- wt-chart-box-zoom 544 * +--- wt-chart-box-icon 545 * +--- wt-chart-box-dropdown wt-chart-box-zoom-dropdown 546 * +--- wt-chart-box-links 547 * +--- wt-chart-box-icon 548 * +--- wt-chart-box-dropdown wt-chart-box-links-dropdown 549 * +--- wt-chart-box-name 550 * +--- wt-chart-box-lifespan 551 * +--- wt-chart-box-facts 552 * +--- wt-chart-box-fact 553 */ 554.wt-chart-box, 555.wt-chart-box-menu { 556 background: var(--sex-u-bg); 557 border: dashed var(--sex-u-fg) thin; 558} 559 560.wt-chart-box { 561 height: 5rem; 562 padding: 2px; 563 line-height: 1.1; 564} 565 566.wt-chart-box-f, 567.wt-chart-box-f .wt-chart-box-dropdown { 568 background: var(--sex-f-bg); 569 border: solid var(--sex-f-fg) thin; 570} 571 572.wt-chart-box-m, 573.wt-chart-box-m .wt-chart-box-dropdown { 574 background: var(--sex-m-bg); 575 border: solid var(--sex-m-fg) thin; 576} 577 578/* ====== Round Corners ======== */ 579input, 580fieldset, 581.border1, 582.block, 583.list_label, 584.list_label_wrap, 585.list_value, 586.list_value_wrap, 587.messagebox, 588.optionbox, 589.wt-chart-box, 590.person0, 591.person1, 592.person2, 593.person3, 594.person4, 595.person5, 596.wt-genealogy-menu ul, 597.user-menu li ul, 598footer, 599#indi_main_blocks, 600#tabs{ 601 border-radius: 3px; 602} 603 604a { 605 color: #039; 606 text-decoration: none; 607} 608 609a:hover { 610 color: #f00; 611 text-decoration: none; 612} 613 614:focus { 615 outline-style: none; 616} 617 618.flash-messages { 619 clear: both; 620 text-align: center; 621} 622 623img { 624 border: 0; 625} 626 627legend img { 628 height: 20px; 629 vertical-align: middle; 630 width: 20px; 631} 632 633img.block { 634 border: 0; 635 height: 25px; 636 vertical-align: middle; 637} 638 639.topbottombar { 640 font-size: 12px; 641 font-weight: bold; 642 padding: 4px; 643 text-align: center; 644} 645 646.button { 647 width: 60px; 648} 649 650button:focus { 651 outline: 0; 652} 653 654.alpha_index { 655 color: #999; 656} 657 658hr { 659 margin-top: 5px; 660 border-color: #006; 661} 662 663.list_table { 664 margin: 0 auto; 665} 666 667.list_label, 668.list_label_wrap { 669 color: #fff; 670 border: 1px solid #999; 671 font-weight: bold; 672 text-align: center; 673} 674 675.list_value, 676.list_value_wrap { 677 background-color: #edf7f9; 678 border: solid #999 1px; 679 vertical-align: top; 680} 681 682.list_label, 683.list_value { 684 white-space: nowrap; 685 padding: 4px; 686} 687 688.list_label_wrap, 689.list_value_wrap { 690 white-space: normal; 691} 692 693div.fact_SHARED_NOTE { 694 clear: both; 695} 696 697/* Table of genealogical facts */ 698.wt-facts-table { 699 border-collapse: separate; 700} 701 702.wt-facts-table caption { 703 caption-side: top; 704} 705 706.wt-facts-table th { 707 background-color: #95b8e0; 708 color: #039; 709 border: 1px solid #acf; 710 border-radius: 3px; 711 font-weight: normal; 712 text-align: center; 713 min-width: 20%; 714} 715 716.wt-facts-table td { 717 background: #fff; 718 border: solid #999 1px; 719 border-radius: 3px; 720} 721 722.wt-facts-table .wt-gender-M td { 723 background-color: #ddf; 724} 725 726.wt-facts-table .wt-gender-F td { 727 background-color: #fdd; 728} 729 730.name1 { 731 font-weight: bold; 732 font-size: 12px; 733} 734 735.name2 { 736 font-size: 16px; 737 } 738 739a:hover .name1, a:hover .name2 { 740 color: #f00; 741 font-weight: bold; 742 font-size: 12px; 743} 744 745.details_label { 746 font-weight: bold; 747} 748 749.date { 750 color: #039; 751} 752 753.label { 754 font-weight: bold; 755} 756 757.error { 758 color: #d00; 759 font-weight: bold; 760} 761 762.largeError { 763 color: #d00; 764 font-size: large; 765 font-weight: bold; 766} 767 768.warning { 769 color: #f00; 770 font-weight: bold; 771} 772 773.indent { 774 padding-left: 7px; 775} 776 777.thumbnail { 778 height: auto; 779 padding: 3px; 780} 781 782.icon { 783 border: 0; 784 padding: 0 5px; 785} 786 787.subheaders { 788 color: #006; 789 font-weight: bold; 790 font-size: 15px; 791 margin-top: 15px; 792 vertical-align: bottom; 793} 794 795.parentdeath { 796 border: thin solid #888; 797 padding: 1px; 798} 799 800.selected-option { 801 background-color: #cef; 802} 803 804.border1 { 805 border: solid #000 1px; 806} 807 808.journal_box { 809 padding: 3pt; 810 border: thin solid #aaa; 811 overflow: visible; 812} 813 814.news_box { 815 border-top: solid #ccc 1px; 816} 817 818.news_title { 819 color: #000; 820 font-weight: bold; 821} 822 823.news_date { 824 color: #000; 825 margin-bottom: 12px; 826} 827 828.current_day { 829 font-weight: bold; 830 font-size: 16px; 831} 832 833.cal_day { 834 font-weight: bold; 835} 836 837#user-page h1 { 838 margin: 0.25em auto 0.6em; 839} 840 841.tvertline { 842 vertical-align: bottom; 843} 844 845#childbox { 846 padding: 5px; 847 position: absolute; 848 display: none; 849 text-align: start; 850 white-space: nowrap; 851 top: 20px; 852 left: 0; 853} 854 855.layout3 #childbox { 856 top: auto; 857 bottom: 20px; 858} 859 860#childbox a.name1 { 861 display: block; 862 margin-left: 5px; 863} 864 865.person0 { 866 background-color: #ddf; 867 border: outset #999 1px; 868 vertical-align: top; 869} 870 871.person1 { 872 background-color: #afa; 873 border: outset #afa 1px; 874 vertical-align: top; 875} 876 877.person2 { 878 background-color: #faa; 879 border: outset #faa 1px; 880 vertical-align: top; 881} 882 883.person3 { 884 background-color: #aad; 885 border: outset #55f 1px; 886 vertical-align: top; 887} 888 889.person4 { 890 background-color: #f55; 891 border: outset #f55 1px; 892 vertical-align: top; 893} 894 895.person5 { 896 background-color: #5f5; 897 border: outset #5f5 1px; 898 vertical-align: top; 899} 900 901.starredname { 902 text-decoration: underline; 903} 904 905.search_hit { 906 background-color: #ff0; 907} 908 909.descriptionbox { 910 font-size: 12px; 911 border: 1px solid #ccc; 912 vertical-align: top; 913 padding: 3px; 914} 915 916.optionbox { 917 font-size: 1rem; 918 background-color: #ecf5ff; 919 color: #006; 920 border: solid #ccc 1px; 921 vertical-align: top; 922 white-space: nowrap; 923 padding: 3px; 924} 925 926.red { 927 color: #f00; 928} 929 930.wt-associate-fact, 931.wt-relation-fact, 932.wt-historic-fact { 933 opacity: 0.8; 934} 935 936.messagebox { 937 background-color: #c2ceef; 938 border: solid #ccc 1px; 939} 940 941/* ---Pending edits--- */ 942.wt-new { 943 outline: solid blue 1px; 944} 945 946.wt-old { 947 outline: solid red 1px; 948} 949 950.tag_cloud { 951 text-align: center; 952} 953 954.tag_cloud a { 955 white-space: nowrap; 956} 957 958.nowrap { 959 white-space: nowrap; 960} 961 962.wrap { 963 white-space: normal; 964} 965 966.statistics-page { 967 text-align: center; 968} 969 970.gchart { 971 border: solid #999 1px; 972} 973 974#facts_content dd { 975 float: left; 976 width: 70%; 977} 978 979/* this keeps the tag color the same when it is a link as when not */ 980 981.place { 982 padding-top: 5px; 983} 984 985.filtersH, 986.filtersF { 987 margin: 4px; 988} 989 990.filtersH img { 991 margin-bottom: 2px; 992} 993 994.list-charts { 995 text-align: center; 996} 997 998#place-hierarchy h2, 999#place-hierarchy h4 { 1000 text-align: center; 1001} 1002 1003.user_welcome_block table, 1004.gedcom_block_block table { 1005 margin: auto; 1006} 1007 1008.user_welcome_block td, 1009.gedcom_block_block td { 1010 width: 33%; 1011 text-align: center; 1012 vertical-align: top; 1013} 1014 1015/* ==== FAQ table styles ===== */ 1016table.faq { 1017 background-color: #eee; 1018 margin: 5px 0 50px 5px; 1019 width: 98%; 1020} 1021 1022table.faq tr:nth-child(odd) td { 1023 background-color: #eee; 1024} 1025 1026div.faq_title { 1027 background-color: #eee; 1028 margin: 1em 0; 1029 padding: .25em; 1030 font-weight: bold; 1031 width: 98%; 1032} 1033 1034div.faq_body { 1035 clear: both; 1036 padding: 0 1em; 1037} 1038 1039.faq_top { 1040 float: right; 1041} 1042 1043/* === Positioning edit, copy, delete links === */ 1044/* General use */ 1045.editfacts { 1046 clear: left; 1047 padding-top: 15px; 1048} 1049 1050#indi_note { 1051 margin: 0 0 5px; 1052} 1053 1054.indi_table { 1055 clear: left; 1056} 1057 1058#indi_note .fact_NOTE { 1059 float: left; 1060 margin: 0 5px 0 0; 1061} 1062 1063#indi_note .fact_SOUR { 1064 margin: 3px 0; 1065} 1066 1067#indi_note .fact_SOUR a { 1068 font-size: 100%; 1069} 1070 1071#indi_note .fact_NOTE, 1072#indi_note .fact_SOUR { 1073 clear: both; 1074} 1075 1076.odometer { 1077 font-family: courier, monospace; 1078 font-weight: bold; 1079 background: #000; 1080 color: #fff; 1081} 1082 1083.upcoming_events_block button, 1084.todays_events_block button { 1085 margin: 0 20px; 1086} 1087 1088/* Sidebar - Family navigator */ 1089.wt-family-navigator-dropdown-heading { 1090 font-weight: bold; 1091 font-size: inherit; 1092 color: inherit; 1093} 1094 1095/* Sidebar - Descendants */ 1096#sb_content_descendancy { 1097 margin-top: 0; 1098} 1099 1100#sb_desc_content { 1101 margin-left: 3px; 1102 font-size: 0.8em; 1103} 1104 1105#sb_desc_content ul { 1106 padding: 0; 1107 margin: 0; 1108} 1109 1110.sb_desc_indi_li { 1111 list-style-type: none; 1112 margin-left: 5px; 1113} 1114 1115/* Individuals and Families */ 1116#sidebar-content-individuals, 1117#sidebar-content-families { 1118 margin-top: 0; 1119} 1120 1121.sb_indi_surname_li, 1122.sb_fam_surname_li { 1123 list-style-image: url(icons/plus.png); 1124} 1125 1126.name_tree_div ul { 1127 padding: 0; 1128 margin: 0; 1129} 1130 1131.name_tree_div li { 1132 list-style: none; 1133 margin: 0; 1134 padding: 0; 1135} 1136 1137/* Clippings */ 1138#sb_clippings_content ul { 1139 padding: 0; 1140 margin: 0; 1141} 1142 1143#sb_clippings_content li { 1144 list-style: none; 1145 margin: 0; 1146 padding: 0; 1147 white-space: nowrap; 1148} 1149 1150/* Stories module */ 1151.story_title { 1152 padding-top: 12px; 1153 font-size: 13px; 1154 height: 32px; 1155 font-weight: bold; 1156} 1157 1158.story_body { 1159 padding: 20px; 1160 white-space: normal; 1161} 1162 1163.story_edit { 1164 padding: 12px; 1165} 1166 1167/*-- Fan chart ---- */ 1168.fan_chart_menu { 1169 background: #fff; 1170 position: absolute; 1171 display: none; 1172 z-index: 100; 1173} 1174 1175#fan_chart ul { 1176 list-style-type: none; 1177 margin: 0; 1178} 1179 1180/* Lifespans chart */ 1181.wt-lifespans-subtitle { 1182 text-align: center; 1183} 1184 1185.wt-lifespans-scale { 1186 white-space: nowrap; 1187} 1188 1189.wt-lifespans-decade { 1190 width: 70px; 1191 height: 60px; 1192 display: inline-block; 1193 background-image: url(images/lifespan-decade.png); 1194 background-position-y: bottom; 1195 background-repeat: no-repeat; 1196 background-size: 70px 37px; 1197} 1198 1199.wt-lifespans-individuals { 1200 background: #fafafa; 1201} 1202 1203.wt-lifespans-individual { 1204 1205} 1206 1207.wt-lifespans-summary { 1208 background: #ffffff; 1209 border: thin solid #000; 1210 z-index: 1; 1211} 1212 1213.wt-lifespans-summary-link { 1214 font-weight: bold; 1215} 1216 1217/*-- timeline --*/ 1218#timeline_chart { 1219 position: relative; 1220 top: 0; 1221 left: 0; 1222} 1223 1224[class^="icon-"], 1225[class*=" icon-"] { 1226 display: inline-block; 1227 vertical-align: middle; 1228 background-repeat: no-repeat; 1229 background-size: cover; 1230} 1231 1232.icon-cfamily { 1233 content: url(clouds/images/cfamily.png); 1234} 1235 1236.icon-childless { 1237 content: url(images/childless.png); 1238} 1239 1240.icon-children { 1241 content: url(images/children.png); 1242} 1243 1244.icon-edit_indi { 1245 content: url(clouds/images/edit_indi.png); 1246} 1247 1248.icon-fam-list { 1249 content: url(clouds/images/sfamily.png); 1250} 1251 1252.icon-indi-list { 1253 content: url(clouds/images/indis.png); 1254} 1255 1256.icon-loading-small { 1257 content: url(images/indicator.gif); 1258} 1259 1260.icon-minus { 1261 content: url(icons/minus.png); 1262} 1263 1264.icon-mypage { 1265 content: url(clouds/images/mypage.png); 1266} 1267 1268.icon-plus { 1269 content: url(icons/plus.png); 1270} 1271 1272.icon-resn-confidential { 1273 content: url(images/resn_confidential.png); 1274} 1275 1276.icon-resn-locked { 1277 content: url(images/resn_locked.png); 1278} 1279 1280.icon-resn-none { 1281 content: url(images/resn_none.png); 1282} 1283 1284.icon-resn-privacy { 1285 content: url(images/resn_privacy.png); 1286} 1287 1288.icon-rings { 1289 content: url(images/rings.png); 1290} 1291 1292.icon-selected { 1293 content: url(clouds/images/selected.png); 1294} 1295 1296/* Silhouettes on charts */ 1297.icon-silhouette-F { 1298 content: url(clouds/images/silhouette_female_small.png); 1299} 1300 1301.icon-silhouette-M { 1302 content: url(clouds/images/silhouette_male_small.png); 1303} 1304 1305.icon-silhouette-U { 1306 content: url(clouds/images/silhouette_unknown_small.png); 1307} 1308 1309/* Tbl hdrs and Light Text */ 1310.descriptionbox, 1311.topbottombar, 1312.topbottombar a, 1313.list_label, 1314.list_label a { 1315 background-color: #95b8e0; 1316 color: #039; 1317} 1318 1319/* Base Color */ 1320.blockcontent, 1321.list_value, 1322.list_value_wrap, 1323.news_box { 1324 background: inherit; 1325} 1326 1327footer .error { 1328 color: #d00; 1329 font-weight: bold; 1330} 1331 1332.user_links { 1333 white-space: nowrap; 1334} 1335 1336/* 1337 * Any element that is loaded dynamically has the class wt-ajax-load. 1338 * We can provide a "loading" placeholder for empty elements with this class. 1339 */ 1340.wt-ajax-load:empty { 1341 height: 32px; 1342 background: url(images/loading-32x32.gif) no-repeat 50% 50%; 1343} 1344 1345/* 1346 * Default icons are provided by FontAwesome. 1347 */ 1348.wt-icon-anniversary { 1349 content: url(icons/anniversary.png); 1350} 1351 1352.wt-icon-arrow-down { 1353 content: url(clouds/icons/arrow-down.png); 1354} 1355 1356a > .wt-icon-arrow-down:hover { 1357 content: url(clouds/icons/arrow-down-hover.png); 1358} 1359 1360.wt-icon-arrow-left { 1361 content: url(clouds/icons/arrow-left.png); 1362} 1363 1364a > .wt-icon-arrow-left:hover { 1365 content: url(clouds/icons/arrow-left-hover.png); 1366} 1367 1368.wt-icon-arrow-right { 1369 content: url(clouds/icons/arrow-right.png); 1370} 1371 1372a > .wt-icon-arrow-right:hover { 1373 content: url(clouds/icons/arrow-right-hover.png); 1374} 1375 1376.wt-icon-arrow-up { 1377 content: url(clouds/icons/arrow-up.png); 1378} 1379 1380a > .wt-icon-arrow-up:hover { 1381 content: url(clouds/icons/arrow-up-hover.png); 1382} 1383 1384.wt-icon-bing-maps { 1385 content: url(icons/bing-maps.png); 1386} 1387 1388.wt-icon-calendar { 1389 content: url(icons/calendar.png) 1390} 1391 1392.wt-icon-collapse { 1393} 1394 1395.wt-icon-coordinates { 1396 content: url(icons/coordinates.png) 1397} 1398 1399.wt-icon-copy { 1400 content: url(icons/copy.png) 1401} 1402 1403.wt-icon-delete { 1404 content: url(icons/delete.png); 1405} 1406 1407.wt-icon-edit { 1408 content: url(icons/edit.png); 1409} 1410 1411.wt-icon-expand { 1412} 1413 1414.wt-icon-family { 1415 content: url(icons/family.png); 1416} 1417 1418.wt-icon-google-maps { 1419 content: url(icons/google-maps.png); 1420} 1421 1422.wt-icon-help { 1423 content: url(clouds/icons/help.png); 1424} 1425 1426.wt-icon-individual { 1427 content: url(icons/individual.png); 1428} 1429 1430.wt-icon-keyboard { 1431 content: url(icons/keyboard.png); 1432} 1433 1434.wt-icon-media { 1435 content: url(icons/media.png); 1436} 1437 1438.wt-icon-note { 1439 content: url(icons/note.png); 1440} 1441 1442.wt-icon-openstreetmap { 1443 content: url(icons/openstreetmap.png); 1444} 1445 1446.wt-icon-preferences { 1447 content: url(clouds/icons/preferences.png); 1448} 1449 1450.wt-icon-reorder { 1451 content: url(icons/reorder.png); 1452} 1453 1454.wt-icon-repository { 1455 content: url(icons/repository.png); 1456} 1457 1458.wt-icon-sex { 1459 height: 1em; 1460} 1461 1462.wt-icon-sex-f { 1463 content: url(icons/sex-female.png); 1464} 1465 1466.wt-icon-sex-m { 1467 content: url(icons/sex-male.png); 1468} 1469 1470.wt-icon-sex-u { 1471 content: url(icons/sex-unknown.png); 1472} 1473 1474.wt-icon-sex-x { 1475 content: url(icons/sex-unknown.png); 1476} 1477 1478.wt-icon-source { 1479 content: url(icons/source.png); 1480} 1481 1482.wt-icon-submitter { 1483 content: url(icons/individual.png); 1484} 1485 1486.wt-icon-warning { 1487 content: url(icons/warning.png); 1488} 1489 1490.wt-icon-zoom-in { 1491 content: url(clouds/icons/zoom-in.png); 1492} 1493 1494.wt-icon-zoom-out { 1495 content: url(clouds/icons/zoom-out.png); 1496} 1497 1498/* Miscellaneous images */ 1499.icon-indis { 1500 content: url(clouds/images/indis.png); 1501} 1502 1503.icon-patriarch { 1504 content: url(clouds/images/patriarch.png); 1505} 1506 1507.icon-pedigree { 1508 content: url(clouds/images/pedigree.png); 1509} 1510 1511.icon-sfamily { 1512 content: url(clouds/images/sfamily.png); 1513} 1514 1515.icon-user_add { 1516 content: url(clouds/images/user_add.png); 1517} 1518 1519/* Census assistant */ 1520.wt-census-assistant-form-control:focus { 1521 min-width: 12rem; 1522} 1523 1524/* Some blocks show a reduced version on the right-hand side. */ 1525.wt-side-blocks .wt-side-block-optional { 1526 display: none !important; 1527} 1528 1529/* my page chart enhancements */ 1530.wt-block-content-charts { 1531 overflow: auto; 1532} 1533 1534/* Some charts are wider than the page. */ 1535.wt-chart { 1536 overflow-x: auto; 1537 overflow-y: hidden; 1538} 1539 1540/* Fit thumbnail into parent on charts */ 1541.select2-selection.select2-selection--single { 1542 min-height: 36px; 1543 height: auto; 1544 padding: 2px 0; 1545} 1546 1547.select2-container .select2-selection--single .select2-selection__rendered { 1548 padding-left: 2px; 1549} 1550 1551.select2-selection--single .NAME { 1552 padding-left: 4px; 1553} 1554 1555/* Some menus (e.g. languages) can be longer than a page */ 1556.dropdown-menu { 1557 max-height: 30rem; 1558 overflow-x: hidden; 1559} 1560 1561/* Forms */ 1562.col-form-label { 1563 font-weight: bold; 1564} 1565