Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
771 blopes 1
@charset "utf-8";
2
/*
3
  Licensed to the Apache Software Foundation (ASF) under one or more
4
  contributor license agreements.  See the NOTICE file distributed with
5
  this work for additional information regarding copyright ownership.
6
  The ASF licenses this file to You under the Apache License, Version 2.0
7
  (the "License"); you may not use this file except in compliance with
8
  the License.  You may obtain a copy of the License at
9
 
10
      http://www.apache.org/licenses/LICENSE-2.0
11
 
12
  Unless required by applicable law or agreed to in writing, software
13
  distributed under the License is distributed on an "AS IS" BASIS,
14
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
  See the License for the specific language governing permissions and
16
  limitations under the License.
17
*/
18
 
19
/* Fonts */
20
@import url("fonts/fonts.css");
21
 
22
/* General style */
23
 
24
h1, h2, h3, h4, h5, h6, th {
25
  font-weight: 600;
26
}
27
 
28
body {
29
  margin: 0;
30
}
31
 
32
body, input {
33
  font-family: 'Open Sans', sans-serif;
34
  font-size: 10.5pt;
35
}
36
 
37
code, pre {
38
  font-family: Consolas, monospace;
39
}
40
 
41
img {
42
  border: 0;
43
}
44
 
45
table {
46
  border-collapse: collapse;
47
  text-align: left;
48
}
49
table *:not(table) {
50
  /* Prevent border-collapsing for table child elements like <div> */
51
  border-collapse: separate;
52
}
53
 
54
th {
55
  text-align: left;
56
}
57
 
58
main {
59
  /* Remove this once all IEs support <main> element */
60
  display: block;
61
}
62
 
63
 
64
/* Layout */
65
 
66
#wrapper {
67
  min-width: 400px;
68
}
69
 
70
#header {
71
  border-bottom: 1px solid #bbb;
72
}
73
 
74
@media not print {
75
    #header {
76
        box-shadow: 0 0 7px #aaa;
77
    }
78
}
79
 
80
#header > div {
81
  padding-left: 15px;
82
  padding-right: 15px;
83
 
84
  /* Work-around for old browsers: */
85
  background-color: #F8F3E4;
86
  background: linear-gradient(to bottom, #ffffff -10%, #F8F3E4 100%);
87
  position: relative;
88
}
89
 
90
#header .logo {
91
  float: left;
92
  padding-top: 10px;
93
  min-width: 190px;
94
}
95
 
96
#header .logo  img{
97
  /* To avoid that the Font Descender being added to the parent div's height */
98
  vertical-align: middle;
99
}
100
 
101
#header .asfLogo {
102
  float: right;
103
  position: relative;
104
  top: 8px;
105
}
106
 
107
#header h1 {
108
  margin-top: 0.6em;
109
  margin-bottom: 0;
110
}
111
 
112
#header .versionInfo {
113
  font-size: 13pt;
114
  margin-bottom: 1em;
115
}
116
 
117
#middle {
118
  display: table;
119
  table-layout: fixed;
120
  margin: 0;
121
  width: 100%;
122
}
123
#middle > div { display: table-row; }
124
#middle > div > div { display: table-cell; vertical-align: top; }
125
 
126
 
127
 
128
#mainLeft {
129
  width: 190px;
130
}
131
 
132
#mainLeft > div {
133
  margin-top: -1px; /* to overwrite border of element above */
134
  padding-left: 16px;
135
  padding-right: 14px;
136
  padding-top: 6px;
137
  padding-bottom: 15px;
138
  background-color: #F8F3E4;
139
  border-right: 1px solid #bbb;
140
  border-bottom: 1px solid #bbb;
141
  font-size: 10pt;
142
  border-bottom-right-radius: 20px;
143
  box-shadow: 0 0 5px #aaa;
144
}
145
 
146
#mainLeft h2 {
147
  margin-bottom: 0.2em;
148
  font-size: 1.2em;
149
}
150
 
151
#mainLeft ul {
152
  padding: 0;
153
  margin: 0;
154
  list-style-type: none;
155
}
156
 
157
#mainLeft ul a {
158
  text-indent: -0.6em;
