blob: 8e091f9eb7a8ff10a3573620df13259b7e751cf6 (
plain)
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
101
102
103
104
|
/**
* Styles for rtl
*
* needed to fix some of the RTL theme problems
*
* @package webtrees
* @subpackage Themes
* @version $Id$
*/
body {
direction: rtl;
text-align: right;
}
html {
direction: rtl;
white-space: normal;
}
#footer {
text-align: center;
}
.person_box, .person_boxF, .person_boxNN {
text-align: right;
}
.footer {
text-align: left;
direction: rtl;
}
.image {
margin-right: 0px;
margin-left: 15px;
}
#header {
width: 100%;
text-align: right;
direction: rtl;
caption-side: left;
display: table;
}
.blockhc {
padding-left: 15px;
padding-right: 5px;
}
.blockh2, .blockhc, .door {
direction: rtl;
}
.door dd {
float: right;
}
.toplinks_right {
padding-left: 15px;
}
.icon, .adminicon {
border:none;
padding-top:1px;
padding-left:6px;
padding-right:0pt;
}
.blockh1 {
background-image: url(images/right1B.gif);
}
.blockh3 {
background-image: url(images/right3.gif);
}
#login_block .blockh1 {
background-image: url(images/right1G.gif);
}
#logout_block .blockh1 {
background-image: url(images/right1R.gif);
}
/* jquery css THEME adjustments for RTL */
/* @version $Id$ */
/* Tabs --------------------------------*/
.ui-tabs { direction: rtl; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected,
.ui-tabs .ui-tabs-nav li.ui-state-default {float: right; }
.ui-tabs .ui-tabs-nav li a { float: right; }
/* Navigator & Flyout menu Styles ------*/
.flyoutrtl {
color:#000000;
text-align: right;
margin-top: -20px;
left: 210px;
padding: 3px;
}
.flyout2rtl {
color:#000000;
text-align: right;
margin-top: -2px;
right: 64px;
padding: 3px;
}
.flyout2rtl a:hover{
color:red;
}
#flyout3 {
text-align: right;
}
|