xref: /webtrees/resources/css/administration.css (revision 117aa30037f71af8d7d646facf70125932ca2f2b)
1ad727080SGreg Roach/**
2ad727080SGreg Roach * webtrees: online genealogy
3242a7862SGreg Roach * Copyright (C) 2019 webtrees development team
4ad727080SGreg Roach * This program is free software: you can redistribute it and/or modify
5ad727080SGreg Roach * it under the terms of the GNU General Public License as published by
6ad727080SGreg Roach * the Free Software Foundation, either version 3 of the License, or
7ad727080SGreg Roach * (at your option) any later version.
8ad727080SGreg Roach * This program is distributed in the hope that it will be useful,
9ad727080SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
10ad727080SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11ad727080SGreg Roach * GNU General Public License for more details.
12ad727080SGreg Roach * You should have received a copy of the GNU General Public License
13ad727080SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
14ad727080SGreg Roach */
15ad727080SGreg Roach
16ad727080SGreg Roach/* The administration theme is mostly vanilla bootstrap. */
17a3c95e78SGreg Roach@import "_base.css";
18ad727080SGreg Roach
19*117aa300SGreg Roach@import "_mime-type-icons.css";
20*117aa300SGreg Roach
21ad727080SGreg Roach/* Tree Preferences - fit thumbnail into parent for Default Individual*/
22ad727080SGreg Roach.select2-selection.select2-selection--single {
23ad727080SGreg Roach	min-height: 36px;
24ad727080SGreg Roach	height: auto;
25ad727080SGreg Roach	padding: 2px 0;
26ad727080SGreg Roach}
27ad727080SGreg Roach
28ad727080SGreg Roach.select2-container .select2-selection--single .select2-selection__rendered {
29ad727080SGreg Roach    padding-left: 2px;
30ad727080SGreg Roach}
31ad727080SGreg Roach.select2-selection--single .NAME {
32ad727080SGreg Roach    padding-left: 4px;
33ad727080SGreg Roach}
34ad727080SGreg Roach
35ad727080SGreg Roach.wt-global {
36e837ff07SGreg Roach	background: url(administration/paper_fibers.png); /* http://www.subtlepatterns.com */
37ad727080SGreg Roach}
38ad727080SGreg Roach
39ad727080SGreg Roach/* Show a placeholder for slow ajax responses. */
40ad727080SGreg Roach.wt-ajax-load:empty {
41ad727080SGreg Roach	height: 32px;
42ad727080SGreg Roach	width: 32px;
43ad727080SGreg Roach	background: url(images/loading-32x32.gif) no-repeat;
44ad727080SGreg Roach}
45ad727080SGreg Roach
46ad727080SGreg Roach@media (min-device-pixel-ratio: 2) {
47ad727080SGreg Roach	.wt-global {
48e837ff07SGreg Roach		background: url(administration/paper_fibers_@2X.png);
49ad727080SGreg Roach	}
50ad727080SGreg Roach}
51ad727080SGreg Roach
52ad727080SGreg Roach/* Raw GEDCOM data */
53ad727080SGreg Roach.gedcom-data {
54ad727080SGreg Roach	white-space: pre-wrap;
55ad727080SGreg Roach}
56ad727080SGreg Roach
57ad727080SGreg Roach.gedcom-data ins {
58ad727080SGreg Roach	text-decoration: none;
59ad727080SGreg Roach	background-color: #eea;
60ad727080SGreg Roach}
61ad727080SGreg Roach
62ad727080SGreg Roach/* Combine bootstrap styling with phpinfo() styling */
63ad727080SGreg Roach.php-info table {
64ad727080SGreg Roach	width: 100%;
65ad727080SGreg Roach}
66ad727080SGreg Roach.php-info .center {
67ad727080SGreg Roach	text-align: center;
68ad727080SGreg Roach}
69ad727080SGreg Roach.php-info .center table {
70ad727080SGreg Roach	margin: 1em auto;
710b563429SGreg Roach	text-align: start;
72ad727080SGreg Roach}
73ad727080SGreg Roach.php-info .center th {
74ad727080SGreg Roach	text-align: center;
75ad727080SGreg Roach}
76ad727080SGreg Roach.php-info td,
77ad727080SGreg Roach.php-info th {
78ad727080SGreg Roach	border: 1px solid #666;
79ad727080SGreg Roach	vertical-align: baseline;
80ad727080SGreg Roach	padding: 4px 5px;
81ad727080SGreg Roach}
82ad727080SGreg Roach.php-info .e {
83ad727080SGreg Roach	background-color: #ccf;
84ad727080SGreg Roach	width: 300px;
85ad727080SGreg Roach}
86ad727080SGreg Roach.php-info .h {
87ad727080SGreg Roach	background-color: #99c;
88ad727080SGreg Roach}
89ad727080SGreg Roach.php-info .v {
90ad727080SGreg Roach	background-color: #ddd;
91ad727080SGreg Roach	max-width: 300px;
92ad727080SGreg Roach	overflow-x: auto;
93ad727080SGreg Roach	word-break: break-all;
94ad727080SGreg Roach}
95ad727080SGreg Roach.php-info .v i {
96ad727080SGreg Roach	color: #999;
97ad727080SGreg Roach}
98ad727080SGreg Roach.php-info img {
99ad727080SGreg Roach	float: right;
100ad727080SGreg Roach	border: 0;
101ad727080SGreg Roach}
102