cmsis.css 20 KB

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