1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/**
* Media Link Assistant Control module for webtrees
*
* Media Link information about an individual
*
* webtrees: Web based Family History software
* Copyright (C) 2011 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2002 to 2007 John Finlay and Others
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package webtrees
* @subpackage GEDFact_assistant
* @version $Id$
*/
/* --------- Styles used in /_MEDIA/media_3_search.php ---*/
/* Outer border around nav elements */
.outer_nav {
width:270px;
border:3px #808080 outset;
}
/* Transparent cell border */
.transparent {
border: 0px solid transparent;
}
/* top Search box */
input[type='text'] {
background: #FFFFFF;
color: #000000;
border: 1px solid #000000;
width: 120px;
}
/* "Head" button images */
.headimg {
margin-top:-4px;
border:0;
}
.headimg2 {
height:17px;
border-style:none;
margin:-3px;
margin-left:0px;
}
/* Creates clickable <td> for fly-outs */
td a {
display: block;
text-decoration: none;
}
/* Prevents clickable td for Search <td> */
td #srch a {
display: inline;
}
/* Flyouts <td> */
#flyoutFam, #flyoutPar, #flyoutStep {
position: absolute;
top: -15px;
left: 80px;
width: 150px;
}
#flyoutFamRTL, #flyoutParRTL, #flyoutStepRTL {
position: absolute;
top: -15px;
right: 35px;
}
#flyoutFam td, #flyoutPar td, #flyoutStep td, #flyoutFamRTL td, #flyoutParRTL td, #flyoutStepRTL td {
white-space: nowrap;
font-size:10px;
font-weight:normal;
text-decoration: none;
}
div #spouseFam {
margin-left:13px;
margin-top:0px;
}
/*-------------------------------------------------*/
|