doxygen.css 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764
  1. /* The standard CSS for doxygen 1.8.15 */
  2. body, table, div, p, dl {
  3. font: 400 14px/22px Roboto,sans-serif;
  4. }
  5. p.reference, p.definition {
  6. font: 400 14px/22px Roboto,sans-serif;
  7. }
  8. /* @group Heading Levels */
  9. h1.groupheader {
  10. font-size: 150%;
  11. }
  12. .title {
  13. font: 400 14px/28px Roboto,sans-serif;
  14. font-size: 150%;
  15. font-weight: bold;
  16. margin: 10px 2px;
  17. }
  18. h2.groupheader {
  19. border-bottom: 1px solid #BACB87;
  20. color: #697B35;
  21. font-size: 150%;
  22. font-weight: normal;
  23. margin-top: 1.75em;
  24. padding-top: 8px;
  25. padding-bottom: 4px;
  26. width: 100%;
  27. }
  28. h3.groupheader {
  29. font-size: 100%;
  30. }
  31. h1, h2, h3, h4, h5, h6 {
  32. -webkit-transition: text-shadow 0.5s linear;
  33. -moz-transition: text-shadow 0.5s linear;
  34. -ms-transition: text-shadow 0.5s linear;
  35. -o-transition: text-shadow 0.5s linear;
  36. transition: text-shadow 0.5s linear;
  37. margin-right: 15px;
  38. }
  39. h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
  40. text-shadow: 0 0 15px cyan;
  41. }
  42. dt {
  43. font-weight: bold;
  44. }
  45. div.multicol {
  46. -moz-column-gap: 1em;
  47. -webkit-column-gap: 1em;
  48. -moz-column-count: 3;
  49. -webkit-column-count: 3;
  50. }
  51. p.startli, p.startdd {
  52. margin-top: 2px;
  53. }
  54. p.starttd {
  55. margin-top: 0px;
  56. }
  57. p.endli {
  58. margin-bottom: 0px;
  59. }
  60. p.enddd {
  61. margin-bottom: 4px;
  62. }
  63. p.endtd {
  64. margin-bottom: 2px;
  65. }
  66. p.interli {
  67. }
  68. p.interdd {
  69. }
  70. p.intertd {
  71. }
  72. /* @end */
  73. caption {
  74. font-weight: bold;
  75. }
  76. span.legend {
  77. font-size: 70%;
  78. text-align: center;
  79. }
  80. h3.version {
  81. font-size: 90%;
  82. text-align: center;
  83. }
  84. div.qindex, div.navtab{
  85. background-color: #F3F6EB;
  86. border: 1px solid #CAD7A3;
  87. text-align: center;
  88. }
  89. div.qindex, div.navpath {
  90. width: 100%;
  91. line-height: 140%;
  92. }
  93. div.navtab {
  94. margin-right: 15px;
  95. }
  96. /* @group Link Styling */
  97. a {
  98. color: #788C3D;
  99. font-weight: normal;
  100. text-decoration: none;
  101. }
  102. .contents a:visited {
  103. color: #8BA246;
  104. }
  105. a:hover {
  106. text-decoration: underline;
  107. }
  108. a.qindex {
  109. font-weight: bold;
  110. }
  111. a.qindexHL {
  112. font-weight: bold;
  113. background-color: #C6D49C;
  114. color: #FFFFFF;
  115. border: 1px double #B9CA86;
  116. }
  117. .contents a.qindexHL:visited {
  118. color: #FFFFFF;
  119. }
  120. a.el {
  121. font-weight: bold;
  122. }
  123. a.elRef {
  124. }
  125. a.code, a.code:visited, a.line, a.line:visited {
  126. color: #8BA246;
  127. }
  128. a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited {
  129. color: #8BA246;
  130. }
  131. /* @end */
  132. dl.el {
  133. margin-left: -1cm;
  134. }
  135. ul {
  136. overflow: hidden; /*Fixed: list item bullets overlap floating elements*/
  137. }
  138. #side-nav ul {
  139. overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */
  140. }
  141. #main-nav ul {
  142. overflow: visible; /* reset ul rule for the navigation bar drop down lists */
  143. }
  144. .fragment {
  145. text-align: left;
  146. direction: ltr;
  147. overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/
  148. overflow-y: hidden;
  149. }
  150. pre.fragment {
  151. border: 1px solid #DDE5C4;
  152. background-color: #FDFDFB;
  153. padding: 4px 6px;
  154. margin: 4px 8px 4px 2px;
  155. overflow: auto;
  156. word-wrap: break-word;
  157. font-size: 9pt;
  158. line-height: 125%;
  159. font-family: monospace, fixed;
  160. font-size: 105%;
  161. }
  162. div.fragment {
  163. padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/
  164. margin: 4px 8px 4px 2px;
  165. background-color: #FDFDFB;
  166. border: 1px solid #DDE5C4;
  167. }
  168. div.line {
  169. font-family: monospace, fixed;
  170. font-size: 13px;
  171. min-height: 13px;
  172. line-height: 1.0;
  173. text-wrap: unrestricted;
  174. white-space: -moz-pre-wrap; /* Moz */
  175. white-space: -pre-wrap; /* Opera 4-6 */
  176. white-space: -o-pre-wrap; /* Opera 7 */
  177. white-space: pre-wrap; /* CSS3 */
  178. word-wrap: break-word; /* IE 5.5+ */
  179. text-indent: -53px;
  180. padding-left: 53px;
  181. padding-bottom: 0px;
  182. margin: 0px;
  183. -webkit-transition-property: background-color, box-shadow;
  184. -webkit-transition-duration: 0.5s;
  185. -moz-transition-property: background-color, box-shadow;
  186. -moz-transition-duration: 0.5s;
  187. -ms-transition-property: background-color, box-shadow;
  188. -ms-transition-duration: 0.5s;
  189. -o-transition-property: background-color, box-shadow;
  190. -o-transition-duration: 0.5s;
  191. transition-property: background-color, box-shadow;
  192. transition-duration: 0.5s;
  193. }
  194. div.line:after {
  195. content:"\000A";
  196. white-space: pre;
  197. }
  198. div.line.glow {
  199. background-color: cyan;
  200. box-shadow: 0 0 10px cyan;
  201. }
  202. span.lineno {
  203. padding-right: 4px;
  204. text-align: right;
  205. border-right: 2px solid #0F0;
  206. background-color: #E8E8E8;
  207. white-space: pre;
  208. }
  209. span.lineno a {
  210. background-color: #D8D8D8;
  211. }
  212. span.lineno a:hover {
  213. background-color: #C8C8C8;
  214. }
  215. .lineno {
  216. -webkit-touch-callout: none;
  217. -webkit-user-select: none;
  218. -khtml-user-select: none;
  219. -moz-user-select: none;
  220. -ms-user-select: none;
  221. user-select: none;
  222. }
  223. div.ah, span.ah {
  224. background-color: black;
  225. font-weight: bold;
  226. color: #FFFFFF;
  227. margin-bottom: 3px;
  228. margin-top: 3px;
  229. padding: 0.2em;
  230. border: solid thin #333;
  231. border-radius: 0.5em;
  232. -webkit-border-radius: .5em;
  233. -moz-border-radius: .5em;
  234. box-shadow: 2px 2px 3px #999;
  235. -webkit-box-shadow: 2px 2px 3px #999;
  236. -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
  237. background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
  238. background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%);
  239. }
  240. div.classindex ul {
  241. list-style: none;
  242. padding-left: 0;
  243. }
  244. div.classindex span.ai {
  245. display: inline-block;
  246. }
  247. div.groupHeader {
  248. margin-left: 16px;
  249. margin-top: 12px;
  250. font-weight: bold;
  251. }
  252. div.groupText {
  253. margin-left: 16px;
  254. font-style: italic;
  255. }
  256. body {
  257. background-color: white;
  258. color: black;
  259. margin: 0;
  260. }
  261. div.contents {
  262. margin-top: 10px;
  263. margin-left: 12px;
  264. margin-right: 8px;
  265. }
  266. td.indexkey {
  267. background-color: #F3F6EB;
  268. font-weight: bold;
  269. border: 1px solid #DDE5C4;
  270. margin: 2px 0px 2px 0;
  271. padding: 2px 10px;
  272. white-space: nowrap;
  273. vertical-align: top;
  274. }
  275. td.indexvalue {
  276. background-color: #F3F6EB;
  277. border: 1px solid #DDE5C4;
  278. padding: 2px 10px;
  279. margin: 2px 0px;
  280. }
  281. tr.memlist {
  282. background-color: #F5F7EE;
  283. }
  284. p.formulaDsp {
  285. text-align: center;
  286. }
  287. img.formulaDsp {
  288. }
  289. img.formulaInl, img.inline {
  290. vertical-align: middle;
  291. }
  292. div.center {
  293. text-align: center;
  294. margin-top: 0px;
  295. margin-bottom: 0px;
  296. padding: 0px;
  297. }
  298. div.center img {
  299. border: 0px;
  300. }
  301. address.footer {
  302. text-align: right;
  303. padding-right: 12px;
  304. }
  305. img.footer {
  306. border: 0px;
  307. vertical-align: middle;
  308. }
  309. /* @group Code Colorization */
  310. span.keyword {
  311. color: #008000
  312. }
  313. span.keywordtype {
  314. color: #604020
  315. }
  316. span.keywordflow {
  317. color: #e08000
  318. }
  319. span.comment {
  320. color: #800000
  321. }
  322. span.preprocessor {
  323. color: #806020
  324. }
  325. span.stringliteral {
  326. color: #002080
  327. }
  328. span.charliteral {
  329. color: #008080
  330. }
  331. span.vhdldigit {
  332. color: #ff00ff
  333. }
  334. span.vhdlchar {
  335. color: #000000
  336. }
  337. span.vhdlkeyword {
  338. color: #700070
  339. }
  340. span.vhdllogic {
  341. color: #ff0000
  342. }
  343. blockquote {
  344. background-color: #FAFBF7;
  345. border-left: 2px solid #C6D49C;
  346. margin: 0 24px 0 4px;
  347. padding: 0 12px 0 16px;
  348. }
  349. blockquote.DocNodeRTL {
  350. border-left: 0;
  351. border-right: 2px solid #C6D49C;
  352. margin: 0 4px 0 24px;
  353. padding: 0 16px 0 12px;
  354. }
  355. /* @end */
  356. /*
  357. .search {
  358. color: #003399;
  359. font-weight: bold;
  360. }
  361. form.search {
  362. margin-bottom: 0px;
  363. margin-top: 0px;
  364. }
  365. input.search {
  366. font-size: 75%;
  367. color: #000080;
  368. font-weight: normal;
  369. background-color: #e8eef2;
  370. }
  371. */
  372. td.tiny {
  373. font-size: 75%;
  374. }
  375. .dirtab {
  376. padding: 4px;
  377. border-collapse: collapse;
  378. border: 1px solid #CAD7A3;
  379. }
  380. th.dirtab {
  381. background: #F3F6EB;
  382. font-weight: bold;
  383. }
  384. hr {
  385. height: 0px;
  386. border: none;
  387. border-top: 1px solid #92AA4A;
  388. }
  389. hr.footer {
  390. height: 1px;
  391. }
  392. /* @group Member Descriptions */
  393. table.memberdecls {
  394. border-spacing: 0px;
  395. padding: 0px;
  396. }
  397. .memberdecls td, .fieldtable tr {
  398. -webkit-transition-property: background-color, box-shadow;
  399. -webkit-transition-duration: 0.5s;
  400. -moz-transition-property: background-color, box-shadow;
  401. -moz-transition-duration: 0.5s;
  402. -ms-transition-property: background-color, box-shadow;
  403. -ms-transition-duration: 0.5s;
  404. -o-transition-property: background-color, box-shadow;
  405. -o-transition-duration: 0.5s;
  406. transition-property: background-color, box-shadow;
  407. transition-duration: 0.5s;
  408. }
  409. .memberdecls td.glow, .fieldtable tr.glow {
  410. background-color: cyan;
  411. box-shadow: 0 0 15px cyan;
  412. }
  413. .mdescLeft, .mdescRight,
  414. .memItemLeft, .memItemRight,
  415. .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
  416. background-color: #FBFCF9;
  417. border: none;
  418. margin: 4px;
  419. padding: 1px 0 0 8px;
  420. }
  421. .mdescLeft, .mdescRight {
  422. padding: 0px 8px 4px 8px;
  423. color: #555;
  424. }
  425. .memSeparator {
  426. border-bottom: 1px solid #ECF0DE;
  427. line-height: 1px;
  428. margin: 0px;
  429. padding: 0px;
  430. }
  431. .memItemLeft, .memTemplItemLeft {
  432. white-space: nowrap;
  433. }
  434. .memItemRight {
  435. width: 100%;
  436. }
  437. .memTemplParams {
  438. color: #8BA246;
  439. white-space: nowrap;
  440. font-size: 80%;
  441. }
  442. /* @end */
  443. /* @group Member Details */
  444. /* Styles for detailed member documentation */
  445. .memtitle {
  446. padding: 8px;
  447. border-top: 1px solid #CDD9A8;
  448. border-left: 1px solid #CDD9A8;
  449. border-right: 1px solid #CDD9A8;
  450. border-top-right-radius: 4px;
  451. border-top-left-radius: 4px;
  452. margin-bottom: -1px;
  453. background-image: url('nav_f.png');
  454. background-repeat: repeat-x;
  455. background-color: #EEF2E2;
  456. line-height: 1.25;
  457. font-weight: 300;
  458. float:left;
  459. }
  460. .permalink
  461. {
  462. font-size: 65%;
  463. display: inline-block;
  464. vertical-align: middle;
  465. }
  466. .memtemplate {
  467. font-size: 80%;
  468. color: #8BA246;
  469. font-weight: normal;
  470. margin-left: 9px;
  471. }
  472. .memnav {
  473. background-color: #F3F6EB;
  474. border: 1px solid #CAD7A3;
  475. text-align: center;
  476. margin: 2px;
  477. margin-right: 15px;
  478. padding: 2px;
  479. }
  480. .mempage {
  481. width: 100%;
  482. }
  483. .memitem {
  484. padding: 0;
  485. margin-bottom: 10px;
  486. margin-right: 5px;
  487. -webkit-transition: box-shadow 0.5s linear;
  488. -moz-transition: box-shadow 0.5s linear;
  489. -ms-transition: box-shadow 0.5s linear;
  490. -o-transition: box-shadow 0.5s linear;
  491. transition: box-shadow 0.5s linear;
  492. display: table !important;
  493. width: 100%;
  494. }
  495. .memitem.glow {
  496. box-shadow: 0 0 15px cyan;
  497. }
  498. .memname {
  499. font-weight: 400;
  500. margin-left: 6px;
  501. }
  502. .memname td {
  503. vertical-align: bottom;
  504. }
  505. .memproto, dl.reflist dt {
  506. border-top: 1px solid #CDD9A8;
  507. border-left: 1px solid #CDD9A8;
  508. border-right: 1px solid #CDD9A8;
  509. padding: 6px 0px 6px 0px;
  510. color: #495525;
  511. font-weight: bold;
  512. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
  513. background-color: #ECF1DF;
  514. /* opera specific markup */
  515. box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  516. border-top-right-radius: 4px;
  517. /* firefox specific markup */
  518. -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
  519. -moz-border-radius-topright: 4px;
  520. /* webkit specific markup */
  521. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  522. -webkit-border-top-right-radius: 4px;
  523. }
  524. .overload {
  525. font-family: "courier new",courier,monospace;
  526. font-size: 65%;
  527. }
  528. .memdoc, dl.reflist dd {
  529. border-bottom: 1px solid #CDD9A8;
  530. border-left: 1px solid #CDD9A8;
  531. border-right: 1px solid #CDD9A8;
  532. padding: 6px 10px 2px 10px;
  533. background-color: #FDFDFB;
  534. border-top-width: 0;
  535. background-image:url('nav_g.png');
  536. background-repeat:repeat-x;
  537. background-color: #FFFFFF;
  538. /* opera specific markup */
  539. border-bottom-left-radius: 4px;
  540. border-bottom-right-radius: 4px;
  541. box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  542. /* firefox specific markup */
  543. -moz-border-radius-bottomleft: 4px;
  544. -moz-border-radius-bottomright: 4px;
  545. -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
  546. /* webkit specific markup */
  547. -webkit-border-bottom-left-radius: 4px;
  548. -webkit-border-bottom-right-radius: 4px;
  549. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  550. }
  551. dl.reflist dt {
  552. padding: 5px;
  553. }
  554. dl.reflist dd {
  555. margin: 0px 0px 10px 0px;
  556. padding: 5px;
  557. }
  558. .paramkey {
  559. text-align: right;
  560. }
  561. .paramtype {
  562. white-space: nowrap;
  563. }
  564. .paramname {
  565. color: #602020;
  566. white-space: nowrap;
  567. }
  568. .paramname em {
  569. font-style: normal;
  570. }
  571. .paramname code {
  572. line-height: 14px;
  573. }
  574. .params, .retval, .exception, .tparams {
  575. margin-left: 0px;
  576. padding-left: 0px;
  577. }
  578. .params .paramname, .retval .paramname, .tparams .paramname {
  579. font-weight: bold;
  580. vertical-align: top;
  581. }
  582. .params .paramtype, .tparams .paramtype {
  583. font-style: italic;
  584. vertical-align: top;
  585. }
  586. .params .paramdir, .tparams .paramdir {
  587. font-family: "courier new",courier,monospace;
  588. vertical-align: top;
  589. }
  590. table.mlabels {
  591. border-spacing: 0px;
  592. }
  593. td.mlabels-left {
  594. width: 100%;
  595. padding: 0px;
  596. }
  597. td.mlabels-right {
  598. vertical-align: bottom;
  599. padding: 0px;
  600. white-space: nowrap;
  601. }
  602. span.mlabels {
  603. margin-left: 8px;
  604. }
  605. span.mlabel {
  606. background-color: #ADC172;
  607. border-top:1px solid #9CB453;
  608. border-left:1px solid #9CB453;
  609. border-right:1px solid #DDE5C4;
  610. border-bottom:1px solid #DDE5C4;
  611. text-shadow: none;
  612. color: white;
  613. margin-right: 4px;
  614. padding: 2px 3px;
  615. border-radius: 3px;
  616. font-size: 7pt;
  617. white-space: nowrap;
  618. vertical-align: middle;
  619. }
  620. /* @end */
  621. /* these are for tree view inside a (index) page */
  622. div.directory {
  623. margin: 10px 0px;
  624. border-top: 1px solid #C6D49C;
  625. border-bottom: 1px solid #C6D49C;
  626. width: 100%;
  627. }
  628. .directory table {
  629. border-collapse:collapse;
  630. }
  631. .directory td {
  632. margin: 0px;
  633. padding: 0px;
  634. vertical-align: top;
  635. }
  636. .directory td.entry {
  637. white-space: nowrap;
  638. padding-right: 6px;
  639. padding-top: 3px;
  640. }
  641. .directory td.entry a {
  642. outline:none;
  643. }
  644. .directory td.entry a img {
  645. border: none;
  646. }
  647. .directory td.desc {
  648. width: 100%;
  649. padding-left: 6px;
  650. padding-right: 6px;
  651. padding-top: 3px;
  652. border-left: 1px solid rgba(0,0,0,0.05);
  653. }
  654. .directory tr.even {
  655. padding-left: 6px;
  656. background-color: #FAFBF7;
  657. }
  658. .directory img {
  659. vertical-align: -30%;
  660. }
  661. .directory .levels {
  662. white-space: nowrap;
  663. width: 100%;
  664. text-align: right;
  665. font-size: 9pt;
  666. }
  667. .directory .levels span {
  668. cursor: pointer;
  669. padding-left: 2px;
  670. padding-right: 2px;
  671. color: #788C3D;
  672. }
  673. .arrow {
  674. color: #C6D49C;
  675. -webkit-user-select: none;
  676. -khtml-user-select: none;
  677. -moz-user-select: none;
  678. -ms-user-select: none;
  679. user-select: none;
  680. cursor: pointer;
  681. font-size: 80%;
  682. display: inline-block;
  683. width: 16px;
  684. height: 22px;
  685. }
  686. .icon {
  687. font-family: Arial, Helvetica;
  688. font-weight: bold;
  689. font-size: 12px;
  690. height: 14px;
  691. width: 16px;
  692. display: inline-block;
  693. background-color: #ADC172;
  694. color: white;
  695. text-align: center;
  696. border-radius: 4px;
  697. margin-left: 2px;
  698. margin-right: 2px;
  699. }
  700. .icona {
  701. width: 24px;
  702. height: 22px;
  703. display: inline-block;
  704. }
  705. .iconfopen {
  706. width: 24px;
  707. height: 18px;
  708. margin-bottom: 4px;
  709. background-image:url('folderopen.png');
  710. background-position: 0px -4px;
  711. background-repeat: repeat-y;
  712. vertical-align:top;
  713. display: inline-block;
  714. }
  715. .iconfclosed {
  716. width: 24px;
  717. height: 18px;
  718. margin-bottom: 4px;
  719. background-image:url('folderclosed.png');
  720. background-position: 0px -4px;
  721. background-repeat: repeat-y;
  722. vertical-align:top;
  723. display: inline-block;
  724. }
  725. .icondoc {
  726. width: 24px;
  727. height: 18px;
  728. margin-bottom: 4px;
  729. background-image:url('doc.png');
  730. background-position: 0px -4px;
  731. background-repeat: repeat-y;
  732. vertical-align:top;
  733. display: inline-block;
  734. }
  735. table.directory {
  736. font: 400 14px Roboto,sans-serif;
  737. }
  738. /* @end */
  739. div.dynheader {
  740. margin-top: 8px;
  741. -webkit-touch-callout: none;
  742. -webkit-user-select: none;
  743. -khtml-user-select: none;
  744. -moz-user-select: none;
  745. -ms-user-select: none;
  746. user-select: none;
  747. }
  748. address {
  749. font-style: normal;
  750. color: #54612A;
  751. }
  752. table.doxtable caption {
  753. caption-side: top;
  754. }
  755. table.doxtable {
  756. border-collapse:collapse;
  757. margin-top: 4px;
  758. margin-bottom: 4px;
  759. }
  760. table.doxtable td, table.doxtable th {
  761. border: 1px solid #59682D;
  762. padding: 3px 7px 2px;
  763. }
  764. table.doxtable th {
  765. background-color: #6D7F37;
  766. color: #FFFFFF;
  767. font-size: 110%;
  768. padding-bottom: 4px;
  769. padding-top: 5px;
  770. }
  771. table.fieldtable {
  772. /*width: 100%;*/
  773. margin-bottom: 10px;
  774. border: 1px solid #CDD9A8;
  775. border-spacing: 0px;
  776. -moz-border-radius: 4px;
  777. -webkit-border-radius: 4px;
  778. border-radius: 4px;
  779. -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
  780. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  781. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  782. }
  783. .fieldtable td, .fieldtable th {
  784. padding: 3px 7px 2px;
  785. }
  786. .fieldtable td.fieldtype, .fieldtable td.fieldname {
  787. white-space: nowrap;
  788. border-right: 1px solid #CDD9A8;
  789. border-bottom: 1px solid #CDD9A8;
  790. vertical-align: top;
  791. }
  792. .fieldtable td.fieldname {
  793. padding-top: 3px;
  794. }
  795. .fieldtable td.fielddoc {
  796. border-bottom: 1px solid #CDD9A8;
  797. /*width: 100%;*/
  798. }
  799. .fieldtable td.fielddoc p:first-child {
  800. margin-top: 0px;
  801. }
  802. .fieldtable td.fielddoc p:last-child {
  803. margin-bottom: 2px;
  804. }
  805. .fieldtable tr:last-child td {
  806. border-bottom: none;
  807. }
  808. .fieldtable th {
  809. background-image:url('nav_f.png');
  810. background-repeat:repeat-x;
  811. background-color: #EEF2E2;
  812. font-size: 90%;
  813. color: #495525;
  814. padding-bottom: 4px;
  815. padding-top: 5px;
  816. text-align:left;
  817. font-weight: 400;
  818. -moz-border-radius-topleft: 4px;
  819. -moz-border-radius-topright: 4px;
  820. -webkit-border-top-left-radius: 4px;
  821. -webkit-border-top-right-radius: 4px;
  822. border-top-left-radius: 4px;
  823. border-top-right-radius: 4px;
  824. border-bottom: 1px solid #CDD9A8;
  825. }
  826. .tabsearch {
  827. top: 0px;
  828. left: 10px;
  829. height: 36px;
  830. background-image: url('tab_b.png');
  831. z-index: 101;
  832. overflow: hidden;
  833. font-size: 13px;
  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:#BBCC8A;
  844. border:solid 1px #DCE4C2;
  845. overflow:hidden;
  846. margin:0px;
  847. padding:0px;
  848. }
  849. .navpath li
  850. {
  851. list-style-type:none;
  852. float:left;
  853. padding-left:10px;
  854. padding-right:15px;
  855. background-image:url('bc_s.png');
  856. background-repeat:no-repeat;
  857. background-position:right;
  858. color:#6B7C36;
  859. }
  860. .navpath li.navelem a
  861. {
  862. height:32px;
  863. display:block;
  864. text-decoration: none;
  865. outline: none;
  866. color: #505D28;
  867. font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;
  868. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
  869. text-decoration: none;
  870. }
  871. .navpath li.navelem a:hover
  872. {
  873. color:#A8BD68;
  874. }
  875. .navpath li.footer
  876. {
  877. list-style-type:none;
  878. float:right;
  879. padding-left:10px;
  880. padding-right:15px;
  881. background-image:none;
  882. background-repeat:no-repeat;
  883. background-position:right;
  884. color:#6B7C36;
  885. font-size: 8pt;
  886. }
  887. div.summary
  888. {
  889. float: right;
  890. font-size: 8pt;
  891. padding-right: 5px;
  892. width: 50%;
  893. text-align: right;
  894. }
  895. div.summary a
  896. {
  897. white-space: nowrap;
  898. }
  899. table.classindex
  900. {
  901. margin: 10px;
  902. white-space: nowrap;
  903. margin-left: 3%;
  904. margin-right: 3%;
  905. width: 94%;
  906. border: 0;
  907. border-spacing: 0;
  908. padding: 0;
  909. }
  910. div.ingroups
  911. {
  912. font-size: 8pt;
  913. width: 50%;
  914. text-align: left;
  915. }
  916. div.ingroups a
  917. {
  918. white-space: nowrap;
  919. }
  920. div.header
  921. {
  922. background-image:url('nav_h.png');
  923. background-repeat:repeat-x;
  924. background-color: #FBFCF9;
  925. margin: 0px;
  926. border-bottom: 1px solid #DDE5C4;
  927. }
  928. div.headertitle
  929. {
  930. padding: 5px 5px 5px 10px;
  931. }
  932. .PageDocRTL-title div.headertitle {
  933. text-align: right;
  934. direction: rtl;
  935. }
  936. dl {
  937. padding: 0 0 0 0;
  938. }
  939. /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */
  940. dl.section {
  941. margin-left: 0px;
  942. padding-left: 0px;
  943. }
  944. dl.section.DocNodeRTL {
  945. margin-right: 0px;
  946. padding-right: 0px;
  947. }
  948. dl.note {
  949. margin-left: -7px;
  950. padding-left: 3px;
  951. border-left: 4px solid;
  952. border-color: #D0C000;
  953. }
  954. dl.note.DocNodeRTL {
  955. margin-left: 0;
  956. padding-left: 0;
  957. border-left: 0;
  958. margin-right: -7px;
  959. padding-right: 3px;
  960. border-right: 4px solid;
  961. border-color: #D0C000;
  962. }
  963. dl.warning, dl.attention {
  964. margin-left: -7px;
  965. padding-left: 3px;
  966. border-left: 4px solid;
  967. border-color: #FF0000;
  968. }
  969. dl.warning.DocNodeRTL, dl.attention.DocNodeRTL {
  970. margin-left: 0;
  971. padding-left: 0;
  972. border-left: 0;
  973. margin-right: -7px;
  974. padding-right: 3px;
  975. border-right: 4px solid;
  976. border-color: #FF0000;
  977. }
  978. dl.pre, dl.post, dl.invariant {
  979. margin-left: -7px;
  980. padding-left: 3px;
  981. border-left: 4px solid;
  982. border-color: #00D000;
  983. }
  984. dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL {
  985. margin-left: 0;
  986. padding-left: 0;
  987. border-left: 0;
  988. margin-right: -7px;
  989. padding-right: 3px;
  990. border-right: 4px solid;
  991. border-color: #00D000;
  992. }
  993. dl.deprecated {
  994. margin-left: -7px;
  995. padding-left: 3px;
  996. border-left: 4px solid;
  997. border-color: #505050;
  998. }
  999. dl.deprecated.DocNodeRTL {
  1000. margin-left: 0;
  1001. padding-left: 0;
  1002. border-left: 0;
  1003. margin-right: -7px;
  1004. padding-right: 3px;
  1005. border-right: 4px solid;
  1006. border-color: #505050;
  1007. }
  1008. dl.todo {
  1009. margin-left: -7px;
  1010. padding-left: 3px;
  1011. border-left: 4px solid;
  1012. border-color: #00C0E0;
  1013. }
  1014. dl.todo.DocNodeRTL {
  1015. margin-left: 0;
  1016. padding-left: 0;
  1017. border-left: 0;
  1018. margin-right: -7px;
  1019. padding-right: 3px;
  1020. border-right: 4px solid;
  1021. border-color: #00C0E0;
  1022. }
  1023. dl.test {
  1024. margin-left: -7px;
  1025. padding-left: 3px;
  1026. border-left: 4px solid;
  1027. border-color: #3030E0;
  1028. }
  1029. dl.test.DocNodeRTL {
  1030. margin-left: 0;
  1031. padding-left: 0;
  1032. border-left: 0;
  1033. margin-right: -7px;
  1034. padding-right: 3px;
  1035. border-right: 4px solid;
  1036. border-color: #3030E0;
  1037. }
  1038. dl.bug {
  1039. margin-left: -7px;
  1040. padding-left: 3px;
  1041. border-left: 4px solid;
  1042. border-color: #C08050;
  1043. }
  1044. dl.bug.DocNodeRTL {
  1045. margin-left: 0;
  1046. padding-left: 0;
  1047. border-left: 0;
  1048. margin-right: -7px;
  1049. padding-right: 3px;
  1050. border-right: 4px solid;
  1051. border-color: #C08050;
  1052. }
  1053. dl.section dd {
  1054. margin-bottom: 6px;
  1055. }
  1056. #projectlogo
  1057. {
  1058. text-align: center;
  1059. vertical-align: bottom;
  1060. border-collapse: separate;
  1061. }
  1062. #projectlogo img
  1063. {
  1064. border: 0px none;
  1065. }
  1066. #projectalign
  1067. {
  1068. vertical-align: middle;
  1069. }
  1070. #projectname
  1071. {
  1072. font: 300% Tahoma, Arial,sans-serif;
  1073. margin: 0px;
  1074. padding: 2px 0px;
  1075. }
  1076. #projectbrief
  1077. {
  1078. font: 120% Tahoma, Arial,sans-serif;
  1079. margin: 0px;
  1080. padding: 0px;
  1081. }
  1082. #projectnumber
  1083. {
  1084. font: 50% Tahoma, Arial,sans-serif;
  1085. margin: 0px;
  1086. padding: 0px;
  1087. }
  1088. #titlearea
  1089. {
  1090. padding: 0px;
  1091. margin: 0px;
  1092. width: 100%;
  1093. border-bottom: 1px solid #9CB453;
  1094. }
  1095. .image
  1096. {
  1097. text-align: center;
  1098. }
  1099. .dotgraph
  1100. {
  1101. text-align: center;
  1102. }
  1103. .mscgraph
  1104. {
  1105. text-align: center;
  1106. }
  1107. .plantumlgraph
  1108. {
  1109. text-align: center;
  1110. }
  1111. .diagraph
  1112. {
  1113. text-align: center;
  1114. }
  1115. .caption
  1116. {
  1117. font-weight: bold;
  1118. }
  1119. div.zoom
  1120. {
  1121. border: 1px solid #BFCE90;
  1122. }
  1123. dl.citelist {
  1124. margin-bottom:50px;
  1125. }
  1126. dl.citelist dt {
  1127. color:#647533;
  1128. float:left;
  1129. font-weight:bold;
  1130. margin-right:10px;
  1131. padding:5px;
  1132. }
  1133. dl.citelist dd {
  1134. margin:2px 0;
  1135. padding:5px 0;
  1136. }
  1137. div.toc {
  1138. padding: 14px 25px;
  1139. background-color: #F9FAF4;
  1140. border: 1px solid #E8EED8;
  1141. border-radius: 7px 7px 7px 7px;
  1142. float: right;
  1143. height: auto;
  1144. margin: 0 8px 10px 10px;
  1145. width: 200px;
  1146. }
  1147. .PageDocRTL-title div.toc {
  1148. float: left !important;
  1149. text-align: right;
  1150. }
  1151. div.toc li {
  1152. background: url("bdwn.png") no-repeat scroll 0 5px transparent;
  1153. font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
  1154. margin-top: 5px;
  1155. padding-left: 10px;
  1156. padding-top: 2px;
  1157. }
  1158. .PageDocRTL-title div.toc li {
  1159. background-position-x: right !important;
  1160. padding-left: 0 !important;
  1161. padding-right: 10px;
  1162. }
  1163. div.toc h3 {
  1164. font: bold 12px/1.2 Arial,FreeSans,sans-serif;
  1165. color: #8BA246;
  1166. border-bottom: 0 none;
  1167. margin: 0;
  1168. }
  1169. div.toc ul {
  1170. list-style: none outside none;
  1171. border: medium none;
  1172. padding: 0px;
  1173. }
  1174. div.toc li.level1 {
  1175. margin-left: 0px;
  1176. }
  1177. div.toc li.level2 {
  1178. margin-left: 15px;
  1179. }
  1180. div.toc li.level3 {
  1181. margin-left: 30px;
  1182. }
  1183. div.toc li.level4 {
  1184. margin-left: 45px;
  1185. }
  1186. .PageDocRTL-title div.toc li.level1 {
  1187. margin-left: 0 !important;
  1188. margin-right: 0;
  1189. }
  1190. .PageDocRTL-title div.toc li.level2 {
  1191. margin-left: 0 !important;
  1192. margin-right: 15px;
  1193. }
  1194. .PageDocRTL-title div.toc li.level3 {
  1195. margin-left: 0 !important;
  1196. margin-right: 30px;
  1197. }
  1198. .PageDocRTL-title div.toc li.level4 {
  1199. margin-left: 0 !important;
  1200. margin-right: 45px;
  1201. }
  1202. .inherit_header {
  1203. font-weight: bold;
  1204. color: gray;
  1205. cursor: pointer;
  1206. -webkit-touch-callout: none;
  1207. -webkit-user-select: none;
  1208. -khtml-user-select: none;
  1209. -moz-user-select: none;
  1210. -ms-user-select: none;
  1211. user-select: none;
  1212. }
  1213. .inherit_header td {
  1214. padding: 6px 0px 2px 5px;
  1215. }
  1216. .inherit {
  1217. display: none;
  1218. }
  1219. tr.heading h2 {
  1220. margin-top: 12px;
  1221. margin-bottom: 4px;
  1222. }
  1223. /* tooltip related style info */
  1224. .ttc {
  1225. position: absolute;
  1226. display: none;
  1227. }
  1228. #powerTip {
  1229. cursor: default;
  1230. white-space: nowrap;
  1231. background-color: white;
  1232. border: 1px solid gray;
  1233. border-radius: 4px 4px 4px 4px;
  1234. box-shadow: 1px 1px 7px gray;
  1235. display: none;
  1236. font-size: smaller;
  1237. max-width: 80%;
  1238. opacity: 0.9;
  1239. padding: 1ex 1em 1em;
  1240. position: absolute;
  1241. z-index: 2147483647;
  1242. }
  1243. #powerTip div.ttdoc {
  1244. color: grey;
  1245. font-style: italic;
  1246. }
  1247. #powerTip div.ttname a {
  1248. font-weight: bold;
  1249. }
  1250. #powerTip div.ttname {
  1251. font-weight: bold;
  1252. }
  1253. #powerTip div.ttdeci {
  1254. color: #006318;
  1255. }
  1256. #powerTip div {
  1257. margin: 0px;
  1258. padding: 0px;
  1259. font: 12px/16px Roboto,sans-serif;
  1260. }
  1261. #powerTip:before, #powerTip:after {
  1262. content: "";
  1263. position: absolute;
  1264. margin: 0px;
  1265. }
  1266. #powerTip.n:after, #powerTip.n:before,
  1267. #powerTip.s:after, #powerTip.s:before,
  1268. #powerTip.w:after, #powerTip.w:before,
  1269. #powerTip.e:after, #powerTip.e:before,
  1270. #powerTip.ne:after, #powerTip.ne:before,
  1271. #powerTip.se:after, #powerTip.se:before,
  1272. #powerTip.nw:after, #powerTip.nw:before,
  1273. #powerTip.sw:after, #powerTip.sw:before {
  1274. border: solid transparent;
  1275. content: " ";
  1276. height: 0;
  1277. width: 0;
  1278. position: absolute;
  1279. }
  1280. #powerTip.n:after, #powerTip.s:after,
  1281. #powerTip.w:after, #powerTip.e:after,
  1282. #powerTip.nw:after, #powerTip.ne:after,
  1283. #powerTip.sw:after, #powerTip.se:after {
  1284. border-color: rgba(255, 255, 255, 0);
  1285. }
  1286. #powerTip.n:before, #powerTip.s:before,
  1287. #powerTip.w:before, #powerTip.e:before,
  1288. #powerTip.nw:before, #powerTip.ne:before,
  1289. #powerTip.sw:before, #powerTip.se:before {
  1290. border-color: rgba(128, 128, 128, 0);
  1291. }
  1292. #powerTip.n:after, #powerTip.n:before,
  1293. #powerTip.ne:after, #powerTip.ne:before,
  1294. #powerTip.nw:after, #powerTip.nw:before {
  1295. top: 100%;
  1296. }
  1297. #powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after {
  1298. border-top-color: #FFFFFF;
  1299. border-width: 10px;
  1300. margin: 0px -10px;
  1301. }
  1302. #powerTip.n:before {
  1303. border-top-color: #808080;
  1304. border-width: 11px;
  1305. margin: 0px -11px;
  1306. }
  1307. #powerTip.n:after, #powerTip.n:before {
  1308. left: 50%;
  1309. }
  1310. #powerTip.nw:after, #powerTip.nw:before {
  1311. right: 14px;
  1312. }
  1313. #powerTip.ne:after, #powerTip.ne:before {
  1314. left: 14px;
  1315. }
  1316. #powerTip.s:after, #powerTip.s:before,
  1317. #powerTip.se:after, #powerTip.se:before,
  1318. #powerTip.sw:after, #powerTip.sw:before {
  1319. bottom: 100%;
  1320. }
  1321. #powerTip.s:after, #powerTip.se:after, #powerTip.sw:after {
  1322. border-bottom-color: #FFFFFF;
  1323. border-width: 10px;
  1324. margin: 0px -10px;
  1325. }
  1326. #powerTip.s:before, #powerTip.se:before, #powerTip.sw:before {
  1327. border-bottom-color: #808080;
  1328. border-width: 11px;
  1329. margin: 0px -11px;
  1330. }
  1331. #powerTip.s:after, #powerTip.s:before {
  1332. left: 50%;
  1333. }
  1334. #powerTip.sw:after, #powerTip.sw:before {
  1335. right: 14px;
  1336. }
  1337. #powerTip.se:after, #powerTip.se:before {
  1338. left: 14px;
  1339. }
  1340. #powerTip.e:after, #powerTip.e:before {
  1341. left: 100%;
  1342. }
  1343. #powerTip.e:after {
  1344. border-left-color: #FFFFFF;
  1345. border-width: 10px;
  1346. top: 50%;
  1347. margin-top: -10px;
  1348. }
  1349. #powerTip.e:before {
  1350. border-left-color: #808080;
  1351. border-width: 11px;
  1352. top: 50%;
  1353. margin-top: -11px;
  1354. }
  1355. #powerTip.w:after, #powerTip.w:before {
  1356. right: 100%;
  1357. }
  1358. #powerTip.w:after {
  1359. border-right-color: #FFFFFF;
  1360. border-width: 10px;
  1361. top: 50%;
  1362. margin-top: -10px;
  1363. }
  1364. #powerTip.w:before {
  1365. border-right-color: #808080;
  1366. border-width: 11px;
  1367. top: 50%;
  1368. margin-top: -11px;
  1369. }
  1370. @media print
  1371. {
  1372. #top { display: none; }
  1373. #side-nav { display: none; }
  1374. #nav-path { display: none; }
  1375. body { overflow:visible; }
  1376. h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  1377. .summary { display: none; }
  1378. .memitem { page-break-inside: avoid; }
  1379. #doc-content
  1380. {
  1381. margin-left:0 !important;
  1382. height:auto !important;
  1383. width:auto !important;
  1384. overflow:inherit;
  1385. display:inline;
  1386. }
  1387. }
  1388. /* @group Markdown */
  1389. /*
  1390. table.markdownTable {
  1391. border-collapse:collapse;
  1392. margin-top: 4px;
  1393. margin-bottom: 4px;
  1394. }
  1395. table.markdownTable td, table.markdownTable th {
  1396. border: 1px solid #59682D;
  1397. padding: 3px 7px 2px;
  1398. }
  1399. table.markdownTableHead tr {
  1400. }
  1401. table.markdownTableBodyLeft td, table.markdownTable th {
  1402. border: 1px solid #59682D;
  1403. padding: 3px 7px 2px;
  1404. }
  1405. th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone {
  1406. background-color: #6D7F37;
  1407. color: #FFFFFF;
  1408. font-size: 110%;
  1409. padding-bottom: 4px;
  1410. padding-top: 5px;
  1411. }
  1412. th.markdownTableHeadLeft {
  1413. text-align: left
  1414. }
  1415. th.markdownTableHeadRight {
  1416. text-align: right
  1417. }
  1418. th.markdownTableHeadCenter {
  1419. text-align: center
  1420. }
  1421. */
  1422. table.markdownTable {
  1423. border-collapse:collapse;
  1424. margin-top: 4px;
  1425. margin-bottom: 4px;
  1426. }
  1427. table.markdownTable td, table.markdownTable th {
  1428. border: 1px solid #59682D;
  1429. padding: 3px 7px 2px;
  1430. }
  1431. table.markdownTable tr {
  1432. }
  1433. th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone {
  1434. background-color: #6D7F37;
  1435. color: #FFFFFF;
  1436. font-size: 110%;
  1437. padding-bottom: 4px;
  1438. padding-top: 5px;
  1439. }
  1440. th.markdownTableHeadLeft, td.markdownTableBodyLeft {
  1441. text-align: left
  1442. }
  1443. th.markdownTableHeadRight, td.markdownTableBodyRight {
  1444. text-align: right
  1445. }
  1446. th.markdownTableHeadCenter, td.markdownTableBodyCenter {
  1447. text-align: center
  1448. }
  1449. .DocNodeRTL {
  1450. text-align: right;
  1451. direction: rtl;
  1452. }
  1453. .DocNodeLTR {
  1454. text-align: left;
  1455. direction: ltr;
  1456. }
  1457. table.DocNodeRTL {
  1458. width: auto;
  1459. margin-right: 0;
  1460. margin-left: auto;
  1461. }
  1462. table.DocNodeLTR {
  1463. width: auto;
  1464. margin-right: auto;
  1465. margin-left: 0;
  1466. }
  1467. tt, code, kbd, samp
  1468. {
  1469. display: inline-block;
  1470. direction:ltr;
  1471. }
  1472. /* @end */
  1473. u {
  1474. text-decoration: underline;
  1475. }