1/*
2 * @license    http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
3 * @author     Francois <webmestre@parlenet.org>
4 */
5
6/* ==================== */
7body {
8counter-reset: glossary;
9}
10
11div.glossary table {
12    border-collapse: collapse;
13    border-spacing: 0;
14}
15
16div.glossary table tr {
17    vertical-align: middle;
18}
19
20div.glossary table tr.title {
21    background-color: #DDF;
22    text-align: center;
23}
24
25div.glossary table tr.odd {
26}
27
28div.glossary table tr.even {
29    background-color: #DDD;
30}
31
32div.glossary table th,
33div.glossary table td {
34    margin: 2px 4px;
35    padding: 2px 4px;
36}
37
38div.glossary table input.text {
39    width: 20em;
40}
41
42span.glossaryWord,
43span.glossaryWord a.wikilink1:visited,
44span.glossaryWord a.wikilink1:link {
45    color: #FE0000 !important;
46    font-weight: bold;
47}
48
49span.glossaryTranslate,
50span.glossaryTranslate a.wikilink1:visited,
51span.glossaryTranslate a.wikilink1:link {
52    color: #004C9A !important;
53    font-weight: bold;
54}
55
56div.glossary table th {
57    counter-reset: ch1;
58}
59
60div.glossary table td.count:before {
61    counter-increment: glossary;
62    content: counter(glossary) " ";
63}
64
65div.glossary table td.count {
66    color: #BBB;
67    white-space: nowrap;
68}
69
70div.glossary table td.word,
71div.glossary table td.word a:visited,
72div.glossary table td.word a:link {
73    color: #FE0000;
74    font-weight: bold;
75}
76
77div.glossary table td.translate,
78div.glossary table td.translate a:visited,
79div.glossary table td.translate a:link {
80    color: #004C9A;
81    font-weight: bold;
82}
83
84div.glossary table textarea.why {
85    width: 50em;
86    height: 6em;
87}
88
89div.glossary table td.poll {
90    white-space: nowrap;
91}
92
93div.glossary table td.right {
94    text-align: right;
95}
96
97div.glossary .popup {
98    position: absolute;
99    top: auto;
100    left: auto;
101    width: auto;
102    height: auto;
103    margin: 1em;
104    padding: 1em;
105    overflow: visible;
106    z-index: 50;
107    opacity: 0.7;
108    background: #EDDB31;
109    color: black;
110    border: 1px solid #AE090D;
111    font-weight: bold;
112}
113
114div.glossary .toolTip a,
115div.glossary .toolTip form {
116    cursor: help;
117    z-index: 1;
118}
119
120div.glossary .toolTip a span,
121div.glossary .toolTip form span {
122    position: absolute;
123    z-index: 50;
124    top: -2000em;
125    left: -2000em;
126    width: 1px;
127    height: 1px;
128    overflow: hidden;
129    white-space: nowrap;
130    opacity: 0.8;
131    border: 1px solid #AE090D;
132    background-color: #EDDB31;
133    color: #AE090D;
134    font-weight: normal;
135}
136
137div.glossary .toolTip a:hover span,
138div.glossary .toolTip form:hover span {
139    top: auto;
140    left: auto;
141    left: auto;
142    width: auto;
143    height: auto;
144    overflow: visible;
145    margin-top: 2em;
146    margin-left: 0em;
147    padding: 0 1em;
148}
149
150/* ==================== */
151