Project

General

Profile

Revision 1823

new doxygen for libwireless

View differences:

doxygen.css
1
/* The standard CSS for doxygen */
2

  
1 3
body, table, div, p, dl {
2 4
	font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
3 5
	font-size: 12px;
......
18 20
	font-size: 100%;
19 21
}
20 22

  
23
dt {
24
	font-weight: bold;
25
}
26

  
27
div.multicol {
28
	-moz-column-gap: 1em;
29
	-webkit-column-gap: 1em;
30
	-moz-column-count: 3;
31
	-webkit-column-count: 3;
32
}
33

  
34
p.startli, p.startdd, p.starttd {
35
	margin-top: 2px;
36
}
37

  
38
p.endli {
39
	margin-bottom: 0px;
40
}
41

  
42
p.enddd {
43
	margin-bottom: 4px;
44
}
45

  
46
p.endtd {
47
	margin-bottom: 2px;
48
}
49

  
21 50
/* @end */
22 51

  
23 52
caption {
24 53
	font-weight: bold;
25 54
}
26 55

  
56
span.legend {
57
        font-size: 70%;
58
        text-align: center;
59
}
60

  
61
h3.version {
62
        font-size: 90%;
63
        text-align: center;
64
}
65

  
27 66
div.qindex, div.navtab{
28 67
	background-color: #e8eef2;
29 68
	border: 1px solid #84b0c7;
......
80 119
}
81 120

  
82 121
a.code {
122
	color: #3030f0;
83 123
}
84 124

  
85 125
a.codeRef {
126
	color: #3030f0;
86 127
}
87 128

  
88 129
/* @end */
......
101 142
	background-color: #f5f5f5;
102 143
	padding: 4px 6px;
103 144
	margin: 4px 8px 4px 2px;
145
	overflow: auto;
146
	word-wrap: break-word;
147
	font-size:  9pt;
148
	line-height: 125%;
104 149
}
105 150

  
106 151
div.ah {
......
161 206
	vertical-align: middle;
162 207
}
163 208

  
209
div.center {
210
	text-align: center;
211
        margin-top: 0px;
212
        margin-bottom: 0px;
213
        padding: 0px;
214
}
215

  
216
div.center img {
217
	border: 0px;
218
}
219

  
220
img.footer {
221
	border: 0px;
222
	vertical-align: middle;
223
}
224

  
164 225
/* @group Code Colorization */
165 226

  
166 227
span.keyword {
......
242 303
}
243 304

  
244 305
hr {
245
	height: 0;
306
	height: 0px;
246 307
	border: none;
247 308
	border-top: 1px solid #666;
248 309
}
249 310

  
311
hr.footer {
312
	height: 1px;
313
}
314

  
250 315
/* @group Member Descriptions */
251 316

  
252 317
.mdescLeft, .mdescRight,
......
267 332
	border-top: 1px solid #ccc;
268 333
}
269 334

  
335
.memItemLeft, .memTemplItemLeft {
336
        white-space: nowrap;
337
}
338

  
270 339
.memTemplParams {
271 340
	color: #606060;
341
        white-space: nowrap;
272 342
}
273 343

  
274 344
/* @end */
......
295 365

  
296 366
.memitem {
297 367
	padding: 0;
368
	margin-bottom: 10px;
298 369
}
299 370

  
300 371
.memname {
301
	white-space: nowrap;
302
	font-weight: bold;
372
        white-space: nowrap;
373
        font-weight: bold;
374
        margin-left: 6px;
303 375
}
304 376

  
305
.memproto, .memdoc {
306
	border: 1px solid #84b0c7;	
307
}
377
.memproto {
378
        border-top: 1px solid #84b0c7;          
379
        border-left: 1px solid #84b0c7;         
380
        border-right: 1px solid #84b0c7; 
381
        padding: 0;
382
        background-color: #d5e1e8;
383
        font-weight: bold;
384
        /* firefox specific markup */
385
        background-image: -moz-linear-gradient(rgba(228, 233, 245, 1.0) 0%, rgba(193, 205, 232, 1.0) 100%);
386
        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
387
        -moz-border-radius-topright: 8px;
388
        -moz-border-radius-topleft: 8px;
389
        /* webkit specific markup */
390
        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(228, 233, 245, 1.0)), to(rgba(193, 205, 232, 1.0)));
391
        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
392
        -webkit-border-top-right-radius: 8px;
393
        -webkit-border-top-left-radius: 8px;
308 394

  
309
.memproto {
310
	padding: 0;
311
	background-color: #d5e1e8;
312
	font-weight: bold;
313
	-webkit-border-top-left-radius: 8px;
314
	-webkit-border-top-right-radius: 8px;
315
	-moz-border-radius-topleft: 8px;
316
	-moz-border-radius-topright: 8px;
317 395
}
318 396

  
319 397
.memdoc {
320
	padding: 2px 5px;
321
	background-color: #eef3f5;
322
	border-top-width: 0;
323
	-webkit-border-bottom-left-radius: 8px;
324
	-webkit-border-bottom-right-radius: 8px;
325
	-moz-border-radius-bottomleft: 8px;
326
	-moz-border-radius-bottomright: 8px;
398
        border-bottom: 1px solid #84b0c7;      
399
        border-left: 1px solid #84b0c7;      
400
        border-right: 1px solid #84b0c7; 
401
        padding: 2px 5px;
402
        background-color: #eef3f5;
403
        border-top-width: 0;
404
        /* firefox specific markup */
405
        -moz-border-radius-bottomleft: 8px;
406
        -moz-border-radius-bottomright: 8px;
407
        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
408
        /* webkit specific markup */
409
        -webkit-border-bottom-left-radius: 8px;
410
        -webkit-border-bottom-right-radius: 8px;
411
        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
327 412
}
328 413

  
329 414
.paramkey {
......
439 524
	font-style: normal;
440 525
	color: #333;
441 526
}
527

  
528
table.doxtable {
529
	border-collapse:collapse;
530
}
531

  
532
table.doxtable td, table.doxtable th {
533
	border: 1px solid #153788;
534
	padding: 3px 7px 2px;
535
}
536

  
537
table.doxtable th {
538
	background-color: #254798;
539
	color: #FFFFFF;
540
	font-size: 110%;
541
	padding-bottom: 4px;
542
	padding-top: 5px;
543
	text-align:left;
544
}
545

  

Also available in: Unified diff