159
  padding-left: 1.4em;
160
  display: block;
161
  text-decoration: none;
162
  color: #444;
163
}
164
#mainLeft ul a:hover {
165
  color: #000;
166
  background-color: #D1c9b9;
167
}
168
 
169
#mainRight {
170
  padding-left: 14px;
171
  padding-right: 20px;
172
 
173
}
174
 
175
#footer {
176
  margin-top: 30px;
177
  padding-top: 20px;
178
  padding-bottom: 20px;
179
  padding-left: 20px;
180
  padding-right: 20px;
181
  border-top: 1px solid #ccc;
182
  color: #444;
183
  text-align: center;
184
  /* font-style: italic; */
185
  font-size: 9pt;
186
}
187
 
188
 
189
/* Content */
190
 
191
#content div.text {
192
  padding-left: 1em;
193
  padding-left: 1em;
194
}
195
 
196
#content h3, #content h4, #content h5, #content h6 {
197
  padding-left: 5px;
198
  padding-right: 5px;
199
  background-color: #eaeaea;
200
}
201
 
202
@media not print {
203
    #content h3, #content h4, #content h5, #content h6 {
204
        border: 1px solid #ccc;
205
        border-radius: 4px;
206
    }
207
}
208
 
209
#content h4, #content h5, #content h6 {
210
  background-color: #f6f6f6;
211
}
212
 
213
code {
214
  background-color: rgb(224,255,255);
215
}
216
 
217
div.codeBox pre code, code.attributeName, code.propertyName, code.noHighlight, .noHighlight code {
218
  background-color: transparent;
219
}
220
div.codeBox {
221
  overflow: auto;
222
  margin: 1em 0;
223
}
224
div.codeBox pre {
225
  margin: 0;
226
  padding: 4px;
227
  border: 1px solid #999;
228
  border-radius: 5px;
229
  background-color: #eff8ff;
230
  display: table; /* To prevent <pre>s from taking the complete available width. */
231
  /*
232
  When it is officially supported, use the following CSS instead of display: table
233
  to prevent big <pre>s from exceeding the browser window:
234
  max-width: available;
235
  width: min-content;
236
  */
237
}
238
 
239
div.codeBox pre.wrap {
240
  white-space: pre-wrap;
241
}
242
 
243
 
244
table.defaultTable tr, table.detail-table tr {
245
    border: 1px solid #CCC;
246
}
247
 
248
table.defaultTable tr:nth-child(even), table.detail-table tr:nth-child(even) {
249
    background-color: #FAFBFF;
250
}
251
 
252
table.defaultTable tr:nth-child(odd), table.detail-table tr:nth-child(odd) {
253
    background-color: #EEEFFF;
254
}
255
 
256
table.defaultTable th, table.detail-table th {
257
  background-color: #88b;
258
  color: #fff;
259
}
260
 
261
table.defaultTable th, table.defaultTable td, table.detail-table th, table.detail-table td {
262
  padding: 5px 8px;
263
}
264
 
265
 
266
p.notice {
267
  border: 1px solid rgb(255, 0, 0);
268
  background-color: rgb(238, 238, 238);
269
  color: rgb(0, 51, 102);
270
  padding: 0.5em;
271
  margin: 1em 2em 1em 1em;
272
}
273
 
274
 
275
/* Changelog-Styles */
276
 
277
ul.changelog {
278
  padding-left: 1em;
279
  list-style-type: none;
280
}
281
 
282
ul.changelog  li{
283
  padding-top: 5px;
284
  padding-bottom: 5px;
285
}
286
 
287
ul.changelog img {
288
  vertical-align: middle
289
}
290
 
291
 
292
/* Printer-only Styles */
293
@media print {
294
    .noPrint { display: none; }
295
    #middle > div > div#mainLeft { display: none; }
296
    a { color: inherit; text-decoration: none; }
297
}
298
 
299
/* Fix for Comments section which contains a <h4> */
300
#comments_thread h1, #comments_thread h2, #comments_thread h3, #comments_thread h4, #comments_thread h5, #comments_thread h6 {
301
    border: none;
302
    background-color: transparent;
303
}