xref: /webtrees/resources/css/xenea.css (revision 379e735bf03b2ef02d2bf328828aaefcfc3d572a)
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 "_charts.css";
20@import "_lists.css";
21@import "_list-sources.css";
22@import "_mime-type-icons.css";
23@import "_on-screen-keyboard.css";
24@import "_tab-relatives.css";
25
26/* Colors for chart boxes, etc. */
27:root {
28  --sex-f-fg: #ff2080;
29  --sex-m-fg: #84beff;
30  --sex-u-fg: #008080;
31  --sex-f-bg: #fff0f0;
32  --sex-m-bg: #f0f9ff;
33  --sex-u-bg: #ffffff;
34	--chart-line: solid gray thin;
35	--chart-line-radius: 1rem;
36}
37
38/* Override Bootstrap formatting */
39.btn-link {
40	padding-left: 0.25rem;
41	padding-right: 0.25rem;
42}
43
44.table-given-name {
45    overflow-x: hidden;
46}
47
48.container-fluid {
49    padding-left: 5px;
50    padding-right: 5px;
51}
52
53table {
54	border-collapse: separate;
55}
56
57/*
58 * Pages have the following high-level structure:
59 *
60 * wt-global wt-theme-<THEME> wt-route-<ROUTE>
61 * +---wt-header-wrapper
62 * |   +---wt-header-container
63 * |       +---wt-header-content
64 * |           +---wt-accessibility-links
65 * |           +---wt-site-logo
66 * |           +---wt-site-title
67 * |           +---wt-header-search
68 * |           |   +---wt-header-search-form
69 * |           |       +---wt-header-search-field
70 * |           |       +---wt-header-search-button
71 * |           +---wt-secondary-navigation
72 * |           |   +---wt-user-menu
73 * |           +---wt-primary-navigation
74 * |               +---wt-genealogy-menu
75 * +---wt-main-wrapper
76 * |   +---wt-main-container
77 * |       +---wt-main-content
78 * |           +---wt-messages
79 * |           +---wt-page-title
80 * |           +---wt-page-options wt-page-options-xxxxx
81 * |           +---wt-page-content
82 * +---wt-footers
83 *     +---wt-footer wt-footer-contact
84 *     +---wt-footer wt-footer-cookies
85 *     +---wt-footer wt-footer-page-views
86 *     +---wt-footer wt-footer-powered-by
87 */
88
89.wt-global {
90	color: #006;
91}
92
93.wt-header-wrapper {
94	background-image: linear-gradient(to right, #06d, #acf);
95	border-bottom: 2px solid #0073cf;
96}
97
98.wt-header-container {
99	color: #fff;
100}
101
102.wt-header-content {
103}
104
105.wt-accessibility-links {
106}
107
108.wt-site-logo {
109	display: none;
110}
111
112.wt-site-title {
113	order: 1;
114	flex: 0 0 calc(100% - 15rem);
115	font-size: 1.5rem;
116	margin: 0.5rem 0;
117}
118
119.wt-header-search {
120	order: 2;
121	flex: 0 0 15rem;
122	margin: 0.25rem 0;
123}
124
125.wt-header-search-form {
126}
127
128.wt-header-search-field {
129}
130
131.wt-header-search-button {
132	color: #000;
133	background: #ddd;
134	border: 0;
135}
136
137.wt-header-search-button .fa-search::before {
138	content: ">";
139}
140
141.wt-secondary-navigation {
142	order: 3;
143	background-image: linear-gradient(#1548a7, #81bafc, #1548a7);
144	/* Extend to full page width */
145	flex: 0 1 100vw;
146	max-width: 100vw;
147	/* Recalculate margins for content */
148	margin: 0 calc(50% - 50vw);
149	padding: 0 calc(50vw - 50%);
150}
151
152.wt-user-menu {
153	flex-wrap: nowrap;
154	padding: 0.25rem 0;
155	justify-content: space-between;
156}
157
158.wt-user-menu a.nav-link {
159	color: #fff;
160	font-weight: bold;
161}
162
163.wt-user-menu .dropdown-toggle::after {
164	display: none;
165}
166
167.wt-primary-navigation {
168	order: 4;
169	background: #fff;
170	/* Extend to full page width */
171	flex: 0 1 100vw;
172	max-width: 100vw;
173	/* Recalculate margins for content */
174	margin: 0 calc(50% - 50vw);
175	padding: 0 calc(50vw - 50%);
176}
177
178.wt-genealogy-menu {
179	justify-content: center;
180}
181
182.wt-genealogy-menu .nav-item {
183	text-align: center;
184	min-width: 5rem;
185	padding-top: 0.25rem;
186}
187
188.wt-genealogy-menu .nav-link::before {
189	display: block;
190}
191
192.wt-genealogy-menu .dropdown-toggle::after {
193	display: none;
194}
195
196.wt-genealogy-menu .dropdown-menu {
197	border-radius: 0;
198}
199
200.wt-genealogy-menu .dropdown-item {
201	padding: 0 0.25rem;
202}
203
204.wt-genealogy-menu .dropdown-item::before {
205	vertical-align: top;
206	padding: 0 0.25rem;
207}
208
209.menu-tree .nav-link::before {
210	content: url(xenea/menu/tree.png);
211}
212
213.menu-tree .dropdown-item::before {
214	content: url(xenea/menu/tree-tree.png);
215}
216
217.menu-chart .nav-link::before {
218	content: url(xenea/menu/chart.png);
219}
220
221.menu-chart-ancestry::before {
222	content: url(xenea/menu/chart-ancestors.png);
223}
224
225.menu-chart-compact::before {
226	content: url(xenea/menu/chart-compact.png);
227}
228
229.menu-chart-descendants::before {
230	content: url(xenea/menu/chart-descendants.png);
231}
232
233.menu-chart-familybook::before {
234	content: url(xenea/menu/chart-family-book.png);
235}
236
237.menu-chart-fanchart::before {
238	content: url(xenea/menu/chart-fanchart.png);
239}
240
241.menu-chart-hourglass::before {
242	content: url(xenea/menu/chart-hourglass.png);
243}
244
245.menu-chart-lifespan::before {
246	content: url(xenea/menu/chart-lifespan.png);
247}
248
249.menu-chart-pedigree::before {
250	content: url(xenea/menu/chart-pedigree.png);
251}
252
253.menu-chart-pedigreemap::before {
254	content: url(xenea/menu/chart-pedigree-map.png);
255}
256
257.menu-chart-relationship::before {
258	content: url(xenea/menu/chart-relationship.png);
259}
260
261.menu-chart-statistics::before {
262	content: url(xenea/menu/chart-statistics.png);
263}
264
265.menu-chart-timeline::before {
266	content: url(xenea/menu/chart-timeline.png);
267}
268
269.menu-chart-tree::before {
270	content: url(xenea/menu/chart-tree.png);
271}
272
273.menu-list .nav-link::before {
274	content: url(xenea/menu/list.png);
275}
276
277.menu-branches::before {
278	content: url(xenea/menu/branches.png);
279}
280
281.menu-list-fam::before {
282	content: url(xenea/menu/list-fam.png);
283}
284
285.menu-list-indi::before {
286	content: url(xenea/menu/list-indi.png);
287}
288
289.menu-list-note::before {
290	content: url(xenea/menu/list-note.png);
291}
292
293.menu-list-obje::before {
294	content: url(xenea/menu/list-obje.png);
295}
296
297.menu-list-plac::before {
298	content: url(xenea/menu/list-plac.png);
299}
300
301.menu-list-repo::before {
302	content: url(xenea/menu/list-repo.png);
303}
304
305.menu-list-sour::before {
306	content: url(xenea/menu/list-sour.png);
307}
308
309.menu-calendar .nav-link::before {
310	content: url(xenea/menu/calendar.png);
311}
312
313.menu-calendar-day::before {
314	content: url(xenea/menu/calendar-calendar.png);
315}
316
317.menu-calendar-month::before {
318	content: url(xenea/menu/calendar-calendar.png);
319}
320
321.menu-calendar-year::before {
322	content: url(xenea/menu/calendar-calendar.png);
323}
324
325.menu-report .nav-link::before {
326	content: url(xenea/menu/report.png);
327}
328
329.menu-report .dropdown-item::before {
330	content: url(xenea/menu/report-report.png);
331}
332
333.menu-search .nav-link::before {
334	content: url(xenea/menu/search.png);
335}
336
337.menu-search .dropdown-item::before {
338	content: url(xenea/menu/search-search.png);
339}
340
341.menu-help .nav-link::before {
342	content: url(xenea/menu/help.png);
343}
344
345.menu-clippings .nav-link::before {
346	content: url(xenea/menu/clippings.png);
347}
348
349.menu-clippings-add::before {
350	content: url(xenea/menu/clippings-add.png);
351}
352
353.menu-clippings-cart::before {
354	content: url(xenea/menu/clippings-cart.png);
355}
356
357.menu-clippings-download::before {
358	content: url(xenea/menu/edit-preferences.png);
359}
360
361.menu-clippings-empty::before {
362	content: url(xenea/menu/edit-delete.png);
363}
364
365.menu-fam .nav-link::before {
366	content: url(xenea/menu/fam.png);
367}
368
369.menu-fam-change::before {
370	content: url(xenea/menu/edit-fam.png);
371}
372
373.menu-fam-addchil::before {
374	content: url(xenea/menu/edit-fam.png);
375}
376
377.menu-fam-orderchil::before {
378	content: url(xenea/menu/edit-fam.png);
379}
380
381.menu-fam-del::before {
382	content: url(xenea/menu/edit-delete.png);
383}
384
385.menu-fam-addfav::before {
386	content: url(xenea/menu/edit-add-favorite.png);
387}
388
389.menu-fam-editraw::before {
390	content: url(xenea/menu/edit-gedcom.png);
391}
392
393.menu-indi .nav-link::before {
394	content: url(xenea/menu/indi.png);
395}
396
397.menu-indi-addname::before {
398	content: url(xenea/menu/edit-indi.png);
399}
400
401.menu-indi-editsex::before {
402	content: url(xenea/menu/edit-indi.png);
403}
404
405.menu-indi-del::before {
406	content: url(xenea/menu/edit-delete.png);
407}
408
409.menu-indi-addfav::before {
410	content: url(xenea/menu/edit-add-favorite.png);
411}
412
413.menu-indi-editraw::before {
414	content: url(xenea/menu/edit-gedcom.png);
415}
416
417.menu-obje .nav-link::before {
418	content: url(xenea/menu/obje.png);
419}
420
421.menu-obje-edit::before {
422	content: url(xenea/menu/edit-obje.png);
423}
424
425.menu-obje-link::before {
426	content: url(xenea/menu/edit-link.png);
427}
428
429.menu-obje-del::before {
430	content: url(xenea/menu/edit-delete.png);
431}
432
433.menu-obje-addfav::before {
434	content: url(xenea/menu/edit-add-favorite.png);
435}
436
437.menu-obje-editraw::before {
438	content: url(xenea/menu/edit-gedcom.png);
439}
440
441.menu-note .nav-link::before {
442	content: url(xenea/menu/note.png);
443}
444
445.menu-note-edit::before {
446	content: url(xenea/menu/edit-note.png);
447}
448
449.menu-note-del::before {
450	content: url(xenea/menu/edit-delete.png);
451}
452
453.menu-note-addfav::before {
454	content: url(xenea/menu/edit-add-favorite.png);
455}
456
457.menu-note-editraw::before {
458	content: url(xenea/menu/edit-gedcom.png);
459}
460
461.menu-record .nav-link::before {
462	content: url(xenea/menu/indi.png);
463}
464
465.menu-record-del::before {
466	content: url(xenea/menu/edit-delete.png);
467}
468
469.menu-record-editraw::before {
470	content: url(xenea/menu/edit-gedcom.png);
471}
472
473.menu-repo .nav-link::before {
474	content: url(xenea/menu/repo.png);
475}
476
477.menu-repo-edit::before {
478	content: url(xenea/menu/edit-repo.png);
479}
480
481.menu-repo-del::before {
482	content: url(xenea/menu/edit-delete.png);
483}
484
485.menu-repo-addfav::before {
486	content: url(xenea/menu/edit-add-favorite.png);
487}
488
489.menu-repo-editraw::before {
490	content: url(xenea/menu/edit-gedcom.png);
491}
492
493.menu-sour .nav-link::before {
494	content: url(xenea/menu/sour.png);
495}
496
497.menu-sour-edit::before {
498	content: url(xenea/menu/edit-sour.png);
499}
500
501.menu-sour-del::before {
502	content: url(xenea/menu/edit-delete.png);
503}
504
505.menu-sour-addfav::before {
506	content: url(xenea/menu/edit-add-favorite.png);
507}
508
509.menu-sour-editraw::before {
510	content: url(xenea/menu/edit-gedcom.png);
511}
512
513.menu-story .nav-link::before {
514	content: url(xenea/menu/story.png);
515}
516
517.wt-main-container {
518	/* Space between the header/footer and the main content. */
519	padding-top: 1rem;
520	padding-bottom: 1rem;
521}
522
523.wt-main {
524}
525
526.wt-messages {
527}
528
529.wt-page-title {
530	text-align: center;
531}
532
533.wt-page-options {
534}
535
536.wt-page-content {
537}
538
539.wt-page-options .form-group {
540	margin-bottom: 2px;
541}
542
543.wt-page-options-label {
544	color: #006;
545	background-color: #95b8e0;
546	border-left: 2px solid transparent;
547	border-right: 2px solid transparent;
548}
549
550.wt-page-options-value {
551	background-color: #ecf5ff;
552	border: thin solid #c3dfff;
553	padding: 0.25rem 0.75rem;
554}
555
556.wt-page-content {
557	margin-top: 1rem;
558}
559
560.wt-footers {
561}
562
563.wt-footer {
564}
565
566.wt-footer-contact {
567}
568
569.wt-footer-cookies {
570	background: #aaa;
571	color: #fff;
572	transition: height 0.5s;
573}
574
575.wt-footer-page-views {
576}
577
578.wt-footer-powered-by {
579}
580
581.wt-footer-powered-by-webtrees {
582	width: 100px;
583	height: 21px;
584	content: url(images/powered-by-webtrees.png);
585}
586
587/*
588 * The tree/user home pages
589 *
590 * wt-home-page / wt-user-page
591 * +---wt-main-blocks
592 * |   +---wt-block, wt-block-AAA
593 * |   +---wt-block, wt-block-BBB
594 * |   +---wt-block, wt-block-CCC
595 * +---wt-side-blocks
596 *     +---wt-block, wt-block-XXX
597 *     +---wt-block, wt-block-YYY
598 *     +---wt-block, wt-block-ZZZ
599 *
600 * Each block as the structure
601 * wt-block, wt-block-XXX
602 * +---wt-block-header, wt-block-header-XXX
603 * +---wt-block-content, wt-block-content-XXX
604 */
605
606.wt-block {
607	background-color: #edf7fd;
608	border: thin solid #81a9cb;
609}
610
611.wt-block-header {
612	background-color: #edf7fd;
613	border-bottom: none;
614	font-weight: bold;
615}
616
617.wt-block-content {
618}
619
620.wt-block-content .list_table {
621	border-spacing: 1px;
622	border: solid #81a9cb 1px;
623	border-right: 0;
624}
625
626.wt-block-content .list_value,
627.wt-block-content .list_value_wrap {
628	border: 0;
629	border-top: solid #81a9cb 1px;
630	border-right: solid #81a9cb 1px;
631}
632
633/*
634 * The individual page.
635 *
636 * wt-route-individual
637 * +---wt-header-wrapper
638 */
639
640.wt-individual-silhouette {
641	content: url(images/individual-silhouette-unknown.png);
642}
643
644.wt-individual-silhouette-f {
645	content: url(images/individual-silhouette-female.png);
646}
647
648.wt-individual-silhouette-m {
649	content: url(images/individual-silhouette-male.png);
650}
651
652/*
653 * Chart-boxes are used to build the various charts.
654 * Each type of chart will set its own size and hide/show content.
655 *
656 * wt-chart-box
657 * +--- wt-chart-box-thumbnail
658 * +--- wt-chart-box-extra
659 *      +--- wt-chart-box-zoom
660 *           +--- wt-chart-box-icon
661 *           +--- wt-chart-box-dropdown wt-chart-box-zoom-dropdown
662 *      +--- wt-chart-box-links
663 *           +--- wt-chart-box-icon
664 *           +--- wt-chart-box-dropdown wt-chart-box-links-dropdown
665 * +--- wt-chart-box-name
666 * +--- wt-chart-box-lifespan
667 * +--- wt-chart-box-facts
668 *     +--- wt-chart-box-fact
669 */
670.wt-chart-box,
671.wt-chart-box-menu {
672	background: var(--sex-u-bg);
673	border: dashed var(--sex-u-fg) thin;
674}
675
676.wt-chart-box {
677	height: 5rem;
678	padding: 2px;
679	line-height: 1.1;
680}
681
682.wt-chart-box-f,
683.wt-chart-box-f .wt-chart-box-dropdown {
684	background: var(--sex-f-bg);
685	border: solid var(--sex-f-fg) thin;
686}
687
688.wt-chart-box-m,
689.wt-chart-box-m .wt-chart-box-dropdown {
690	background: var(--sex-m-bg);
691	border: solid var(--sex-m-fg) thin;
692}
693
694#content #home-page {
695    margin-left: 5px;
696}
697
698/* ====== Round Corners ======== */
699
700a {
701	color: #00f;
702	text-decoration: none;
703}
704
705a:hover {
706	color: #f00;
707	text-decoration: none;
708}
709
710:focus {
711	outline-style: none;
712}
713
714.flash-messages {
715	clear: both;
716	text-align: center;
717}
718
719img.block,
720#mycart img {
721	border: 0;
722	height: 25px;
723	vertical-align: middle;
724}
725
726.topbottombar {
727	background-color: #c3dfff;
728	color: #fff;
729	font-size: 12px;
730	font-weight: bold;
731	padding: 4px;
732	text-align: center;
733}
734
735#mycart a img {
736	height: 15px;
737}
738
739.button {
740	width: 60px;
741}
742
743.alpha_index {
744	color: #999;
745}
746
747.news_box:target,
748#gedcom_stats:target {
749	background-color: #ffc;
750}
751
752/* families tab person box */
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: #006;
765	font-size: 12px;
766	background-color: #c3dfff;
767	border: solid #81a9cb 1px;
768	font-weight: bold;
769	text-align: center;
770}
771
772.list_value,
773.list_value_wrap {
774	background-color: #edf7fd;
775	font-size: 12px;
776	border: solid #81a9cb 1px;
777	vertical-align: top;
778	padding: 4px;
779}
780
781.list_label,
782.list_value {
783	white-space: nowrap;
784}
785
786.list_label_wrap,
787.list_value_wrap {
788	white-space: normal;
789}
790
791div.fact_SHARED_NOTE {
792	clear: both;
793}
794
795/* Table of genealogical facts */
796
797.wt-facts-table caption {
798	caption-side: top;
799}
800
801.wt-facts-table th {
802	background-color: #c3dfff;
803	color: #006;
804	text-align: center;
805	font-weight: normal;
806	min-width: 20%;
807}
808
809.wt-facts-table td {
810	background-color: #ecf5ff;
811	border: solid #c3dfff 1px;
812}
813
814.wt-facts-table .wt-gender-M td {
815	background-color: #f0f9ff;
816	border-color: #84beff;
817}
818
819.wt-facts-table .wt-gender-F td {
820	background-color: #fff0f0;
821	border-color: #ff2080;
822}
823
824.name1 {
825	font-weight: bold;
826	font-size: 12px;
827}
828
829.name2 {
830	font-size: 16px;
831	}
832
833a:hover .name1, a:hover .name2 {
834	color: #f00;
835	font-weight: bold;
836	font-size: 12px;
837}
838
839.details0,
840.details1 {
841	font-size: 11px;
842}
843
844.details2 {
845	font-size: 12px;
846}
847
848.details_label {
849	font-weight: bold;
850}
851
852.name_head {
853	color: #555;
854	font-size: 16px;
855	font-weight: bold;
856	line-height: 2;
857	padding: 0 5px;
858}
859
860.date {
861	color: #337;
862}
863
864.label {
865	font-weight: bold;
866}
867
868.error {
869	color: #d00;
870	font-weight: bold;
871}
872
873.largeError {
874	color: #d00;
875	font-size: large;
876	font-weight: bold;
877}
878
879.warning {
880	color: #f00;
881	font-weight: bold;
882}
883
884.indent {
885	padding-left: 20px;
886}
887
888.image {
889	height: 150px;
890	padding: 5px;
891	margin: 2px;
892}
893
894.thumbnail {
895	height: auto;
896	padding: 3px;
897}
898
899.icon {
900	border: 0;
901	padding: 0 5px;
902}
903
904.subheaders {
905	font-weight: bold;
906	font-size: 15px;
907	margin-top: 15px;
908	vertical-align: bottom;
909}
910
911.parentdeath {
912	border: thin solid #888;
913	padding: 1px;
914}
915
916.source_citations {
917	display: none;
918}
919
920.selected-option {
921	background-color: #edf7fd;
922}
923
924.border1 {
925	border: solid #000 1px;
926}
927
928.journal_box {
929	padding: 3pt;
930	border: thin solid #aaa;
931	overflow: visible;
932}
933
934.news_box {
935	background-color: #edf7fd;
936	border-top: solid #81a9cb 1px;
937}
938
939.news_title {
940	font-weight: bold;
941	font-size: 14px;
942}
943
944.news_date {
945	margin-bottom: 12px;
946}
947
948.current_day {
949	font-weight: bold;
950	font-size: 16px;
951}
952
953.cal_day {
954	float: left;
955	font-weight: bold;
956}
957
958.rtl_cal_day {
959	direction: rtl;
960	float: right;
961	color: #00f;
962	font-weight: bold;
963}
964
965.helpcontent {
966	margin-left: 10px;
967	margin-right: 10px;
968}
969
970.helpcontent dt {
971	clear: both;
972}
973
974#user-page h1 {
975	margin: 0.25em auto 0.6em;
976}
977
978.tvertline {
979	vertical-align: bottom;
980}
981
982#childbox {
983	padding: 5px;
984	position: absolute;
985	display: none;
986	text-align: start;
987	white-space: nowrap;
988	top: 20px;
989	left: 0;
990}
991
992.layout3 #childbox {
993	top: auto;
994	bottom: 20px;
995}
996
997#childbox a.name1 {
998	display: block;
999	margin-left: 5px;
1000}
1001
1002.person0 {
1003	background-color: #aaf;
1004	border: outset #aaf 1px;
1005	vertical-align: top;
1006}
1007
1008.person1 {
1009	background-color: #afa;
1010	border: outset #afa 1px;
1011	vertical-align: top;
1012}
1013
1014.person2 {
1015	background-color: #faa;
1016	border: outset #faa 1px;
1017	vertical-align: top;
1018}
1019
1020.person3 {
1021	background-color: #55f;
1022	border: outset #55f 1px;
1023	vertical-align: top;
1024}
1025
1026.person4 {
1027	background-color: #f55;
1028	border: outset #f55 1px;
1029	vertical-align: top;
1030}
1031
1032.person5 {
1033	background-color: #5f5;
1034	border: outset #5f5 1px;
1035	vertical-align: top;
1036}
1037
1038.listlog {
1039	line-height: 20pt;
1040}
1041
1042.starredname {
1043	text-decoration: underline;
1044}
1045
1046.search_hit {
1047	background-color: #ff0;
1048}
1049
1050.search_item {
1051	font-weight: 600;
1052}
1053
1054.descriptionbox {
1055	color: #006;
1056	font-size: 12px;
1057	background-color: #c3dfff;
1058	vertical-align: top;
1059	padding: 3px;
1060}
1061
1062.optionbox {
1063	background-color: #ecf5ff;
1064	font-size: 1rem;
1065	border: solid #c3dfff 1px;
1066	vertical-align: top;
1067	white-space: nowrap;
1068	padding: 3px;
1069}
1070
1071.vmiddle {
1072	vertical-align: middle;
1073}
1074
1075.red {
1076	color: #f00;
1077}
1078
1079.wt-relation-fact,
1080.wt-historic-fact {
1081	opacity: 0.8;
1082}
1083
1084.messagebox {
1085	background-color: #c2ceef;
1086	border: solid #81a9cb 1px;
1087}
1088
1089/* ---Pending edits--- */
1090.wt-new {
1091	outline: solid blue 1px;
1092}
1093
1094.wt-old {
1095	outline: solid red 1px;
1096}
1097
1098.tag_cloud {
1099	text-align: center;
1100}
1101
1102.tag_cloud a {
1103	white-space: nowrap;
1104}
1105
1106.nowrap {
1107	white-space: nowrap;
1108}
1109
1110.wrap {
1111	white-space: normal;
1112}
1113
1114.statistics-page {
1115	text-align: center;
1116}
1117
1118.gchart {
1119	border: solid #81a9cb 1px;
1120}
1121
1122#facts_content dd {
1123	float: left;
1124	width: 70%;
1125}
1126
1127/* this keeps the tag color the same when it is a link as when not */
1128
1129.place {
1130	padding-top: 5px;
1131}
1132
1133#pending h2 {
1134	text-align: center;
1135	margin-bottom: 20px;
1136}
1137
1138#pending h3 {
1139	text-align: center;
1140	margin-top: 20px;
1141}
1142
1143#pending .list_value {
1144	padding: 3px;
1145	text-align: center;
1146	vertical-align: middle;
1147	white-space: nowrap;
1148}
1149
1150#pending .indent {
1151	padding: 0;
1152}
1153
1154/* --- reportengine.php --- */
1155#reportengine-page table {
1156	margin: 20px auto;
1157}
1158
1159#reportengine-page .report-type {
1160	overflow: hidden;
1161	margin: auto;
1162	width: 180px;
1163}
1164
1165#reportengine-page .report-type div {
1166	float: left;
1167	margin: 0 20px;
1168}
1169
1170#reportengine-page .report-type p {
1171	margin: 0;
1172	text-align: center;
1173}
1174
1175/* ======== List styles ====== */
1176.surname-list,
1177.givn-list {
1178	margin: 5px auto;
1179}
1180
1181.surname-list td {
1182	vertical-align: top;
1183}
1184
1185.indi-list .stats,
1186.fam-list .stats {
1187	margin: 0 auto;
1188	width: auto;
1189}
1190
1191.source-list th,
1192.note-list th,
1193.repo-list th,
1194.media-list th,
1195.indi-list th,
1196.fam-list th,
1197.surname-list th,
1198.givn-list th {
1199	cursor: pointer;
1200	font-weight: 600;
1201	padding: 2px 4px;
1202	white-space: nowrap;
1203}
1204
1205.source-list th:last-child,
1206.note-list th:last-child,
1207.repo-list th:last-child {
1208	margin: 0 -2px 1px 1px;
1209	padding: 3px 0 4px;
1210	width: 24px;
1211}
1212
1213.givn-list th {
1214	cursor: pointer;
1215	white-space: nowrap;
1216	padding: 2px;
1217	text-align: center;
1218}
1219
1220#source-details h2,
1221#sourcelist-page h2,
1222#note-details h2,
1223#notelist-page h2,
1224#repo-details h2,
1225#repolist-page h2,
1226#media-details h2,
1227#statistics-page h2 {
1228	margin-bottom: 20px;
1229	text-align: center;
1230}
1231
1232#source-edit,
1233#note-edit,
1234#repo-edit,
1235#media-edit {
1236	overflow-x: auto;
1237}
1238
1239.media-list td img {
1240	display: block;
1241	height: 40px;
1242	width: auto;
1243	margin: 3px auto;
1244}
1245
1246.filtersH,
1247.filtersF {
1248	margin: 4px;
1249}
1250
1251.filtersH img {
1252	margin-bottom: 2px;
1253}
1254
1255.list-charts {
1256	text-align: center;
1257}
1258
1259#search-result-tabs h3 {
1260	text-align: center;
1261}
1262
1263#searchAccordion-indi,
1264#searchAccordion-fam,
1265#searchAccordion-source,
1266#searchAccordion-note {
1267	margin: auto;
1268	width: 99%;
1269}
1270
1271#place-hierarchy h2,
1272#place-hierarchy h4 {
1273	text-align: center;
1274}
1275
1276#main_select,
1277#available_select,
1278#right_select {
1279	min-width: 150px;
1280}
1281
1282/* ==== FAQ table styles ===== */
1283table.faq {
1284	background-color: #e0e0e0;
1285	margin: 5px 0 50px 5px;
1286	width: 98%;
1287}
1288
1289table.faq tr:nth-child(odd) td {
1290	background-color: #e7eef3;
1291}
1292
1293div.faq_title {
1294	background-color: #e0e0e0;
1295	margin: 1em 0;
1296	padding: .25em;
1297	font-weight: bold;
1298	width: 98%;
1299}
1300
1301div.faq_body {
1302	clear: both;
1303	padding: 0 1em;
1304}
1305
1306.faq_top {
1307	float: right;
1308}
1309
1310/* === Positioning edit, copy, delete links === */
1311/* General use */
1312.editfacts {
1313	clear: left;
1314	padding-top: 15px;
1315}
1316
1317/* ======== Indi header ====== */
1318#indi_header {
1319	overflow: hidden;
1320	border-radius: 3px;
1321	border: 1px solid #b2c7d7;
1322	margin: 0 0 5px 10px;
1323	padding: 10px 0;
1324}
1325
1326#indi_header h3 {
1327	font-size: 90%;
1328	font-weight: bold;
1329	margin: 0;
1330	padding: 0 10px 0 30px;
1331	text-align: left;
1332	overflow: hidden;
1333	position: relative;
1334}
1335
1336#indi_header .name_one {
1337	font-size: 1.5em;
1338}
1339
1340#indi_header h3 .details1 {
1341	font-size: 1.0em;
1342}
1343
1344#indi_header h3 .header_age {
1345	padding: 5px 0 5px 5px;
1346	float: right;
1347	font-weight: normal;
1348	font-size: 65%;
1349}
1350
1351#indi_header h3 a {
1352	display: inline;
1353}
1354
1355#indi_header a {
1356	color: #337;
1357	font-size: 0.75em;
1358	font-weight: normal;
1359}
1360
1361#indi_header a:hover {
1362	color: #f00;
1363}
1364
1365#indi_mainimage {
1366	float: left;
1367	padding: 0 10px;
1368}
1369
1370#header_accordion1 {
1371	padding: 0 10px 0 0;
1372	overflow: hidden;
1373}
1374
1375#header_accordion1 .indi_name_details {
1376	margin: 0;
1377	overflow: hidden;
1378	padding: 5px;
1379}
1380
1381.indi_name_details .name1 {
1382	font-weight: normal;
1383	padding-top: 5px;
1384	font-size: inherit;
1385}
1386
1387#indi_header a.warning {
1388	color: #f00;
1389	font-size: 1em;
1390}
1391
1392#indi_note {
1393	margin: 0 0 5px;
1394}
1395
1396.indi_table {
1397	clear: left;
1398}
1399
1400#sex {
1401	float: right;
1402}
1403
1404#dates {
1405	float: right;
1406}
1407
1408#individual-names .wt-icon-edit,
1409#individual-names .wt-icon-delete {
1410	float: right;
1411}
1412
1413#indi_note .fact_NOTE {
1414	float: left;
1415	margin: 0 5px 0 0;
1416}
1417
1418#indi_note .fact_SOUR {
1419	margin: 3px 0;
1420}
1421
1422#indi_note .fact_SOUR a {
1423	font-size: 100%;
1424}
1425
1426#indi_note .fact_NOTE,
1427#indi_note .fact_SOUR {
1428	clear: both;
1429}
1430
1431/* markdown formatting */
1432
1433.markdown {
1434	/* Tables and pre-formatted text can break the layout. */
1435	overflow-x: auto;
1436}
1437
1438.markdown p {
1439	margin: 0 0 0.5em;
1440	white-space: pre-wrap;
1441}
1442
1443.markdown table {
1444	border-collapse: collapse;
1445	margin-bottom: 5px;
1446}
1447
1448.markdown th {
1449	font-weight: bold;
1450}
1451
1452.markdown td,
1453.markdown th {
1454	border: solid thin #000;
1455	padding: 3px;
1456}
1457
1458.odometer {
1459	font-family: courier, monospace;
1460	font-weight: bold;
1461	background: #000;
1462	color: #fff;
1463}
1464
1465/* ======== Indi tabs ======== */
1466/* Facts & Events tab */
1467.media-display-image {
1468	float: left;
1469}
1470
1471.media-display-title {
1472	float: left;
1473	font-style: italic;
1474	margin: 10px;
1475}
1476
1477/* Sidebar - Family navigator */
1478.wt-family-navigator-dropdown {
1479	background: #edf7fd;
1480}
1481
1482.wt-family-navigator-dropdown-heading {
1483	font-weight: bold;
1484	font-size: inherit;
1485	color: inherit;
1486}
1487
1488/* Sidebar - Descendants */
1489#sb_content_descendancy {
1490	margin-top: 5px;
1491}
1492
1493#sb_desc_content {
1494	margin-left: 3px;
1495	font-size: 0.8em;
1496}
1497
1498#sb_desc_content ul {
1499	padding: 0;
1500	margin: 0;
1501}
1502
1503.sb_desc_indi_li {
1504	list-style-type: none;
1505}
1506
1507/* Individuals and Families */
1508#sidebar-content-individuals,
1509#sidebar-content-families {
1510	margin-top: 5px;
1511}
1512
1513.sb_indi_surname_li,
1514.sb_fam_surname_li {
1515	list-style-image: url(xenea/images/plus.png);
1516}
1517
1518.name_tree_div ul {
1519	padding: 0;
1520	margin: 0;
1521}
1522
1523.name_tree_div li {
1524	list-style: none;
1525	margin: 0;
1526	padding: 0;
1527}
1528
1529/* Clippings */
1530#sb_clippings_content ul {
1531	padding: 0;
1532	margin: 0;
1533}
1534
1535#sb_clippings_content li {
1536	list-style: none;
1537	margin: 0;
1538	padding: 0;
1539	white-space: nowrap;
1540}
1541
1542/* Extra info */
1543#sb_content_extra_info {
1544	font-size: 80%;
1545	font-weight: bold;
1546	margin-top: 1px;
1547	overflow: hidden;
1548	padding: 5px;
1549}
1550
1551#sb_content_extra_info .editfacts {
1552	float: right;
1553	margin-top: -30px;
1554}
1555
1556#sb_content_extra_info a {
1557	display: block;
1558}
1559
1560#sb_content_extra_info span {
1561	font-weight: normal;
1562}
1563
1564#sb_content_extra_info span a {
1565	display: inline;
1566}
1567
1568#sb_content_extra_info #hitcounter {
1569	border-top: 1px solid #b2c7d7;
1570	font-weight: bold;
1571	padding-top: 5px;
1572}
1573
1574/* http://www.jacklmoore.com/colorbox */
1575#colorbox,
1576#cboxOverlay,
1577#cboxWrapper {
1578	position: absolute;
1579	top: 0;
1580	left: 0;
1581	z-index: 9999;
1582	overflow: hidden;
1583}
1584
1585#cboxWrapper {
1586	max-width: none;
1587}
1588
1589#cboxOverlay {
1590	position: fixed;
1591	width: 100%;
1592	height: 100%;
1593	background: #fff;
1594}
1595
1596#cboxContent {
1597	background: #fff;
1598	overflow: hidden;
1599	position: relative;
1600	padding: 0.5rem;
1601	border: 0.25rem solid #ccc;
1602}
1603
1604#cboxLoadingOverlay,
1605#cboxLoadingGraphic {
1606	position: absolute;
1607	top: 0;
1608	left: 0;
1609	width: 100%;
1610	height: 100%;
1611}
1612
1613.cboxPhoto {
1614	float: left;
1615	margin: auto;
1616	border: 0;
1617	display: block;
1618	max-width: none;
1619}
1620
1621#colorbox,
1622#cboxContent,
1623#cboxLoadedContent {
1624	box-sizing: content-box;
1625}
1626
1627#cboxError {
1628	padding: 50px;
1629	border: 1px solid #ccc;
1630}
1631
1632#cboxLoadedContent {
1633	margin-bottom: 28px;
1634}
1635
1636#cboxTitle {
1637	background: #fff;
1638	position: absolute;
1639	bottom: 0.25rem;
1640	left: 0;
1641	margin: 0 3rem;
1642	text-align: center;
1643}
1644
1645#cboxLoadingGraphic {
1646	background: url(images/loading-32x32.gif) no-repeat center center;
1647}
1648
1649#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
1650	background: none;
1651	border: 0;
1652	cursor: pointer;
1653	font-family: "Font Awesome\ 5 Free", sans-serif;
1654	font-weight: 900;
1655	overflow: visible;
1656	padding: 0;
1657	position: absolute;
1658}
1659
1660#cboxSlideshow {
1661	bottom: 0.25rem;
1662	right: 0.25rem;
1663}
1664
1665#cboxPrevious {
1666	bottom: 0.25rem;
1667	left: 0.25rem;
1668}
1669
1670#cboxNext {
1671	bottom: 0.25rem;
1672	left: 1.5rem;
1673}
1674
1675#cboxClose {
1676	top: 0.25rem;
1677	right: 0.25rem;
1678}
1679
1680/* Stories module */
1681.story_title {
1682	padding-top: 12px;
1683	font-size: 13px;
1684	height: 32px;
1685	font-weight: bold;
1686}
1687
1688.story_body {
1689	padding: 20px;
1690	white-space: normal;
1691}
1692
1693.story_edit {
1694	padding: 12px;
1695}
1696
1697/* Stories module */
1698.story_title {
1699	padding-top: 12px;
1700	font-size: 13px;
1701	height: 32px;
1702	font-weight: bold;
1703}
1704
1705.story_body {
1706	padding: 20px;
1707	white-space: normal;
1708}
1709
1710.story_edit {
1711	padding: 12px;
1712}
1713
1714/*-- Fan chart ---- */
1715.fan_chart_menu {
1716	background: #fff;
1717	position: absolute;
1718	display: none;
1719	z-index: 100;
1720}
1721
1722#fan_chart ul {
1723	list-style-type: none;
1724	margin: 0;
1725}
1726
1727/* Lifespans chart */
1728.wt-lifespans-subtitle {
1729	text-align: center;
1730}
1731
1732.wt-lifespans-scale {
1733	white-space: nowrap;
1734}
1735
1736.wt-lifespans-decade {
1737	width: 70px;
1738	height: 60px;
1739	display: inline-block;
1740	background-image: url(images/lifespan-decade.png);
1741	background-position-y: bottom;
1742	background-repeat: no-repeat;
1743	background-size: 70px 37px;
1744}
1745
1746.wt-lifespans-individuals {
1747	background: #fafafa;
1748}
1749
1750.wt-lifespans-individual {
1751
1752}
1753
1754.wt-lifespans-summary {
1755	background: #ffffff;
1756	border: thin solid #000;
1757	z-index: 1;
1758}
1759
1760.wt-lifespans-summary-link {
1761	font-weight: bold;
1762}
1763
1764/*-- timeline  --*/
1765#timeline_chart {
1766	position: relative;
1767	top: 0;
1768	left: 0;
1769}
1770
1771#field_table {
1772	width: 30%;
1773	min-width: 500px;
1774}
1775
1776/*
1777 * Any element that is loaded dynamically has the class wt-ajax-load.
1778 * We can provide a "loading" placeholder for empty elements with this class.
1779 */
1780.wt-ajax-load:empty {
1781	height: 32px;
1782	background: url(images/loading-32x32.gif) no-repeat 50% 50%;
1783}
1784
1785/*
1786 * Default icons are provided by FontAwesome.
1787 * Some icons get mirrored on RTL pages.  Typiclly arrows
1788 */
1789[dir=rtl] .wt-flip-rtl {
1790	transform: scale(-1, 1);
1791}
1792
1793.wt-icon-anniversary {
1794	content: url(images/anniversary.png);
1795}
1796
1797.wt-icon-arrow-down {
1798	content: url(xenea/icons/arrow-down.png);
1799}
1800
1801a > .wt-icon-arrow-down:hover {
1802	content: url(xenea/icons/arrow-down-hover.png);
1803}
1804
1805.wt-icon-arrow-left {
1806	content: url(xenea/icons/arrow-left.png);
1807}
1808
1809a > .wt-icon-arrow-left:hover {
1810	content: url(xenea/icons/arrow-left-hover.png);
1811}
1812
1813.wt-icon-arrow-right {
1814	content: url(xenea/icons/arrow-right.png);
1815}
1816
1817a > .wt-icon-arrow-right:hover {
1818	content: url(xenea/icons/arrow-right-hover.png);
1819}
1820
1821.wt-icon-arrow-up {
1822	content: url(xenea/icons/arrow-up.png);
1823}
1824
1825a > .wt-icon-arrow-up:hover {
1826	content: url(xenea/icons/arrow-up-hover.png);
1827}
1828
1829.wt-icon-collapse {
1830}
1831
1832.wt-icon-coordinates {
1833	content: url(images/coordinates.png)
1834}
1835
1836.wt-icon-expand {
1837}
1838
1839.wt-icon-reorder {
1840	content: url(images/reorder.png);
1841}
1842
1843.wt-icon-sex-f {
1844	content: url(images/sex-female.png);
1845}
1846
1847.wt-icon-sex-m {
1848	content: url(images/sex-male.png);
1849}
1850
1851.wt-icon-sex-u {
1852	content: url(images/sex-unknown.png);
1853}
1854
1855.wt-icon-sex-x {
1856	content: url(images/sex-unknown.png);
1857}
1858
1859.wt-icon-warning {
1860	content: url(images/warning.png);
1861}
1862
1863.wt-icon-zoom-in {
1864	content: url(xenea/images/zoomin.png);
1865}
1866
1867.wt-icon-zoom-out {
1868	content: url(xenea/images/zoomout.png);
1869}
1870
1871/*
1872 * .wt-icon-bing-maps
1873 * .wt-icon-calendar
1874 * .wt-icon-copy
1875 * .wt-icon-delete
1876 * .wt-icon-edit
1877 * .wt-icon-email
1878 * .wt-icon-family
1879 * .wt-icon-help
1880 * .wt-icon-individual
1881 * .wt-icon-google-maps
1882 * .wt-icon-keyboard
1883 * .wt-icon-media
1884 * .wt-icon-note
1885 * .wt-icon-openstreetmap
1886 * .wt-icon-preferences
1887 * .wt-icon-repository
1888 * .wt-icon-source
1889 * .wt-icon-submitter
1890 */
1891.wt-icon-bing-maps::before {
1892	width: 16px;
1893	height: 16px;
1894	content: url(xenea/icons/bing-maps.png);
1895}
1896
1897.wt-icon-calendar::before {
1898	width: 19px;
1899	height: 15px;
1900	content: url(xenea/icons/calendar.png)
1901}
1902
1903.wt-icon-copy::before {
1904	width: 16px;
1905	height: 16px;
1906	content: url(xenea/icons/copy.png)
1907}
1908
1909.wt-icon-delete::before {
1910	width: 16px;
1911	height: 16px;
1912	content: url(xenea/icons/delete.png);
1913}
1914
1915.wt-icon-edit::before {
1916	width: 16px;
1917	height: 16px;
1918	content: url(xenea/icons/edit.png);
1919}
1920
1921.wt-icon-family::before {
1922	width: 14px;
1923	height: 15px;
1924	content: url(xenea/icons/family.png);
1925}
1926
1927.wt-icon-help::before {
1928	width: 16px;
1929	height: 16px;
1930	content: url(xenea/icons/help.png);
1931}
1932
1933.wt-icon-google-maps::before {
1934	width: 16px;
1935	height: 16px;
1936	content: url(xenea/icons/google-maps.png);
1937}
1938
1939.wt-icon-individual::before {
1940	width: 11px;
1941	height: 15px;
1942	content: url(xenea/icons/individual.png);
1943}
1944
1945.wt-icon-keyboard::before {
1946	width: 30px;
1947	height: 15px;
1948	content: url(xenea/icons/keyboard.png);
1949}
1950
1951.wt-icon-media::before {
1952	width: 18px;
1953	height: 16px;
1954	content: url(xenea/icons/media.png);
1955}
1956
1957.wt-icon-note::before {
1958	width: 20px;
1959	height: 20px;
1960	content: url(xenea/icons/note.png);
1961}
1962
1963.wt-icon-openstreetmap::before {
1964	width: 16px;
1965	height: 16px;
1966	content: url(xenea/icons/openstreetmap.png);
1967}
1968
1969.wt-icon-preferences::before {
1970	width: 25px;
1971	height: 25px;
1972	content: url(xenea/icons/preferences.png);
1973}
1974
1975.wt-icon-repository::before {
1976	width: 15px;
1977	height: 15px;
1978	content: url(xenea/icons/repository.png);
1979}
1980
1981.wt-icon-source::before {
1982	width: 18px;
1983	height: 16px;
1984	content: url(xenea/icons/source.png);
1985}
1986
1987.wt-icon-submitter::before {
1988	width: 11px;
1989	height: 15px;
1990	content: url(xenea/icons/individual.png);
1991}
1992
1993[class^="icon-"],
1994[class*=" icon-"] {
1995	display: inline-block;
1996	vertical-align: text-bottom;
1997	background-repeat: no-repeat;
1998	background-size: cover;
1999}
2000
2001.icon-add {
2002	width: 14px;
2003	height: 15px;
2004	background-image: url(images/add.png);
2005}
2006
2007.icon-cfamily {
2008	width: 25px;
2009	height: 25px;
2010	background-image: url(xenea/images/cfamily.png);
2011}
2012
2013.icon-childless {
2014	width: 25px;
2015	height: 25px;
2016	background-image: url(xenea/images/childless.png);
2017}
2018
2019.icon-children {
2020	width: 16px;
2021	height: 16px;
2022	background-image: url(xenea/images/children.png);
2023}
2024
2025.icon-clippings {
2026	width: 22px;
2027	height: 22px;
2028	background-image: url(xenea/images/clippings.png);
2029}
2030
2031.icon-edit_indi {
2032	width: 25px;
2033	height: 25px;
2034	background-image: url(xenea/images/edit_indi.png);
2035}
2036
2037.icon-fam-list {
2038	width: 25px;
2039	height: 25px;
2040	background-image: url(xenea/images/cfamily.png);
2041}
2042
2043.icon-indi-list {
2044	width: 20px;
2045	height: 20px;
2046	background-image: url(xenea/images/indis.png);
2047}
2048
2049.icon-loading-small {
2050	width: 16px;
2051	height: 16px;
2052	background-image: url(xenea/images/indicator.gif);
2053}
2054
2055.icon-media {
2056	width: 20px;
2057	height: 20px;
2058	background-image: url(xenea/images/media.png);
2059}
2060
2061.icon-media-list {
2062	width: 20px;
2063	height: 20px;
2064	background-image: url(xenea/images/media.png);
2065}
2066
2067.icon-media-next {
2068	width: 20px;
2069	height: 20px;
2070	background-image: url(xenea/images/rdarrow.png);
2071}
2072
2073.icon-media-play {
2074	width: 20px;
2075	height: 20px;
2076	background-image: url(xenea/images/rarrow.png);
2077}
2078
2079.icon-media-stop {
2080	width: 20px;
2081	height: 20px;
2082	background-image: url(xenea/images/stop.png);
2083}
2084
2085.icon-minus {
2086	width: 11px;
2087	height: 11px;
2088	background-image: url(xenea/images/minus.png);
2089}
2090
2091.icon-mypage {
2092	width: 24px;
2093	height: 24px;
2094	background-image: url(xenea/images/mypage.png);
2095}
2096
2097.icon-note {
2098	width: 22px;
2099	height: 22px;
2100	background-image: url(xenea/icons/note.png);
2101}
2102
2103.icon-plus {
2104	width: 11px;
2105	height: 11px;
2106	background-image: url(xenea/images/plus.png);
2107}
2108
2109.icon-remove {
2110	width: 20px;
2111	height: 20px;
2112	background-image: url(xenea/images/remove.png);
2113}
2114
2115.icon-resn-confidential {
2116	width: 16px;
2117	height: 16px;
2118	background-image: url(xenea/images/resn_confidential.png);
2119}
2120
2121.icon-resn-locked {
2122	width: 16px;
2123	height: 16px;
2124	background-image: url(xenea/images/resn_locked.png);
2125}
2126
2127.icon-resn-none {
2128	width: 16px;
2129	height: 16px;
2130	background-image: url(xenea/images/resn_none.png);
2131}
2132
2133.icon-resn-privacy {
2134	width: 16px;
2135	height: 16px;
2136	background-image: url(xenea/images/resn_privacy.png);
2137}
2138
2139.icon-rings {
2140	width: 9px;
2141	height: 9px;
2142	background-image: url(xenea/images/rings.png);
2143}
2144
2145.icon-selected {
2146	width: 12px;
2147	height: 12px;
2148	background-image: url(xenea/images/selected.png);
2149}
2150
2151.icon-source {
2152	width: 20px;
2153	height: 20px;
2154	background-image: url(xenea/images/source.png);
2155}
2156
2157/* Silhouettes on charts */
2158.icon-silhouette-F {
2159	width: 37px;
2160	height: 50px;
2161	background-image: url(xenea/images/silhouette_female_small.png);
2162}
2163
2164.icon-silhouette-M {
2165	width: 37px;
2166	height: 50px;
2167	background-image: url(xenea/images/silhouette_male_small.png);
2168}
2169
2170.icon-silhouette-U {
2171	width: 37px;
2172	height: 50px;
2173	background-image: url(xenea/images/silhouette_unknown_small.png);
2174}
2175
2176.icon-indis {
2177	width: 25px;
2178	height: 25px;
2179	background-image: url(xenea/images/indis.png);
2180}
2181
2182.icon-patriarch {
2183	width: 25px;
2184	height: 25px;
2185	background-image: url(xenea/images/patriarch.png);
2186}
2187
2188.icon-pedigree {
2189	width: 25px;
2190	height: 25px;
2191	background-image: url(xenea/images/pedigree.png);
2192}
2193
2194.icon-place {
2195	width: 25px;
2196	height: 25px;
2197	background-image: url(xenea/images/place.png);
2198}
2199
2200.icon-repo-list {
2201	width: 25px;
2202	height: 25px;
2203	background-image: url(xenea/images/repository.png);
2204}
2205
2206.icon-repository {
2207	width: 25px;
2208	height: 25px;
2209	background-image: url(xenea/images/repository.png);
2210}
2211
2212.icon-search {
2213	width: 25px;
2214	height: 25px;
2215	background-image: url(xenea/images/search.png);
2216}
2217
2218.icon-sfamily {
2219	width: 25px;
2220	height: 25px;
2221	background-image: url(xenea/images/sfamily.png);
2222}
2223
2224.icon-source-list {
2225	width: 25px;
2226	height: 25px;
2227	background-image: url(xenea/images/source.png);
2228}
2229
2230.icon-user_add {
2231	width: 25px;
2232	height: 25px;
2233	background-image: url(xenea/images/user_add.png);
2234}
2235
2236/* Census assistant */
2237.wt-census-assistant-form-control:focus {
2238	min-width: 12rem;
2239}
2240
2241/*
2242 * Drag and drop sortable lists
2243 */
2244.wt-sortable-list {
2245}
2246
2247.wt-sortable-item {
2248	cursor: move;
2249}
2250
2251/* Some blocks show a reduced version on the right-hand side. */
2252.wt-side-blocks .wt-side-block-optional {
2253	display: none !important;
2254}
2255
2256/* my page chart enhancements */
2257.wt-block-content-charts {
2258	flex-flow: column-reverse;
2259	overflow: auto;
2260}
2261
2262.wt-block-content-todays-events-block {
2263	padding: .25rem;
2264}
2265
2266/* Some charts are wider than the page. */
2267.wt-chart {
2268	overflow-x: auto;
2269	overflow-y: hidden;
2270}
2271
2272/* Fit thumbnail into parent on charts */
2273.select2-selection.select2-selection--single {
2274	min-height: 36px;
2275	height: auto;
2276	padding: 2px 0;
2277}
2278
2279.select2-container .select2-selection--single .select2-selection__rendered {
2280	padding-left: 2px;
2281}
2282
2283.select2-selection--single .NAME {
2284	padding-left: 4px;
2285}
2286
2287/*
2288 * Place hierarchy
2289 *
2290 * wt-place-hierarchy-page
2291 */
2292
2293#place-hierarchy ul {
2294	list-style-type: none;
2295}
2296
2297.d-table-cell {
2298	padding-right: 5px;
2299}
2300
2301/* Some menus (e.g. languages) can be longer than a page */
2302.dropdown-menu {
2303	max-height: 30rem;
2304	overflow-x: hidden;
2305}
2306
2307/* Forms */
2308.col-form-label {
2309	font-weight: bold;
2310}
2311