light-grey.css 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  1. /*
  2. * CSS Document
  3. */
  4. body {
  5. font-family: Tahoma, Verdana, Arial, Helvetica;
  6. font-size: 10pt;
  7. color: black;
  8. margin: 0;
  9. /*
  10. * Remove body margin/padding
  11. */
  12. padding: 0;
  13. overflow: hidden;
  14. /*
  15. * Remove scroll bars on browser window
  16. */
  17. }
  18. body.printable-version {
  19. margin: 1.5em;
  20. overflow: auto;
  21. }
  22. /*
  23. * to prevent flicker, hide the pane's content until it's ready
  24. */
  25. .ui-layout-center, .ui-layout-north, .ui-layout-south {
  26. display: none;
  27. }
  28. .ui-layout-content {
  29. padding-left: 10px;
  30. }
  31. .raw_output {
  32. font-family: Courier-New, Courier, Arial, Helvetica;
  33. font-size: 8pt;
  34. background-color: #eeeeee;
  35. color: black;
  36. border: 1px dashed black;
  37. padding: 0.25em;
  38. margin-top: 1em;
  39. }
  40. h1 {
  41. font-family: Tahoma, Verdana, Arial, Helvetica;
  42. color: black;
  43. font-weight: bold;
  44. font-size: 12pt;
  45. }
  46. h2 {
  47. font-family: Tahoma, Verdana, Arial, Helvetica;
  48. color: black;
  49. font-weight: normal;
  50. font-size: 12pt;
  51. }
  52. h3 {
  53. font-family: Tahoma, Verdana, Arial, Helvetica;
  54. color: black;
  55. font-weight: normal;
  56. font-size: 10pt;
  57. }
  58. .hilite, .hilite a, .hilite a:visited {
  59. color: #e87c1e;
  60. text-decoration: none;
  61. }
  62. table.datatable {
  63. width: 100%;
  64. border: 0;
  65. padding: 0;
  66. }
  67. td.menucontainer {
  68. text-align: right;
  69. }
  70. table.listResults {
  71. padding: 0px;
  72. border-top: 3px solid #f1f1f1;
  73. border-left: 3px solid #f1f1f1;
  74. border-bottom: 3px solid #e6e6e1;
  75. border-right: 3px solid #e6e6e1;
  76. width: 100%;
  77. background-color: white;
  78. }
  79. table.listResults td {
  80. padding: 2px;
  81. }
  82. table.listContainer {
  83. border: 0;
  84. padding: 0;
  85. width: 100%;
  86. clear: both;
  87. }
  88. tr.containerHeader, tr.containerHeader td {
  89. background: transparent;
  90. }
  91. .wizContainer tr.even td, tr.even td {
  92. background-color: #f1f1f1;
  93. }
  94. .wizContainer tr.red_even td, tr.red_even td {
  95. background-color: #f97e75;
  96. color: white;
  97. }
  98. .wizContainer tr.red td, tr.red td {
  99. background-color: #f9a397;
  100. color: white;
  101. }
  102. .wizContainer tr.orange_even td, tr.orange_even td {
  103. background-color: #f4d07a;
  104. }
  105. .wizContainer tr.orange td, tr.orange td {
  106. background-color: #f4e96c;
  107. }
  108. .wizContainer tr.green_even td, tr.green_even td {
  109. background-color: #bee5a3;
  110. }
  111. .wizContainer tr.green td, tr.green td {
  112. background-color: #b3e5b4;
  113. }
  114. .hover a, .hover a:hover, .hover a:visited, .wizContainer tr td.hover, .wizContainer tr.even td.hover, tr td.hover, tr.even td.hover {
  115. background-color: #fdf5d0;
  116. color: black;
  117. }
  118. th {
  119. font-family: Tahoma, Verdana, Arial, Helvetica;
  120. font-size: 8pt;
  121. color: #1c94c4;
  122. height: 20px;
  123. background: #f1f1f1 bottom repeat-x;
  124. }
  125. th.header {
  126. cursor: pointer;
  127. background-repeat: no-repeat;
  128. background-position: center right;
  129. background-repeat: no-repeat;
  130. padding-right: 16px;
  131. }
  132. th.headerSortUp {
  133. background-image: url(../images/asc.gif);
  134. text-decoration: underline;
  135. cursor: pointer;
  136. }
  137. th.headerSortDown {
  138. background-image: url(../images/desc.gif);
  139. text-decoration: underline;
  140. cursor: pointer;
  141. }
  142. td {
  143. font-family: Tahoma, Verdana, Arial, Helvetica;
  144. font-size: 12px;
  145. color: #696969;
  146. nobackground-color: white;
  147. padding: 0px;
  148. }
  149. tr.clicked td {
  150. font-family: Tahoma, Verdana, Arial, Helvetica;
  151. font-size: smaller;
  152. background-color: #ffcfe8;
  153. }
  154. td.label {
  155. vertical-align: top;
  156. }
  157. td.label span {
  158. font-family: Tahoma, Verdana, Arial, Helvetica;
  159. font-size: 12px;
  160. color: black;
  161. padding: 5px;
  162. padding-right: 10px;
  163. font-weight: bold;
  164. vertical-align: top;
  165. text-align: right;
  166. display: block;
  167. }
  168. fieldset td.label span {
  169. padding: 3px;
  170. padding-right: 10px;
  171. }
  172. fieldset {
  173. margin-top: 3px;
  174. -moz-border-radius: 6px;
  175. -webkit-border-radius: 6px;
  176. border-radius: 6px;
  177. border-style: solid;
  178. border-color: #dddddd;
  179. }
  180. legend {
  181. font-family: Tahoma, Verdana, Arial, Helvetica;
  182. font-size: 12px;
  183. padding: 8px;
  184. color: white;
  185. background-color: #1c94c4;
  186. font-weight: bold;
  187. -moz-border-radius: 6px;
  188. -webkit-border-radius: 6px;
  189. border-radius: 6px;
  190. }
  191. legend.transparent {
  192. background: transparent;
  193. color: #333333;
  194. font-size: 1em;
  195. font-weight: normal;
  196. padding: 0;
  197. }
  198. .ui-widget-content td legend a, .ui-widget-content td legend a:hover, .ui-widget-content td legend a:visited {
  199. color: white;
  200. }
  201. .ui-widget-content td a, p a, p a:visited, td a, td a:visited {
  202. text-decoration: none;
  203. color: #1c94c4;
  204. padding-left: 14px;
  205. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  206. }
  207. p a:hover, td a:hover {
  208. text-decoration: underline;
  209. color: #e87c1e;
  210. padding-left: 14px;
  211. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  212. }
  213. .SearchDrawer a.no-arrow, .SearchDrawer a.no-arrow:visited, td a.no-arrow, td a.no-arrow:visited {
  214. text-decoration: none;
  215. color: black;
  216. padding-left: 0px;
  217. background: inherit;
  218. }
  219. td a.no-arrow:hover {
  220. text-decoration: underline;
  221. color: #d81515;
  222. padding-left: 0px;
  223. background: inherit;
  224. }
  225. td a.mailto, td a.mailto:visited {
  226. text-decoration: none;
  227. color: black;
  228. padding-left: 20px;
  229. background: url(../images/mail.png) no-repeat left;
  230. }
  231. td a.mailto:hover {
  232. text-decoration: underline;
  233. color: #e87c1e;
  234. padding-left: 20px;
  235. background: url(../images/mail.png) no-repeat left;
  236. }
  237. a.small_action {
  238. font-family: Tahoma, Verdana, Arial, Helvetica;
  239. font-size: 8pt;
  240. color: black;
  241. text-decoration: none;
  242. }
  243. .display_block {
  244. padding: 0.25em;
  245. }
  246. .actions_details {
  247. float: right;
  248. margin-top: 10px;
  249. margin-right: 10px;
  250. padding-left: 5px;
  251. padding-top: 2px;
  252. padding-bottom: 2px;
  253. background: #e87c1e url(../images/actions_left.png) no-repeat left;
  254. }
  255. .actions_details span {
  256. background: url(../images/actions_right.png) no-repeat right;
  257. color: white;
  258. font-weight: bold;
  259. padding-top: 2px;
  260. padding-bottom: 2px;
  261. padding-right: 12px;
  262. }
  263. .actions_details a {
  264. text-decoration: none;
  265. }
  266. .loading {
  267. noborder: 1px dashed #cccccc;
  268. background: #b9c1c8;
  269. padding: 0.25em;
  270. }
  271. input.textSearch {
  272. border: 1px solid black;
  273. font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
  274. font-size: 12px;
  275. color: black;
  276. }
  277. .ac_input {
  278. border: 1px solid #7f9db9;
  279. background: white url(../images/ac-background.gif) no-repeat right;
  280. }
  281. /*
  282. * By Rom
  283. */
  284. .csvimport_createobj {
  285. color: #aa0000;
  286. background-color: #eeeeee;
  287. }
  288. .csvimport_error {
  289. font-weight: bold;
  290. color: red;
  291. background-color: #eeeeee;
  292. }
  293. .csvimport_warning {
  294. color: #cc8888;
  295. background-color: #eeeeee;
  296. }
  297. .csvimport_ok {
  298. color: black;
  299. background-color: #bbffbb;
  300. }
  301. .csvimport_reconkey {
  302. font-style: italic;
  303. color: #888888;
  304. background-color: white;
  305. }
  306. .csvimport_extreconkey {
  307. color: #888888;
  308. background-color: white;
  309. }
  310. #accordion h3 {
  311. padding: 10px;
  312. }
  313. .ui-accordion-content ul {
  314. list-style: none;
  315. list-style-image: url(data:0);
  316. padding-left: 16px;
  317. margin-top: 8px;
  318. }
  319. .ui-accordion-content li.submenu {
  320. margin-top: 8px;
  321. }
  322. .ui-accordion-content ul ul {
  323. padding: 8px 0px 8px 8px;
  324. list-style: none;
  325. list-style-image: url(data:0);
  326. border: 0;
  327. }
  328. .nothing {
  329. noborder-top: 1px solid #8b8b8b;
  330. padding: 4px 0px 0px 16px;
  331. font-size: 8pt;
  332. background: url(../images/green-square.gif) no-repeat bottom left;
  333. color: #83b217;
  334. font-weight: bold;
  335. text-decoration: none;
  336. }
  337. div.ui-accordion-content {
  338. padding-top: 10px;
  339. padding-left: 10px;
  340. }
  341. .ui-accordion-content a, ui-accordion-content a:visited {
  342. color: #1c94c4;
  343. text-decoration: none;
  344. }
  345. .ui-accordion-content a:hover {
  346. color: #e87c1e;
  347. text-decoration: none;
  348. }
  349. .ui-accordion-content ul {
  350. padding-left: 0;
  351. margin-top: 0;
  352. }
  353. .ui-accordion-content li {
  354. color: #555555;
  355. text-decoration: none;
  356. margin: 0;
  357. padding: 0px 0pt 0px 16px;
  358. font-size: 9pt;
  359. background: url(../images/mini-arrow-orange.gif) no-repeat top left;
  360. font-weight: normal;
  361. border: 0;
  362. }
  363. a.CollapsibleLabel, td a.CollapsibleLabel {
  364. margin: 0;
  365. padding: 0px 0pt 0px 16px;
  366. font-size: 8pt;
  367. text-decoration: none;
  368. color: #555555;
  369. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  370. }
  371. /*
  372. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  373. */
  374. a.CollapsibleLabel.open, td a.CollapsibleLabel.open {
  375. margin: 0;
  376. padding: 0px 0pt 0px 16px;
  377. font-size: 8pt;
  378. text-decoration: none;
  379. color: #e87c1e;
  380. background: url(../images/mini-arrow-orange-open.gif) no-repeat left;
  381. }
  382. .page_header {
  383. background-color: #f1f1f1;
  384. padding: 5px;
  385. }
  386. /*
  387. * move up a header immediately following a display block (i.e. "actions" menu)
  388. */
  389. .display_block + .page_header {
  390. margin-top: -8px;
  391. }
  392. .notreeview li {
  393. background: url(../images/tv-item.gif) 0 0 no-repeat;
  394. }
  395. .notreeview .collapsable {
  396. background-image: url(../images/tv-collapsable.gif);
  397. }
  398. .notreeview .expandable {
  399. background-image: url(../images/tv-expandable.gif);
  400. }
  401. .notreeview .last {
  402. background-image: url(../images/tv-item-last.gif);
  403. }
  404. .notreeview .lastCollapsable {
  405. background-image: url(../images/tv-collapsable-last.gif);
  406. }
  407. .notreeview .lastExpandable {
  408. background-image: url(../images/tv-expandable-last.gif);
  409. }
  410. #OrganizationSelection {
  411. padding: 5px 0px 16px 20px;
  412. }
  413. /*
  414. * popup menus
  415. */
  416. div.itop_popup {
  417. margin: 0;
  418. padding: 0;
  419. float: right;
  420. }
  421. div.itop_popup > ul > li {
  422. list-style: none;
  423. cursor: pointer;
  424. }
  425. div.actions_menu > ul {
  426. height: 19px;
  427. line-height: 17px;
  428. vertical-align: middle;
  429. display: block;
  430. nowidth: 70px;
  431. /*
  432. * Nasty work-around for IE... en attendant mieux
  433. */
  434. padding-left: 5px;
  435. background: #e87c1e url(../images/actions_left.png) no-repeat top left;
  436. cursor: pointer;
  437. margin: 0;
  438. }
  439. div.actions_menu > ul > li {
  440. float: left;
  441. list-style: none;
  442. font-size: 11px;
  443. font-family: Tahoma, sans-serif;
  444. height: 17px;
  445. padding-right: 16px;
  446. padding-left: 4px;
  447. background: url(../images/actions_right.png) no-repeat top right transparent;
  448. font-weight: bold;
  449. color: white;
  450. vertical-align: middle;
  451. margin: 0;
  452. }
  453. #logOffBtn > ul > li {
  454. list-style: none;
  455. vertical-align: middle;
  456. margin: 0;
  457. padding-left: 10px;
  458. padding-right: 10px;
  459. cursor: pointer;
  460. }
  461. #logOffBtn > ul {
  462. list-style: none;
  463. vertical-align: middle;
  464. margin: 0;
  465. padding: 0;
  466. height: 25px;
  467. }
  468. #logOffBtn li a, .itop_popup li a {
  469. display: block;
  470. padding: 5px 12px;
  471. text-decoration: none;
  472. nowidth: 70px;
  473. color: black;
  474. font-weight: bold;
  475. white-space: nowrap;
  476. background: white;
  477. }
  478. #logOffBtn li span {
  479. display: block;
  480. padding: 5px 12px;
  481. text-decoration: none;
  482. nowidth: 70px;
  483. color: black;
  484. white-space: nowrap;
  485. background: white;
  486. }
  487. .itop_popup ul {
  488. padding-left: 0;
  489. }
  490. .menucontainer div.toolkit_menu {
  491. margin-left: 10px;
  492. }
  493. #logOffBtn li a:hover, .itop_popup li a:hover {
  494. background: #1a4473;
  495. }
  496. #logOffBtn ul > li > ul, .itop_popup ul > li > ul {
  497. border: 1px solid black;
  498. background: white;
  499. }
  500. #logOffBtn li > ul, .itop_popup li > ul {
  501. margin: 0;
  502. padding: 0;
  503. position: absolute;
  504. display: none;
  505. border-top: 1px solid white;
  506. z-index: 999;
  507. }
  508. #logOffBtn li ul li, .itop_popup li ul li {
  509. float: none;
  510. display: inline;
  511. }
  512. #logOffBtn li ul li a, .itop_popup li ul li a {
  513. width: auto;
  514. text-align: left;
  515. }
  516. #logOffBtn li ul li a:hover, .itop_popup li ul li a:hover {
  517. background: #e87c1e;
  518. color: white;
  519. font-weight: bold;
  520. }
  521. .itop_popup > ul {
  522. margin: 0;
  523. }
  524. hr.menu-separator {
  525. border: none 0;
  526. border-top: 1px solid #cccccc;
  527. color: #cccccc;
  528. background-color: transparent;
  529. height: 1px;
  530. margin: 3px;
  531. cursor: default;
  532. }
  533. /*
  534. * **********************************
  535. */
  536. .wizHeader {
  537. background: #1c94c4;
  538. padding: 15px;
  539. }
  540. .wizContainer {
  541. border: 5px solid #1c94c4;
  542. background: #d6e8ef;
  543. padding: 5px;
  544. }
  545. .wizContainer table tr td {
  546. background: transparent;
  547. }
  548. .alignRight {
  549. text-align: right;
  550. padding: 3px;
  551. }
  552. .alignLeft {
  553. text-align: left;
  554. padding: 3px;
  555. }
  556. .red {
  557. background-color: #ff6000;
  558. color: black;
  559. }
  560. th.red {
  561. background: url(../images/red-header.gif) bottom left repeat-x;
  562. color: black;
  563. }
  564. .green {
  565. background-color: #00cc00;
  566. color: black;
  567. }
  568. th.green {
  569. background: url(../images/green-header.gif) bottom left repeat-x;
  570. color: black;
  571. }
  572. .orange {
  573. background-color: #ffde00;
  574. color: black;
  575. }
  576. th.orange {
  577. background: url(../images/orange-header.gif) bottom left repeat-x;
  578. color: black;
  579. }
  580. /*
  581. * For Date Picker: Creates a little calendar icon
  582. * * instead of a text link for "Choose date"
  583. */
  584. a.dp-choose-date, a.dp-choose-date:hover, a.dp-choose-date:visited, td a.dp-choose-date, td a.dp-choose-date:hover, td a.dp-choose-date:visited {
  585. float: left;
  586. width: 16px;
  587. height: 16px;
  588. padding: 0;
  589. margin: 5px 3px 0;
  590. display: block;
  591. text-indent: -2000px;
  592. overflow: hidden;
  593. background: url(../images/calendar.png) no-repeat;
  594. }
  595. a.dp-choose-date.dp-disabled, td a.dp-choose-date.dp-disabled {
  596. background-position: 0 -20px;
  597. cursor: default;
  598. }
  599. /*
  600. * For Date Picker: makes the input field shorter once the date picker code
  601. * * has run (to allow space for the calendar icon)
  602. */
  603. input.dp-applied {
  604. width: 140px;
  605. float: left;
  606. }
  607. /*
  608. * For search forms
  609. */
  610. .SearchDrawer {
  611. border-top: 5px solid #1c94c4;
  612. border-left: 5px solid #1c94c4;
  613. border-right: 5px solid #1c94c4;
  614. border-bottom: 0;
  615. background: #d6e8ef;
  616. color: black;
  617. padding: 10px;
  618. margin: 0;
  619. font-size: 12px;
  620. }
  621. .SearchDrawer label {
  622. background: #d6e8ef;
  623. color: black;
  624. text-align: right;
  625. }
  626. .SearchDrawer h1 {
  627. color: black;
  628. }
  629. .DrawerClosed {
  630. display: none;
  631. }
  632. .DrawerHandle {
  633. margin: 0;
  634. padding: 5px;
  635. background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
  636. color: white;
  637. cursor: pointer;
  638. text-align: center;
  639. /*
  640. * center the block
  641. */
  642. width: 100px;
  643. margin-left: auto;
  644. margin-right: auto;
  645. margin-top: 0;
  646. margin-bottom: 0;
  647. display: block;
  648. font-size: 12px;
  649. }
  650. div.HRDrawer {
  651. height: 5px;
  652. width: 100%;
  653. margin: 0;
  654. background-color: #1c94c4;
  655. margin: 0;
  656. padding: 0;
  657. border: 0;
  658. display: block;
  659. }
  660. .mini_tabs a {
  661. text-decoration: none;
  662. font-weight: bold;
  663. color: #cccccc;
  664. background-color: #333333;
  665. padding-left: 1em;
  666. padding-right: 1em;
  667. padding-bottom: 0.25em;
  668. }
  669. .mini_tabs a.selected {
  670. color: white;
  671. background-color: #1c94c4;
  672. padding-top: 0.25em;
  673. }
  674. .mini_tabs ul {
  675. margin: -10px;
  676. }
  677. .mini_tabs ul li {
  678. float: right;
  679. list-style: none;
  680. nopadding-left: 1em;
  681. nopadding-right: 1em;
  682. margin-top: 0;
  683. }
  684. .mandatory {
  685. border: 1px solid red;
  686. }
  687. /*
  688. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  689. */
  690. .wizContainer table.listResults tr td.truncated, .wizContainer table.listResults tr.odd td.truncated, table.listResults tr td.truncated, table.listResults tr.odd td.truncated {
  691. background: url(../images/truncated.png) bottom repeat-x;
  692. }
  693. /*
  694. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  695. */
  696. .wizContainer table.listResults tr.even td.truncated, table.listResults tr.even td.truncated {
  697. background: #f9f9f1 url(../images/truncated.png) bottom repeat-x;
  698. }
  699. /*
  700. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  701. */
  702. , .wizContainer table.listResults tr.even td.hover.truncated, table.listResults tr.even td.hover.truncated {
  703. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  704. }
  705. /*
  706. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  707. */
  708. .wizContainer table.listResults tr td.hover.truncated, .wizContainer table.listResults tr.odd td.hover.truncated, table.listResults tr td.hover.truncated, table.listResults tr.odd td.hover.truncated {
  709. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  710. }
  711. table.listResults.truncated {
  712. border-bottom: 0;
  713. padding-bottom: 0;
  714. }
  715. tr.csv_row0 td {
  716. padding-top: 5px;
  717. padding-bottom: 5px;
  718. padding-left: 10px;
  719. padding-right: 10px;
  720. background: white;
  721. border-left: black 1px solid;
  722. }
  723. tr.csv_row1 td {
  724. padding-top: 5px;
  725. padding-bottom: 5px;
  726. padding-left: 10px;
  727. padding-right: 10px;
  728. background: #f9f9f1;
  729. border-left: black 1px solid;
  730. }
  731. tr.csv_row0 th, tr.csv_row1 th {
  732. padding-top: 5px;
  733. padding-bottom: 5px;
  734. padding-left: 10px;
  735. padding-right: 10px;
  736. border-left: black 1px solid;
  737. }
  738. td.cell_modified {
  739. font-weight: bold;
  740. color: black;
  741. }
  742. td.cell_error {
  743. font-weight: bold;
  744. color: #d81515;
  745. }
  746. table.transparent, table.transparent td {
  747. background: transparent;
  748. }
  749. p.page-header {
  750. color: #1c94c4;
  751. font-weight: bold;
  752. font-size: 12pt;
  753. font-family: Verdana, Arial, Helvetica, Sans-Serif;
  754. }
  755. td.dashboard {
  756. vertical-align: top;
  757. border: 1px solid #cccccc;
  758. padding: 0.5em;
  759. width: 50%;
  760. }
  761. .white {
  762. background-color: white;
  763. }
  764. /*
  765. * ** New Lacanau layout **
  766. */
  767. .ui-layout-pane {
  768. /*
  769. * all 'panes'
  770. */
  771. overflow: auto;
  772. }
  773. .ui-layout-resizer {
  774. /*
  775. * all 'resizer-bars'
  776. */
  777. background: #f1f1f1;
  778. }
  779. .ui-layout-toggler {
  780. /*
  781. * all 'toggler-buttons'
  782. */
  783. background: #aaaaaa;
  784. }
  785. div#top-left {
  786. width: 28px;
  787. height: 70px;
  788. background: #f1f1f1;
  789. float: left;
  790. }
  791. div#header-logo {
  792. width: 100%;
  793. height: 70px;
  794. background: #f1f1f1;
  795. }
  796. .ui-layout-pane-west {
  797. background: #f1f1f1;
  798. }
  799. div#right {
  800. min-width: 260px;
  801. }
  802. div#menu {
  803. width: 100%;
  804. overflow: auto;
  805. }
  806. .header-menu {
  807. padding-left: 24px;
  808. padding-right: 8px;
  809. padding-bottom: 24px;
  810. background: transparent;
  811. }
  812. div#inner_menu {
  813. padding-left: 24px;
  814. padding-right: 8px;
  815. background: transparent;
  816. }
  817. div#logo {
  818. height: 70px;
  819. nowidth: 100%;
  820. text-align: center;
  821. }
  822. div#logo div {
  823. height: 88px;
  824. width: 244px;
  825. background: url(../images/itop-logo-2.png) left no-repeat;
  826. }
  827. #left-pane .ui-layout-north {
  828. overflow: hidden;
  829. }
  830. #top-bar {
  831. height: 55px;
  832. background: #f1f1f1;
  833. text-align: right;
  834. }
  835. #admin-banner {
  836. float: left;
  837. margin-top: 2px;
  838. padding: 8px;
  839. border: 1px solid #cc3333;
  840. background-color: #ffeeee;
  841. -moz-border-radius: 0.5em;
  842. }
  843. #global-search {
  844. height: 55px;
  845. float: right;
  846. text-align: right;
  847. overflow-y: hidden;
  848. }
  849. #global-search table, #global-search tr, #global-search tr td {
  850. padding: 0;
  851. border: 0;
  852. height: 55px;
  853. margin: 0;
  854. background: transparent;
  855. overflow-y: hidden;
  856. vertical-align: middle;
  857. }
  858. #global-search-area {
  859. line-height: 55px;
  860. }
  861. #global-search-input {
  862. vertical-align: middle;
  863. -moz-border-radius: 6px;
  864. -webkit-border-radius: 6px;
  865. border-radius: 6px;
  866. border: 1px #cccccc solid;
  867. height: 18px;
  868. width: 180px;
  869. padding: 3px;
  870. background: white;
  871. display: inline-block;
  872. }
  873. #global-search-image {
  874. vertical-align: middle;
  875. background: url(../images/search.png) center center no-repeat;
  876. display: inline-block;
  877. width: 28px;
  878. height: 30px;
  879. margin-left: -8px;
  880. cursor: pointer;
  881. }
  882. #help-link img {
  883. padding: 0;
  884. border: 0;
  885. }
  886. #help-link {
  887. padding: 0;
  888. border: 0;
  889. background: transparent;
  890. margin-left: 15px;
  891. margin-right: 10px;
  892. }
  893. div.icon {
  894. width: 20px;
  895. height: 20px;
  896. margin: 2px;
  897. float: right;
  898. }
  899. span.ui-icon {
  900. float: left;
  901. margin: 0 2px;
  902. }
  903. .ui-layout-button-pin-down {
  904. background: url(../images/splitter-bkg.png) transparent;
  905. width: 16px;
  906. background-position: -144px -144px;
  907. }
  908. .ui-layout-resizer-west-open {
  909. background-color: #f1f1f1;
  910. width: 8px;
  911. }
  912. div.footer img {
  913. border: 0;
  914. margin-bottom: 5px;
  915. margin-top: 5px;
  916. }
  917. div.footer {
  918. text-align: center;
  919. }
  920. #SearchResultsToAdd table.listResults tbody {
  921. height: 300px;
  922. overflow-y: auto;
  923. }
  924. tr.row_unchanged td {
  925. border-bottom: 1px #cccccc solid;
  926. padding: 2px;
  927. }
  928. .wizContainer table tr.row_error td {
  929. border-bottom: 1px #cccccc solid;
  930. background-color: #ffdddd;
  931. padding: 2px;
  932. }
  933. tr.row_modified td {
  934. border-bottom: 1px #cccccc solid;
  935. padding: 2px;
  936. }
  937. tr.row_added td {
  938. border-bottom: 1px #cccccc solid;
  939. padding: 2px;
  940. }
  941. a.truncated {
  942. cursor: pointer;
  943. }
  944. .org_combo {
  945. font-size: x-small;
  946. width: auto;
  947. max-width: 200px;
  948. }
  949. span.form_validation {
  950. width: 24px;
  951. text-align: center;
  952. }
  953. .notification {
  954. border: 1px solid #cc3333;
  955. background-color: #ffeeee;
  956. padding: 0.5em;
  957. margin: 0.5em;
  958. text-align: center;
  959. width: 95%;
  960. -moz-border-radius: 0.5em;
  961. }
  962. .wiki_broken_link {
  963. text-decoration: line-through;
  964. }
  965. .synoptics, .synoptics tr td {
  966. background: transparent;
  967. padding: 10px;
  968. font-size: 1em;
  969. vertical-align: middle;
  970. color: white;
  971. text-align: center;
  972. }
  973. .synoptics tr td.arrow {
  974. color: #333333;
  975. border-top: 1px dashed #333333;
  976. width: 100px;
  977. }
  978. .synoptics tr.synoptics_header td {
  979. color: black;
  980. font-size: 1em;
  981. vertical-align: middle;
  982. text-align: center;
  983. }
  984. .mono_value {
  985. display: inline-block;
  986. background-color: #33cc33;
  987. color: white;
  988. font-weight: bold;
  989. padding: 3px;
  990. padding-left: 5px;
  991. padding-right: 5px;
  992. margin-left: 3px;
  993. -moz-border-radius: 10px;
  994. -webkit-border-radius: 10px;
  995. border-radius: 10px;
  996. }
  997. .multi_values {
  998. display: inline-block;
  999. background-color: #cc3333;
  1000. color: white;
  1001. font-weight: bold;
  1002. padding: 3px;
  1003. padding-left: 5px;
  1004. padding-right: 5px;
  1005. margin-left: 3px;
  1006. -moz-border-radius: 10px;
  1007. -webkit-border-radius: 10px;
  1008. border-radius: 10px;
  1009. }
  1010. .caselog {
  1011. overflow-x: hidden;
  1012. display: block;
  1013. overflow-y: auto;
  1014. border: 1px #dddddd solid;
  1015. font-family: Tahoma, Verdana, Arial, Helvetica;
  1016. font-size: 12px;
  1017. }
  1018. .caselog_input_header {
  1019. padding-top: 3px;
  1020. padding-bottom: 3px;
  1021. border-top: 1px solid white;
  1022. background: #dddddd;
  1023. width: 100%;
  1024. }
  1025. .caselog_header {
  1026. padding: 3px;
  1027. border-top: 1px solid white;
  1028. background: #dddddd url(../images/plus.gif) left no-repeat;
  1029. padding-left: 16px;
  1030. cursor: pointer;
  1031. width: 100%;
  1032. }
  1033. .caselog_header.open {
  1034. background: #dddddd url(../images/minus.gif) left no-repeat;
  1035. }
  1036. .caselog_entry {
  1037. padding: 3px;
  1038. padding-left: 16px;
  1039. border-bottom: 1px #999999 solid;
  1040. white-space: pre-wrap;
  1041. /*
  1042. * css-3
  1043. */
  1044. white-space: -moz-pre-wrap;
  1045. /*
  1046. * Mozilla, since 1999
  1047. */
  1048. white-space: -pre-wrap;
  1049. /*
  1050. * Opera 4-6
  1051. */
  1052. white-space: -o-pre-wrap;
  1053. /*
  1054. * Opera 7
  1055. */
  1056. word-wrap: break-word;
  1057. /*
  1058. * Internet Explorer 5.5+, CSS3
  1059. */
  1060. }
  1061. table.details {
  1062. border-collapse: collapse;
  1063. noborder-bottom: 2px white solid;
  1064. nowidth: 100%;
  1065. }
  1066. table.details>tbody>tr>td {
  1067. border-bottom: 2px #dddddd solid;
  1068. padding-bottom: 5px;
  1069. padding-top: 3px;
  1070. }
  1071. fieldset table.details>tbody>tr>td {
  1072. padding-top: 3px;
  1073. background: transparent;
  1074. border: 0;
  1075. }
  1076. .ac_dlg_loading {
  1077. background: white url('../images/indicator.gif') right center no-repeat;
  1078. }
  1079. table.pagination {
  1080. display: inline-block;
  1081. }
  1082. table.pagination tr td {
  1083. padding: 3px;
  1084. }
  1085. .pagination_container {
  1086. padding-left: 3px;
  1087. }
  1088. .pager p {
  1089. margin-top: 0;
  1090. margin-bottom: 0;
  1091. }
  1092. .pager td span {
  1093. min-width: 20px;
  1094. padding-left: 2px;
  1095. padding-right: 2px;
  1096. display: inline-block;
  1097. text-align: center;
  1098. cursor: pointer;
  1099. }
  1100. .pager td span.curr_page {
  1101. color: white;
  1102. background: #999999;
  1103. -moz-border-radius: 4px;
  1104. -webkit-border-radius: 4px;
  1105. border-radius: 4px;
  1106. }
  1107. img.first, img.last, img.next, img.prev {
  1108. cursor: pointer;
  1109. }
  1110. div.actions_button {
  1111. float: right;
  1112. background: #e87c1e url("../images/actions_left.png") no-repeat scroll left top;
  1113. padding-left: 5px;
  1114. margin-top: 0;
  1115. margin-right: 10px;
  1116. height: 19px;
  1117. vertical-align: middle;
  1118. }
  1119. .actions_button a:hover, .actions_button a:visited, div.actions_button a {
  1120. background: #e87c1e url(../images/actions_bkg.png) no-repeat scroll right top;
  1121. color: white;
  1122. padding-right: 8px;
  1123. cursor: pointer;
  1124. font-family: Tahoma, sans-serif;
  1125. font-size: 11px;
  1126. font-weight: bold;
  1127. padding-left: 4px;
  1128. text-decoration: none;
  1129. height: 19px;
  1130. line-height: 17px;
  1131. display: block;
  1132. }
  1133. select#org_id {
  1134. max-width: 90%;
  1135. }
  1136. /*
  1137. * ********** Dashboards **********
  1138. */
  1139. .itop-dashboard {
  1140. background-color: white;
  1141. }
  1142. .itop-dashboard a {
  1143. cursor: not-allowed;
  1144. }
  1145. .dragHover {
  1146. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png);
  1147. }
  1148. .edit_mode .dashlet {
  1149. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png);
  1150. padding: 5px;
  1151. position: relative;
  1152. }
  1153. .edit_mode .dashlet-selected {
  1154. background: #e87c1e !important;
  1155. padding: 5px;
  1156. }
  1157. td.layout_cell {
  1158. height: 50px;
  1159. /*
  1160. * min-height does not work
  1161. */
  1162. vertical-align: top;
  1163. }
  1164. .dashlet-content {
  1165. background: white;
  1166. }
  1167. table.prop_table {
  1168. border-bottom: 2px solid #f9f9f1;
  1169. padding: 1px;
  1170. width: 100%;
  1171. }
  1172. .close-box {
  1173. margin: 5px;
  1174. width: 20px;
  1175. height: 20px;
  1176. position: absolute;
  1177. top: 0;
  1178. right: 0;
  1179. z-index: 10;
  1180. background: transparent url(../images/delete.png) no-repeat center;
  1181. }
  1182. td.prop_value {
  1183. text-align: left;
  1184. }
  1185. tr.itop-property-field-modified td {
  1186. background: #ffbbbb;
  1187. }
  1188. tr.itop-property-field-modified td.hover {
  1189. background: #ff9999;
  1190. }
  1191. td.prop_value input[type=text], td.prop_value textarea {
  1192. width: 98%;
  1193. }
  1194. td.prop_icon {
  1195. width: 20px;
  1196. }
  1197. .dashlet {
  1198. text-align: left;
  1199. }
  1200. .dashlet-inline {
  1201. display: inline-block;
  1202. }
  1203. .dashlet-badge a.actions {
  1204. background: none repeat scroll 0 0 transparent;
  1205. color: #666666;
  1206. font-size: 16px;
  1207. text-decoration: none;
  1208. }
  1209. .dashlet-content .display_block {
  1210. text-align: left;
  1211. }
  1212. .prop_apply .ui-icon-alert {
  1213. display: none;
  1214. }
  1215. .prop_apply .ui-state-error .ui-icon-alert {
  1216. display: block;
  1217. }
  1218. .ui-state-error .ui-icon-circle-check {
  1219. display: none;
  1220. }
  1221. .summary-details {
  1222. float: right;
  1223. margin-top: 5px;
  1224. }
  1225. .summary-details th {
  1226. background: none repeat scroll 0 0 #555555;
  1227. color: #eeeeee;
  1228. padding: 5px;
  1229. text-align: center;
  1230. }
  1231. .main_header {
  1232. background-color: #f1f1f1;
  1233. min-height: 60px;
  1234. width: 100%;
  1235. }
  1236. .main_header h1 {
  1237. color: #1c94c4;
  1238. line-height: 16px;
  1239. margin-bottom: 0;
  1240. margin-top: 0;
  1241. padding-bottom: 10px;
  1242. padding-top: 10px;
  1243. }
  1244. .main_header img {
  1245. margin-top: 10px;
  1246. margin-right: 10px;
  1247. float: left;
  1248. }
  1249. a.summary, a.summary:hover {
  1250. background: none repeat scroll 0 0 transparent;
  1251. color: #666666;
  1252. text-decoration: none;
  1253. padding-left: 0;
  1254. }
  1255. .summary-details td {
  1256. background: none repeat scroll 0 0 transparent;
  1257. padding: 5px;
  1258. text-align: center;
  1259. }
  1260. #DashboardMenu > ul > li {
  1261. list-style: none;
  1262. vertical-align: middle;
  1263. margin: 0;
  1264. padding: 0;
  1265. cursor: pointer;
  1266. }
  1267. #DashboardMenu > ul {
  1268. list-style: none;
  1269. vertical-align: middle;
  1270. margin: 0;
  1271. padding: 0;
  1272. height: 25px;
  1273. }
  1274. #DashboardMenu li a {
  1275. display: block;
  1276. padding: 5px 12px;
  1277. text-decoration: none;
  1278. color: black;
  1279. font-weight: bold;
  1280. text-align: left;
  1281. white-space: nowrap;
  1282. background: white;
  1283. }
  1284. #DashboardMenu li span {
  1285. display: block;
  1286. padding: 5px 12px;
  1287. text-decoration: none;
  1288. color: black;
  1289. white-space: nowrap;
  1290. background: white;
  1291. }
  1292. #DashboardMenu li {
  1293. list-style: none;
  1294. }
  1295. #DashboardMenu li a:hover {
  1296. background: #1a4473;
  1297. }
  1298. #DashboardMenu ul > li > ul {
  1299. border: 1px solid black;
  1300. background: white;
  1301. }
  1302. #DashboardMenu li > ul {
  1303. margin: 0;
  1304. padding: 0;
  1305. position: absolute;
  1306. display: none;
  1307. border-top: 1px solid white;
  1308. z-index: 999;
  1309. }
  1310. #DashboardMenu li ul li a:hover {
  1311. background: #e87c1e;
  1312. color: white;
  1313. font-weight: bold;
  1314. list-style: none;
  1315. }
  1316. .sortable_field_list {
  1317. display: inline-block;
  1318. width: 250px;
  1319. height: 150px;
  1320. border: 1px #333333 solid;
  1321. overflow: auto;
  1322. padding-left: 0;
  1323. margin: 0;
  1324. }
  1325. .sortable_field_list li {
  1326. list-style: none;
  1327. font-size: 11px;
  1328. }
  1329. .sort_order {
  1330. display: inline-block;
  1331. width: 16px;
  1332. height: 12px;
  1333. }
  1334. .sort_none {
  1335. background: url(../images/bg.gif) no-repeat center;
  1336. }
  1337. .sort_asc {
  1338. background: url(../images/desc.gif) no-repeat center;
  1339. }
  1340. .sort_desc {
  1341. background: url(../images/asc.gif) no-repeat center;
  1342. }
  1343. .sort_hidden {
  1344. display: none;
  1345. }
  1346. .sortable_field_list > li.selected {
  1347. background: #f6a828;
  1348. }
  1349. .itop-deleted-object {
  1350. text-decoration: line-through;
  1351. }
  1352. .header_message {
  1353. padding: 1em;
  1354. font-size: 10pt;
  1355. background: white;
  1356. border: 1px solid #999999;
  1357. -moz-border-radius: 4px;
  1358. -webkit-border-radius: 4px;
  1359. border-radius: 4px;
  1360. margin-bottom: 10px;
  1361. }
  1362. .header_message {
  1363. padding: 1em;
  1364. font-size: 10pt;
  1365. background: white;
  1366. border: 1px solid #999999;
  1367. -moz-border-radius: 4px;
  1368. -webkit-border-radius: 4px;
  1369. border-radius: 4px;
  1370. margin-bottom: 10px;
  1371. }
  1372. .message_info {
  1373. border: 1px solid #999933;
  1374. background: url(../images/info-mini.png) 1em 1em no-repeat #ffffcc;
  1375. padding-left: 3em;
  1376. }
  1377. .message_ok {
  1378. border: 1px solid #339933;
  1379. background: url(../images/ok.png) 1em 1em no-repeat #ccffcc;
  1380. padding-left: 3em;
  1381. }
  1382. .message_error {
  1383. border: 1px solid #993333;
  1384. background: url(../images/error.png) 1em 1em no-repeat #ffcccc;
  1385. padding-left: 3em;
  1386. }
  1387. .fg-menu a img {
  1388. border: 0;
  1389. }
  1390. div.ui-dialog-header {
  1391. padding-bottom: 10px;
  1392. padding-top: 7px;
  1393. }
  1394. .form_field_error {
  1395. border: 1px solid #993333;
  1396. background: #ffcccc;
  1397. }
  1398. .graph_config, .simple-graph {
  1399. background: white;
  1400. }
  1401. .graph_config {
  1402. padding: 0.25em;
  1403. }
  1404. .graph_config button.ui-widget {
  1405. font-size: 12px;
  1406. }
  1407. .arrow:after, .ui-tooltip {
  1408. background: #f1f1f1;
  1409. border: 1px solid #555555;
  1410. }
  1411. .ui-tooltip {
  1412. padding: 10px 10px;
  1413. box-shadow: 0 0 7px black;
  1414. }
  1415. .ui-tooltip .arrow {
  1416. width: 70px;
  1417. height: 16px;
  1418. overflow: hidden;
  1419. position: absolute;
  1420. left: 50%;
  1421. margin-left: -35px;
  1422. bottom: -16px;
  1423. }
  1424. .ui-tooltip .arrow.top {
  1425. top: -16px;
  1426. bottom: auto;
  1427. }
  1428. .ui-tooltip .arrow.left {
  1429. left: 20%;
  1430. }
  1431. .ui-tooltip .arrow:after {
  1432. content: "";
  1433. position: absolute;
  1434. left: 20px;
  1435. top: -20px;
  1436. width: 25px;
  1437. height: 25px;
  1438. box-shadow: 6px 5px 9px -9px black;
  1439. -webkit-transform: rotate(45deg);
  1440. -ms-transform: rotate(45deg);
  1441. transform: rotate(45deg);
  1442. }
  1443. .ui-tooltip .arrow.top:after {
  1444. bottom: -20px;
  1445. top: auto;
  1446. }
  1447. table.export_parameters td {
  1448. padding-right: 2em;
  1449. }
  1450. .table_preview > table {
  1451. border-collapse: collapse;
  1452. max-height: 150px;
  1453. overflow: auto;
  1454. display: block;
  1455. }
  1456. .table_preview > table > tbody > tr > td, .table_preview > table > thead > tr > th {
  1457. border: 1px #555555 solid;
  1458. min-height: 1em;
  1459. padding-left: 0.25em;
  1460. padding-right: 0.25em;
  1461. font-size: 10pt;
  1462. }
  1463. .table_preview > table > tbody > tr > td {
  1464. vertical-align: top;
  1465. }
  1466. .table_preview .drag-handle {
  1467. cursor: move;
  1468. }
  1469. .table_preview div.text-preview {
  1470. white-space: pre-wrap;
  1471. }
  1472. .graph_zoom {
  1473. display: inline-block;
  1474. float: right;
  1475. margin-right: 2em;
  1476. }
  1477. .graph_zoom_slider {
  1478. display: inline-block;
  1479. width: 10em;
  1480. }
  1481. .graph_zoom_minus, .graph_zoom_plus {
  1482. display: inline-block;
  1483. margin-left: 1em;
  1484. margin-right: 1em;
  1485. }
  1486. div.explain-printable {
  1487. border: 5px solid #1c94c4;
  1488. background: #d6e8ef;
  1489. color: black;
  1490. padding: 10px;
  1491. margin: 0;
  1492. font-size: 12px;
  1493. }
  1494. .hideable-chapter {
  1495. cursor: pointer;
  1496. }
  1497. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span {
  1498. padding-left: 20px;
  1499. background: url(../images/eye-open-555.png) 2px center no-repeat;
  1500. }
  1501. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span {
  1502. text-decoration: line-through;
  1503. background: url(../images/eye-closed-555.png) 2px center no-repeat;
  1504. }
  1505. .printable-version legend {
  1506. padding-left: 26px;
  1507. background: #1c94c4 url(../images/eye-open-fff.png) 8px center no-repeat;
  1508. }
  1509. .printable-version .strikethrough legend {
  1510. background: #1c94c4 url(../images/eye-closed-fff.png) 8px center no-repeat;
  1511. }
  1512. .printable-version fieldset.strikethrough span {
  1513. display: none;
  1514. }
  1515. h2.printable-tab-title {
  1516. border-bottom: 2px solid;
  1517. }
  1518. .strikethrough {
  1519. text-decoration: line-through;
  1520. }
  1521. select.multiselect {
  1522. max-width: 150px;
  1523. }
  1524. span.refresh-button {
  1525. display: inline-block;
  1526. width: 21px;
  1527. height: 18px;
  1528. cursor: pointer;
  1529. background: transparent url(../images/refresh-fff.png) left center no-repeat;
  1530. }