webhelp_toc.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. html
  2. {
  3. overflow: auto;
  4. }
  5. body {
  6. margin: 0px; padding:0;
  7. font-family: arial, helvetica, sans-serif;
  8. font-size:18px;
  9. background-color:white;
  10. }
  11. #tocMenu{
  12. /* Patch EXM-18336
  13. * padding-left: 0.6em;
  14. */
  15. margin:0 auto;
  16. overflow: auto;
  17. min-width:250px;
  18. width:100%;
  19. }
  20. #tocMenu div{
  21. text-decoration:none;
  22. color:#336699;
  23. padding:4px 10px 2px 10px;
  24. cursor:pointer;
  25. border-bottom:0;
  26. background-color:#f9f9f9;
  27. border:1px solid #ddd;
  28. border-top-left-radius:7px;
  29. border-top-right-radius:7px;
  30. border-bottom:0;
  31. float: left;
  32. min-height: 1px;
  33. text-shadow:0 1px 0 #fff;
  34. }
  35. #tocMenu div:hover{
  36. color:#cc0000;
  37. }
  38. #tocMenu div.selected{
  39. text-decoration: none;
  40. /*width:70px;*/
  41. color:#333;
  42. background-color:#D3E1F1;
  43. border:1px solid #ccc;
  44. border-top-left-radius:7px;
  45. border-top-right-radius:7px;
  46. border-bottom:0;
  47. text-shadow:0 1px 0 #fff;
  48. }
  49. #indexBlock {
  50. line-height:1.8em;
  51. }
  52. #indexBlock a{
  53. text-decoration:none;
  54. }
  55. #indexBlock fieldset{
  56. border:0;
  57. padding-top:0;
  58. border-bottom:1px solid #eee;
  59. }
  60. #indexBlock ul{
  61. color:#444;
  62. list-style:none;
  63. margin:0;
  64. padding-left:16px;
  65. }
  66. #list_idx{
  67. padding-left:20px;
  68. }
  69. #id_search{
  70. width:270px;
  71. }
  72. #bck_toc{
  73. background-color:#D3E1F1;
  74. padding:10px 0 0 0px;
  75. }
  76. #tab_nav_tree_placeholder, #searchResults{
  77. height:90%;
  78. /*overflow: auto;*/
  79. }
  80. #searchForm{
  81. padding:0 10px 15px 10px;
  82. border-bottom:0px solid #eee;
  83. }
  84. #bck_toc #searchBlock,#bck_toc #indexBlock, #bck_toc #contentBlock{
  85. border-top:1px solid #ccc;
  86. background-color:white;
  87. padding-top:20px;
  88. position: relative;
  89. vertical-align:top;
  90. width:100%;
  91. }
  92. h1{
  93. font-size:1.2em;
  94. padding:0.1em 0 0 0.3em;
  95. }
  96. a span.navheader_separator,a span.navheader_linktext {
  97. display:none;
  98. }
  99. a{
  100. color:navy;
  101. text-decoration:underline;
  102. }
  103. a:hover{
  104. color:red;
  105. text-decoration:underline;
  106. }
  107. .hide{display:none}
  108. #preload{
  109. position:absolute;
  110. margin:80px 0 0 40px;
  111. color:#444;
  112. height:100px;
  113. text-align:center;
  114. }
  115. .g_pu,.g_nu {cursor:pointer; padding:0 4px 0 4px;}
  116. /*
  117. * Start patch WebHelp - 18.08.2010 EXM-18336
  118. */
  119. .g_nu,.g_pu,
  120. a.link{
  121. padding-left: 10px;
  122. padding-right: 10px;
  123. color: #0000EE;
  124. text-decoration: underline;
  125. }
  126. a.link:hover{
  127. color:red;
  128. text-decoration: underline;
  129. }
  130. a.link:visited{
  131. color: #840084;
  132. text-decoration: underline;
  133. font-size:40px;
  134. }
  135. .normalLink{
  136. color: #2B008C;
  137. background-color: #EBEFF8;
  138. text-decoration: none;
  139. font-size: 15px;
  140. padding-left: 10px;
  141. padding-right: 10px;
  142. }
  143. a.otherLink{
  144. color: #0050A0;
  145. background-color: #EBEFF8;
  146. text-decoration: none;
  147. font-size: 13px;
  148. font-weight: bold;
  149. }
  150. a.otherLink:hover{
  151. text-decoration: none;
  152. }
  153. .searchButton{
  154. font-size: 11px;
  155. margin-left: 10px;
  156. }
  157. .highlightText{
  158. color: #0050A0;
  159. /*
  160. background-color: #EBEFF8;
  161. */
  162. text-decoration: none;
  163. font-size: 13px;
  164. font-weight: bold;
  165. }
  166. .textToSearch{
  167. font-size: 11px;
  168. }
  169. a.foundResult{
  170. color:#0000FF;
  171. font-weight: bold;
  172. }
  173. a.foundResult:visited{
  174. color:#660066;
  175. }
  176. a.foundResult:hover{
  177. color:red;
  178. }
  179. /*
  180. * End patch WebHelp - 18.08.2010 EXM-18336
  181. */
  182. table.nav{
  183. width:100%;
  184. vertical-align:middle;
  185. }
  186. table.nav td + td {
  187. text-align:right;
  188. }
  189. h1.topictitle1 {
  190. color:black;
  191. background-color:#eee;
  192. padding: 0.2em;
  193. }
  194. .navfooter{
  195. border-top:1px solid #eee;
  196. padding:0.4em 0 0 0;
  197. }
  198. #searchResults{
  199. padding: 0.6em;
  200. }
  201. .searchresult{
  202. margin:0;
  203. padding:0
  204. }
  205. .searchresult li{
  206. margin-top:0.2em;
  207. padding: 0.6em;
  208. }
  209. /*
  210. .searchresult li:hover{
  211. background-color:#ebebeb;
  212. }
  213. */
  214. div.footer{
  215. line-height:24px;
  216. padding:0 0 0 0.9em;
  217. }
  218. div.footer span.oXygenLogo img{
  219. border:0;
  220. vertical-align:bottom;
  221. }
  222. div.footer span.xmlauthor{
  223. margin-bottom:0.7em;
  224. }
  225. /*----------- OLD STYLE ---------------*/
  226. /*The copyright.*/
  227. div, td{
  228. font-size:10pt;
  229. }
  230. div.copyright{
  231. font-size:8pt;
  232. padding-top:1em;
  233. }
  234. #nav_tree div.copyright{
  235. padding-top:0.2em;
  236. padding-left:1em;
  237. }
  238. /* Makes the titles stand-out */
  239. h1.title,
  240. h2.title{
  241. color:black;
  242. background-color:silver;
  243. padding: 0.2em;
  244. }
  245. /* The navigation tree classes */
  246. #nav_tree > ul{
  247. border-top:1px solid gray;
  248. border-bottom:1px solid gray;
  249. margin-top: 0em;
  250. margin-left: 0.5em;
  251. margin-right: 0.5em;
  252. min-width:300px;
  253. padding: 1em;
  254. font-size:10pt;
  255. }
  256. #content{
  257. margin-left:1em;
  258. border-left:0px solid gray;
  259. padding-left:1em;
  260. }
  261. #nav_tree ul ul{
  262. margin:0;
  263. padding:0;
  264. }
  265. #nav_tree form{
  266. margin-top:0.5em;
  267. margin-bottom:0.5em;
  268. padding-right:0.5em;
  269. text-align:right;
  270. }
  271. #nav_tree form input{
  272. font-size:8pt;
  273. }
  274. #nav_tree li {
  275. margin-top: 0.2em;
  276. margin-left: 1em;
  277. list-style-type:none;
  278. }
  279. /* The links */
  280. #nav_tree a.nav_tree{
  281. color:black;
  282. background-color:inherit;
  283. }
  284. /* The selected page. */
  285. #nav_tree li.nav_tree_last_open_book > a{
  286. background-color: #333399;
  287. color:white;
  288. text-decoration:none;
  289. }
  290. #nav_tree li:before{
  291. display:inline;
  292. vertical-align:text-bottom;
  293. padding-top:0.2em;
  294. padding-right:0.2em;
  295. }
  296. /* Title displayed over the tree area.*/
  297. #nav_tree p.nav_title {
  298. font-size: 14pt;
  299. font-weight: bold;
  300. margin-bottom: 0.5px;
  301. margin-top: 0.5em;
  302. margin-left: 0.5em;
  303. margin-right: 0.5em;
  304. }
  305. #nav_tree p.nav_title a{
  306. text-decoration:none;
  307. color:black;
  308. background-color:inherit;
  309. }
  310. /* The path in the document displayed over the content.*/
  311. div.nav_path{
  312. text-align:right;
  313. }
  314. /*----------------
  315. The footer.
  316. -----------------*/
  317. .footer {
  318. margin-top:3em;
  319. }
  320. .redX {
  321. color:red;
  322. background-color:inherit;
  323. font-size:1.2em;
  324. }
  325. .oXygenLogo {
  326. color:#1166DD;
  327. background-color:inherit;
  328. font-weight:bold;
  329. font-size:1.2em;
  330. }
  331. .searchExpression {
  332. color: #0050A0;
  333. /*background-color: #EBEFF8;*/
  334. font-size: 10pt;
  335. font-weight:bold;
  336. }
  337. #star ul.star {
  338. LIST-STYLE: none;
  339. MARGIN: 0;
  340. PADDING: 0;
  341. WIDTH: 85px;
  342. /* was 100 */
  343. HEIGHT: 20px;
  344. LEFT: 1px;
  345. TOP: -5px;
  346. POSITION: relative;
  347. FLOAT: right;
  348. BACKGROUND: url('../img/starsSmall.png') repeat-x 0 -25px;
  349. }
  350. #star li {
  351. PADDING: 0;
  352. MARGIN: 0;
  353. FLOAT: right;
  354. DISPLAY: block;
  355. WIDTH: 85px;
  356. /* was 100 */
  357. HEIGHT: 20px;
  358. TEXT-DECORATION: none;
  359. text-indent: -9000px;
  360. Z-INDEX: 20;
  361. POSITION: absolute;
  362. PADDING: 0;
  363. }
  364. #star li.curr {
  365. BACKGROUND: url('../img/starsSmall.png') left 25px;
  366. FONT-SIZE: 1px;
  367. }
  368. #star div.user {
  369. LEFT: 5px;
  370. POSITION: relative;
  371. FLOAT: right;
  372. FONT-SIZE: 13px;
  373. FONT-FAMILY: Arial;
  374. COLOR: #888;
  375. }
  376. #rightDiv{
  377. position: relative;
  378. width: 98%;
  379. text-align: right;
  380. }