Changeset 2173
- Timestamp:
- Dec 23, 2012, 1:14:37 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/doxygen.css
r2167 r2173 1 .fragment { 2 font-family: monospace, fixed; 3 font-size: 95%; 4 } 1 /* The standard CSS for doxygen $doxygenversion */ 2 3 body, table, div, p, dl { 4 font: 400 14px/19px Roboto,sans-serif; 5 } 6 7 /* @group Heading Levels */ 8 9 h1.groupheader { 10 font-size: 150%; 11 } 12 13 .title { 14 font-size: 150%; 15 font-weight: bold; 16 margin: 10px 2px; 17 } 18 19 h2.groupheader { 20 border-bottom: 1px solid ##99; 21 color: ##44; 22 font-size: 150%; 23 font-weight: normal; 24 margin-top: 1.75em; 25 padding-top: 8px; 26 padding-bottom: 4px; 27 width: 100%; 28 } 29 30 h3.groupheader { 31 font-size: 100%; 32 } 33 34 h1, h2, h3, h4, h5, h6 { 35 -webkit-transition: text-shadow 0.5s linear; 36 -moz-transition: text-shadow 0.5s linear; 37 -ms-transition: text-shadow 0.5s linear; 38 -o-transition: text-shadow 0.5s linear; 39 transition: text-shadow 0.5s linear; 40 margin-right: 15px; 41 } 42 43 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { 44 text-shadow: 0 0 15px cyan; 45 } 46 47 dt { 48 font-weight: bold; 49 } 50 51 div.multicol { 52 -moz-column-gap: 1em; 53 -webkit-column-gap: 1em; 54 -moz-column-count: 3; 55 -webkit-column-count: 3; 56 } 57 58 p.startli, p.startdd, p.starttd { 59 margin-top: 2px; 60 } 61 62 p.endli { 63 margin-bottom: 0px; 64 } 65 66 p.enddd { 67 margin-bottom: 4px; 68 } 69 70 p.endtd { 71 margin-bottom: 2px; 72 } 73 74 /* @end */ 75 76 caption { 77 font-weight: bold; 78 } 79 80 span.legend { 81 font-size: 70%; 82 text-align: center; 83 } 84 85 h3.version { 86 font-size: 90%; 87 text-align: center; 88 } 89 90 div.qindex, div.navtab{ 91 background-color: ##ee; 92 border: 1px solid ##b0; 93 text-align: center; 94 } 95 96 div.qindex, div.navpath { 97 width: 100%; 98 line-height: 140%; 99 } 100 101 div.navtab { 102 margin-right: 15px; 103 } 104 105 /* @group Link Styling */ 106 107 a { 108 color: ##50; 109 font-weight: normal; 110 text-decoration: none; 111 } 112 113 .contents a:visited { 114 color: ##60; 115 } 116 117 a:hover { 118 text-decoration: underline; 119 } 120 121 a.qindex { 122 font-weight: bold; 123 } 124 125 a.qindexHL { 126 font-weight: bold; 127 background-color: ##AA; 128 color: #ffffff; 129 border: 1px double ##98; 130 } 131 132 .contents a.qindexHL:visited { 133 color: #ffffff; 134 } 135 136 a.el { 137 font-weight: bold; 138 } 139 140 a.elRef { 141 } 142 143 a.code, a.code:visited { 144 color: #4665A2; 145 } 146 147 a.codeRef, a.codeRef:visited { 148 color: #4665A2; 149 } 150 151 /* @end */ 152 153 dl.el { 154 margin-left: -1cm; 155 } 156 5 157 pre.fragment { 6 border: 1px solid #CCCCCC; 7 background-color: #f5f5f5; 8 margin-top: 4px; 158 border: 1px solid #C4CFE5; 159 background-color: #FBFCFD; 160 padding: 4px 6px; 161 margin: 4px 8px 4px 2px; 162 overflow: auto; 163 word-wrap: break-word; 164 font-size: 9pt; 165 line-height: 125%; 166 font-family: monospace, fixed; 167 font-size: 105%; 168 } 169 170 div.fragment { 171 padding: 4px; 172 margin: 4px; 173 background-color: ##FC; 174 border: 1px solid ##CC; 175 } 176 177 div.line { 178 font-family: monospace, fixed; 179 font-size: 13px; 180 min-height: 13px; 181 line-height: 1.0; 182 text-wrap: unrestricted; 183 white-space: -moz-pre-wrap; /* Moz */ 184 white-space: -pre-wrap; /* Opera 4-6 */ 185 white-space: -o-pre-wrap; /* Opera 7 */ 186 white-space: pre-wrap; /* CSS3 */ 187 word-wrap: break-word; /* IE 5.5+ */ 188 text-indent: -53px; 189 padding-left: 53px; 190 padding-bottom: 0px; 191 margin: 0px; 192 -webkit-transition-property: background-color, box-shadow; 193 -webkit-transition-duration: 0.5s; 194 -moz-transition-property: background-color, box-shadow; 195 -moz-transition-duration: 0.5s; 196 -ms-transition-property: background-color, box-shadow; 197 -ms-transition-duration: 0.5s; 198 -o-transition-property: background-color, box-shadow; 199 -o-transition-duration: 0.5s; 200 transition-property: background-color, box-shadow; 201 transition-duration: 0.5s; 202 } 203 204 div.line.glow { 205 background-color: cyan; 206 box-shadow: 0 0 10px cyan; 207 } 208 209 210 span.lineno { 211 padding-right: 4px; 212 text-align: right; 213 border-right: 2px solid #0F0; 214 background-color: #E8E8E8; 215 white-space: pre; 216 } 217 span.lineno a { 218 background-color: #D8D8D8; 219 } 220 221 span.lineno a:hover { 222 background-color: #C8C8C8; 223 } 224 225 div.ah { 226 background-color: black; 227 font-weight: bold; 228 color: #ffffff; 229 margin-bottom: 3px; 230 margin-top: 3px; 231 padding: 0.2em; 232 border: solid thin #333; 233 border-radius: 0.5em; 234 -webkit-border-radius: .5em; 235 -moz-border-radius: .5em; 236 box-shadow: 2px 2px 3px #999; 237 -webkit-box-shadow: 2px 2px 3px #999; 238 -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; 239 background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); 240 background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); 241 } 242 243 div.groupHeader { 244 margin-left: 16px; 245 margin-top: 12px; 246 font-weight: bold; 247 } 248 249 div.groupText { 250 margin-left: 16px; 251 font-style: italic; 252 } 253 254 body { 255 background-color: white; 256 color: black; 257 margin: 0; 258 } 259 260 div.contents { 261 margin-top: 10px; 262 margin-left: 12px; 263 margin-right: 8px; 264 } 265 266 td.indexkey { 267 background-color: ##ee; 268 font-weight: bold; 269 border: 1px solid ##cc; 270 margin: 2px 0px 2px 0; 271 padding: 2px 10px; 272 white-space: nowrap; 273 vertical-align: top; 274 } 275 276 td.indexvalue { 277 background-color: ##ee; 278 border: 1px solid ##cc; 279 padding: 2px 10px; 280 margin: 2px 0px; 281 } 282 283 tr.memlist { 284 background-color: ##f0; 285 } 286 287 p.formulaDsp { 288 text-align: center; 289 } 290 291 img.formulaDsp { 292 293 } 294 295 img.formulaInl { 296 vertical-align: middle; 297 } 298 299 div.center { 300 text-align: center; 301 margin-top: 0px; 302 margin-bottom: 0px; 303 padding: 0px; 304 } 305 306 div.center img { 307 border: 0px; 308 } 309 310 address.footer { 311 text-align: right; 312 padding-right: 12px; 313 } 314 315 img.footer { 316 border: 0px; 317 vertical-align: middle; 318 } 319 320 /* @group Code Colorization */ 321 322 span.keyword { 323 color: #008000 324 } 325 326 span.keywordtype { 327 color: #604020 328 } 329 330 span.keywordflow { 331 color: #e08000 332 } 333 334 span.comment { 335 color: #800000 336 } 337 338 span.preprocessor { 339 color: #806020 340 } 341 342 span.stringliteral { 343 color: #002080 344 } 345 346 span.charliteral { 347 color: #008080 348 } 349 350 span.vhdldigit { 351 color: #ff00ff 352 } 353 354 span.vhdlchar { 355 color: #000000 356 } 357 358 span.vhdlkeyword { 359 color: #700070 360 } 361 362 span.vhdllogic { 363 color: #ff0000 364 } 365 366 blockquote { 367 background-color: ##F8; 368 border-left: 2px solid ##AA; 369 margin: 0 24px 0 4px; 370 padding: 0 12px 0 16px; 371 } 372 373 /* @end */ 374 375 /* 376 .search { 377 color: #003399; 378 font-weight: bold; 379 } 380 381 form.search { 382 margin-bottom: 0px; 383 margin-top: 0px; 384 } 385 386 input.search { 387 font-size: 75%; 388 color: #000080; 389 font-weight: normal; 390 background-color: #e8eef2; 391 } 392 */ 393 394 td.tiny { 395 font-size: 75%; 396 } 397 398 .dirtab { 399 padding: 4px; 400 border-collapse: collapse; 401 border: 1px solid ##b0; 402 } 403 404 th.dirtab { 405 background: ##ee; 406 font-weight: bold; 407 } 408 409 hr { 410 height: 0px; 411 border: none; 412 border-top: 1px solid ##66; 413 } 414 415 hr.footer { 416 height: 1px; 417 } 418 419 /* @group Member Descriptions */ 420 421 table.memberdecls { 422 border-spacing: 0px; 423 padding: 0px; 424 } 425 426 .memberdecls td, .fieldtable tr { 427 -webkit-transition-property: background-color, box-shadow; 428 -webkit-transition-duration: 0.5s; 429 -moz-transition-property: background-color, box-shadow; 430 -moz-transition-duration: 0.5s; 431 -ms-transition-property: background-color, box-shadow; 432 -ms-transition-duration: 0.5s; 433 -o-transition-property: background-color, box-shadow; 434 -o-transition-duration: 0.5s; 435 transition-property: background-color, box-shadow; 436 transition-duration: 0.5s; 437 } 438 439 .memberdecls td.glow, .fieldtable tr.glow { 440 background-color: cyan; 441 box-shadow: 0 0 15px cyan; 442 } 443 444 .mdescLeft, .mdescRight, 445 .memItemLeft, .memItemRight, 446 .memTemplItemLeft, .memTemplItemRight, .memTemplParams { 447 background-color: ##FA; 448 border: none; 449 margin: 4px; 450 padding: 1px 0 0 8px; 451 } 452 453 .mdescLeft, .mdescRight { 454 padding: 0px 8px 4px 8px; 455 color: #555; 456 } 457 458 .memSeparator { 459 border-bottom: 1px solid #DEE4F0; 460 line-height: 1px; 461 margin: 0px; 462 padding: 0px; 463 } 464 465 .memItemLeft, .memTemplItemLeft { 466 white-space: nowrap; 467 } 468 469 .memItemRight { 470 width: 100%; 471 } 472 473 .memTemplParams { 474 color: ##60; 475 white-space: nowrap; 476 font-size: 80%; 477 } 478 479 /* @end */ 480 481 /* @group Member Details */ 482 483 /* Styles for detailed member documentation */ 484 485 .memtemplate { 486 font-size: 80%; 487 color: ##60; 488 font-weight: normal; 489 margin-left: 9px; 490 } 491 492 .memnav { 493 background-color: ##ee; 494 border: 1px solid ##b0; 495 text-align: center; 496 margin: 2px; 497 margin-right: 15px; 498 padding: 2px; 499 } 500 501 .mempage { 502 width: 100%; 503 } 504 505 .memitem { 506 padding: 0; 507 margin-bottom: 10px; 508 margin-right: 5px; 509 -webkit-transition: box-shadow 0.5s linear; 510 -moz-transition: box-shadow 0.5s linear; 511 -ms-transition: box-shadow 0.5s linear; 512 -o-transition: box-shadow 0.5s linear; 513 transition: box-shadow 0.5s linear; 514 display: table !important; 515 width: 100%; 516 } 517 518 .memitem.glow { 519 box-shadow: 0 0 15px cyan; 520 } 521 522 .memname { 523 font-weight: bold; 524 margin-left: 6px; 525 } 526 527 .memname td { 528 vertical-align: bottom; 529 } 530 531 .memproto, dl.reflist dt { 532 border-top: 1px solid ##B4; 533 border-left: 1px solid ##B4; 534 border-right: 1px solid ##B4; 535 padding: 6px 0px 6px 0px; 536 color: ##2b; 537 font-weight: bold; 538 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); 539 background-image:url('nav_f.png'); 540 background-repeat:repeat-x; 541 background-color: ##E6; 542 /* opera specific markup */ 543 box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); 544 border-top-right-radius: 4px; 545 border-top-left-radius: 4px; 546 /* firefox specific markup */ 547 -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; 548 -moz-border-radius-topright: 4px; 549 -moz-border-radius-topleft: 4px; 550 /* webkit specific markup */ 551 -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); 552 -webkit-border-top-right-radius: 4px; 553 -webkit-border-top-left-radius: 4px; 554 555 } 556 557 .memdoc, dl.reflist dd { 558 border-bottom: 1px solid ##B4; 559 border-left: 1px solid ##B4; 560 border-right: 1px solid ##B4; 561 padding: 6px 10px 2px 10px; 562 background-color: ##FC; 563 border-top-width: 0; 564 background-image:url('nav_g.png'); 565 background-repeat:repeat-x; 566 background-color: #FFFFFF; 567 /* opera specific markup */ 568 border-bottom-left-radius: 4px; 569 border-bottom-right-radius: 4px; 570 box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); 571 /* firefox specific markup */ 572 -moz-border-radius-bottomleft: 4px; 573 -moz-border-radius-bottomright: 4px; 574 -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; 575 /* webkit specific markup */ 576 -webkit-border-bottom-left-radius: 4px; 577 -webkit-border-bottom-right-radius: 4px; 578 -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); 579 } 580 581 dl.reflist dt { 582 padding: 5px; 583 } 584 585 dl.reflist dd { 586 margin: 0px 0px 10px 0px; 587 padding: 5px; 588 } 589 590 .paramkey { 591 text-align: right; 592 } 593 594 .paramtype { 595 white-space: nowrap; 596 } 597 598 .paramname { 599 color: #602020; 600 white-space: nowrap; 601 } 602 .paramname em { 603 font-style: normal; 604 } 605 .paramname code { 606 line-height: 14px; 607 } 608 609 .params, .retval, .exception, .tparams { 610 margin-left: 0px; 611 padding-left: 0px; 612 } 613 614 .params .paramname, .retval .paramname { 615 font-weight: bold; 616 vertical-align: top; 617 } 618 619 .params .paramtype { 620 font-style: italic; 621 vertical-align: top; 622 } 623 624 .params .paramdir { 625 font-family: "courier new",courier,monospace; 626 vertical-align: top; 627 } 628 629 table.mlabels { 630 border-spacing: 0px; 631 } 632 633 td.mlabels-left { 634 width: 100%; 635 padding: 0px; 636 } 637 638 td.mlabels-right { 639 vertical-align: bottom; 640 padding: 0px; 641 white-space: nowrap; 642 } 643 644 span.mlabels { 645 margin-left: 8px; 646 } 647 648 span.mlabel { 649 background-color: ##88; 650 border-top:1px solid ##70; 651 border-left:1px solid ##70; 652 border-right:1px solid ##CC; 653 border-bottom:1px solid ##CC; 654 text-shadow: none; 655 color: white; 656 margin-right: 4px; 657 padding: 2px 3px; 658 border-radius: 3px; 659 font-size: 7pt; 660 white-space: nowrap; 661 vertical-align: middle; 662 } 663 664 665 666 /* @end */ 667 668 /* these are for tree view when not used as main index */ 669 670 div.directory { 671 margin: 10px 0px; 672 border-top: 1px solid #A8B8D9; 673 border-bottom: 1px solid #A8B8D9; 674 width: 100%; 675 } 676 677 .directory table { 678 border-collapse:collapse; 679 } 680 681 .directory td { 682 margin: 0px; 683 padding: 0px; 684 vertical-align: top; 685 } 686 687 .directory td.entry { 688 white-space: nowrap; 689 padding-right: 6px; 690 } 691 692 .directory td.entry a { 693 outline:none; 694 } 695 696 .directory td.entry a img { 697 border: none; 698 } 699 700 .directory td.desc { 701 width: 100%; 702 padding-left: 6px; 703 padding-right: 6px; 704 padding-top: 3px; 705 border-left: 1px solid rgba(0,0,0,0.05); 706 } 707 708 .directory tr.even { 709 padding-left: 6px; 710 background-color: ##F8; 711 } 712 713 .directory img { 714 vertical-align: -30%; 715 } 716 717 .directory .levels { 718 white-space: nowrap; 719 width: 100%; 720 text-align: right; 721 font-size: 9pt; 722 } 723 724 .directory .levels span { 725 cursor: pointer; 726 padding-left: 2px; 727 padding-right: 2px; 728 color: ##50; 729 } 730 731 div.dynheader { 732 margin-top: 8px; 733 -webkit-touch-callout: none; 734 -webkit-user-select: none; 735 -khtml-user-select: none; 736 -moz-user-select: none; 737 -ms-user-select: none; 738 user-select: none; 739 } 740 741 address { 742 font-style: normal; 743 color: ##33; 744 } 745 746 table.doxtable { 747 border-collapse:collapse; 748 margin-top: 4px; 9 749 margin-bottom: 4px; 10 margin-left: 2px; 11 margin-right: 8px; 12 padding-left: 6px; 13 padding-right: 6px; 14 padding-top: 4px; 750 } 751 752 table.doxtable td, table.doxtable th { 753 border: 1px solid ##37; 754 padding: 3px 7px 2px; 755 } 756 757 table.doxtable th { 758 background-color: ##47; 759 color: #FFFFFF; 760 font-size: 110%; 761 padding-bottom: 4px; 762 padding-top: 5px; 763 } 764 765 table.fieldtable { 766 width: 100%; 767 margin-bottom: 10px; 768 border: 1px solid ##B4; 769 border-spacing: 0px; 770 -moz-border-radius: 4px; 771 -webkit-border-radius: 4px; 772 border-radius: 4px; 773 -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; 774 -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); 775 box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); 776 } 777 778 .fieldtable td, .fieldtable th { 779 padding: 3px 7px 2px; 780 } 781 782 .fieldtable td.fieldtype, .fieldtable td.fieldname { 783 white-space: nowrap; 784 border-right: 1px solid ##B4; 785 border-bottom: 1px solid ##B4; 786 vertical-align: top; 787 } 788 789 .fieldtable td.fielddoc { 790 border-bottom: 1px solid ##B4; 791 width: 100%; 792 } 793 794 .fieldtable td.fielddoc p:first-child { 795 margin-top: 2px; 796 } 797 798 .fieldtable td.fielddoc p:last-child { 799 margin-bottom: 2px; 800 } 801 802 .fieldtable tr:last-child td { 803 border-bottom: none; 804 } 805 806 .fieldtable th { 807 background-image:url('nav_f.png'); 808 background-repeat:repeat-x; 809 background-color: ##E6; 810 font-size: 90%; 811 color: ##2B; 15 812 padding-bottom: 4px; 16 } 17 18 span.keyword { color: #008000 } 19 span.keywordtype { color: #604020 } 20 span.keywordflow { color: #e08000 } 21 span.comment { color: #800000 } 22 span.preprocessor { color: #806020 } 23 span.stringliteral { color: #002080 } 24 span.charliteral { color: #008080 } 25 26 /* Style for detailed member documentation */ 27 .memtemplate { 28 font-size: 80%; 29 color: #606060; 30 font-weight: normal; 31 } 32 .memnav { 33 background-color: #e8eef2; 34 border: 1px solid #84b0c7; 35 text-align: center; 36 margin: 2px; 37 margin-right: 15px; 38 padding: 2px; 39 } 40 .memitem { 41 padding: 4px; 42 /*background-color: #eef3f5;*/ 43 /*border-width: 1px;*/ 44 /*border-style: solid;*/ 45 /*border-color: #dedeee;*/ 46 /*-moz-border-radius: 8px 8px 8px 8px;*/ 47 } 48 .memname { 49 white-space: nowrap; 50 font-weight: bold; 51 } 52 .memdoc{ 53 padding-left: 10px; 54 } 55 .memproto { 56 background-color: #d5e1e8; 57 width: 100%; 58 border-width: 1px; 59 border-style: solid; 60 border-color: #84b0c7; 61 font-weight: bold; 62 -moz-border-radius: 8px 8px 8px 8px; 63 } 64 .paramkey { 65 text-align: right; 66 } 67 .paramtype { 68 white-space: nowrap; 69 } 70 .paramname { 71 color: #602020; 72 font-style: italic; 73 } 74 /* End Styling for detailed member documentation */ 75 76 /* Remove those ugly <hr>s */ 77 hr { 78 display: none; 79 } 80 813 padding-top: 5px; 814 text-align:left; 815 -moz-border-radius-topleft: 4px; 816 -moz-border-radius-topright: 4px; 817 -webkit-border-top-left-radius: 4px; 818 -webkit-border-top-right-radius: 4px; 819 border-top-left-radius: 4px; 820 border-top-right-radius: 4px; 821 border-bottom: 1px solid ##B4; 822 } 823 824 825 .tabsearch { 826 top: 0px; 827 left: 10px; 828 height: 36px; 829 background-image: url('tab_b.png'); 830 z-index: 101; 831 overflow: hidden; 832 font-size: 13px; 833 } 834 835 .navpath ul 836 { 837 font-size: 11px; 838 background-image:url('tab_b.png'); 839 background-repeat:repeat-x; 840 background-position: 0 -5px; 841 height:30px; 842 line-height:30px; 843 color:##9b; 844 border:solid 1px ##ca; 845 overflow:hidden; 846 margin:0px; 847 padding:0px; 848 } 849 850 .navpath li 851 { 852 list-style-type:none; 853 float:left; 854 padding-left:10px; 855 padding-right:15px; 856 background-image:url('bc_s.png'); 857 background-repeat:no-repeat; 858 background-position:right; 859 color:##45; 860 } 861 862 .navpath li.navelem a 863 { 864 height:32px; 865 display:block; 866 text-decoration: none; 867 outline: none; 868 color: ##30; 869 font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; 870 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); 871 text-decoration: none; 872 } 873 874 .navpath li.navelem a:hover 875 { 876 color:##80; 877 } 878 879 .navpath li.footer 880 { 881 list-style-type:none; 882 float:right; 883 padding-left:10px; 884 padding-right:15px; 885 background-image:none; 886 background-repeat:no-repeat; 887 background-position:right; 888 color:##45; 889 font-size: 8pt; 890 } 891 892 893 div.summary 894 { 895 float: right; 896 font-size: 8pt; 897 padding-right: 5px; 898 width: 50%; 899 text-align: right; 900 } 901 902 div.summary a 903 { 904 white-space: nowrap; 905 } 906 907 div.ingroups 908 { 909 font-size: 8pt; 910 width: 50%; 911 text-align: left; 912 } 913 914 div.ingroups a 915 { 916 white-space: nowrap; 917 } 918 919 div.header 920 { 921 background-image:url('nav_h.png'); 922 background-repeat:repeat-x; 923 background-color: ##FA; 924 margin: 0px; 925 border-bottom: 1px solid ##CC; 926 } 927 928 div.headertitle 929 { 930 padding: 5px 5px 5px 10px; 931 } 932 933 dl 934 { 935 padding: 0 0 0 10px; 936 } 937 938 /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ 939 dl.section 940 { 941 margin-left: 0px; 942 padding-left: 0px; 943 } 944 945 dl.note 946 { 947 margin-left:-7px; 948 padding-left: 3px; 949 border-left:4px solid; 950 border-color: #D0C000; 951 } 952 953 dl.warning, dl.attention 954 { 955 margin-left:-7px; 956 padding-left: 3px; 957 border-left:4px solid; 958 border-color: #FF0000; 959 } 960 961 dl.pre, dl.post, dl.invariant 962 { 963 margin-left:-7px; 964 padding-left: 3px; 965 border-left:4px solid; 966 border-color: #00D000; 967 } 968 969 dl.deprecated 970 { 971 margin-left:-7px; 972 padding-left: 3px; 973 border-left:4px solid; 974 border-color: #505050; 975 } 976 977 dl.todo 978 { 979 margin-left:-7px; 980 padding-left: 3px; 981 border-left:4px solid; 982 border-color: #00C0E0; 983 } 984 985 dl.test 986 { 987 margin-left:-7px; 988 padding-left: 3px; 989 border-left:4px solid; 990 border-color: #3030E0; 991 } 992 993 dl.bug 994 { 995 margin-left:-7px; 996 padding-left: 3px; 997 border-left:4px solid; 998 border-color: #C08050; 999 } 1000 1001 dl.section dd { 1002 margin-bottom: 6px; 1003 } 1004 1005 1006 #projectlogo 1007 { 1008 text-align: center; 1009 vertical-align: bottom; 1010 border-collapse: separate; 1011 } 1012 1013 #projectlogo img 1014 { 1015 border: 0px none; 1016 } 1017 1018 #projectname 1019 { 1020 font: 300% Tahoma, Arial,sans-serif; 1021 margin: 0px; 1022 padding: 2px 0px; 1023 } 1024 1025 #projectbrief 1026 { 1027 font: 120% Tahoma, Arial,sans-serif; 1028 margin: 0px; 1029 padding: 0px; 1030 } 1031 1032 #projectnumber 1033 { 1034 font: 50% Tahoma, Arial,sans-serif; 1035 margin: 0px; 1036 padding: 0px; 1037 } 1038 1039 #titlearea 1040 { 1041 padding: 0px; 1042 margin: 0px; 1043 width: 100%; 1044 border-bottom: 1px solid ##70; 1045 } 1046 1047 .image 1048 { 1049 text-align: center; 1050 } 1051 1052 .dotgraph 1053 { 1054 text-align: center; 1055 } 1056 1057 .mscgraph 1058 { 1059 text-align: center; 1060 } 1061 1062 .caption 1063 { 1064 font-weight: bold; 1065 } 1066 1067 div.zoom 1068 { 1069 border: 1px solid ##A0; 1070 } 1071 1072 dl.citelist { 1073 margin-bottom:50px; 1074 } 1075 1076 dl.citelist dt { 1077 color:##40; 1078 float:left; 1079 font-weight:bold; 1080 margin-right:10px; 1081 padding:5px; 1082 } 1083 1084 dl.citelist dd { 1085 margin:2px 0; 1086 padding:5px 0; 1087 } 1088 1089 div.toc { 1090 padding: 14px 25px; 1091 background-color: ##F6; 1092 border: 1px solid ##DD; 1093 border-radius: 7px 7px 7px 7px; 1094 float: right; 1095 height: auto; 1096 margin: 0 20px 10px 10px; 1097 width: 200px; 1098 } 1099 1100 div.toc li { 1101 background: url("bdwn.png") no-repeat scroll 0 5px transparent; 1102 font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; 1103 margin-top: 5px; 1104 padding-left: 10px; 1105 padding-top: 2px; 1106 } 1107 1108 div.toc h3 { 1109 font: bold 12px/1.2 Arial,FreeSans,sans-serif; 1110 color: ##60; 1111 border-bottom: 0 none; 1112 margin: 0; 1113 } 1114 1115 div.toc ul { 1116 list-style: none outside none; 1117 border: medium none; 1118 padding: 0px; 1119 } 1120 1121 div.toc li.level1 { 1122 margin-left: 0px; 1123 } 1124 1125 div.toc li.level2 { 1126 margin-left: 15px; 1127 } 1128 1129 div.toc li.level3 { 1130 margin-left: 30px; 1131 } 1132 1133 div.toc li.level4 { 1134 margin-left: 45px; 1135 } 1136 1137 .inherit_header { 1138 font-weight: bold; 1139 color: gray; 1140 cursor: pointer; 1141 -webkit-touch-callout: none; 1142 -webkit-user-select: none; 1143 -khtml-user-select: none; 1144 -moz-user-select: none; 1145 -ms-user-select: none; 1146 user-select: none; 1147 } 1148 1149 .inherit_header td { 1150 padding: 6px 0px 2px 5px; 1151 } 1152 1153 .inherit { 1154 display: none; 1155 } 1156 1157 tr.heading h2 { 1158 margin-top: 12px; 1159 margin-bottom: 4px; 1160 } 1161 1162 @media print 1163 { 1164 #top { display: none; } 1165 #side-nav { display: none; } 1166 #nav-path { display: none; } 1167 body { overflow:visible; } 1168 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } 1169 .summary { display: none; } 1170 .memitem { page-break-inside: avoid; } 1171 #doc-content 1172 { 1173 margin-left:0 !important; 1174 height:auto !important; 1175 width:auto !important; 1176 overflow:inherit; 1177 display:inline; 1178 } 1179 } 1180
Note: See TracChangeset
for help on using the changeset viewer.