light-grey.css 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061
  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: 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: 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: 0;
  458. cursor: pointer;
  459. }
  460. #logOffBtn > ul {
  461. list-style: none;
  462. vertical-align: middle;
  463. margin: 0;
  464. padding: 0;
  465. height: 25px;
  466. noline-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. }
  625. .SearchDrawer h1 {
  626. color: black;
  627. }
  628. .DrawerClosed {
  629. display: none;
  630. }
  631. .DrawerHandle {
  632. margin: 0;
  633. padding: 5px;
  634. background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
  635. color: white;
  636. cursor: pointer;
  637. text-align: center;
  638. /*
  639. * center the block
  640. */
  641. width: 100px;
  642. margin-left: auto;
  643. margin-right: auto;
  644. margin-top: 0;
  645. margin-bottom: 0;
  646. display: block;
  647. font-size: 12px;
  648. }
  649. div.HRDrawer {
  650. height: 5px;
  651. width: 100%;
  652. margin: 0;
  653. background-color: #1c94c4;
  654. margin: 0;
  655. padding: 0;
  656. border: 0;
  657. display: block;
  658. }
  659. .mini_tabs a {
  660. text-decoration: none;
  661. font-weight: bold;
  662. color: #cccccc;
  663. background-color: #333333;
  664. padding-left: 1em;
  665. padding-right: 1em;
  666. padding-bottom: 0.25em;
  667. }
  668. .mini_tabs a.selected {
  669. color: white;
  670. background-color: #1c94c4;
  671. padding-top: 0.25em;
  672. }
  673. .mini_tabs ul {
  674. margin: -10px;
  675. }
  676. .mini_tabs ul li {
  677. float: right;
  678. list-style: none;
  679. nopadding-left: 1em;
  680. nopadding-right: 1em;
  681. margin-top: 0;
  682. }
  683. .mandatory {
  684. border: 1px solid red;
  685. }
  686. /*
  687. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  688. */
  689. .wizContainer table.listResults tr td.truncated, .wizContainer table.listResults tr.odd td.truncated, table.listResults tr td.truncated, table.listResults tr.odd td.truncated {
  690. background: url(../images/truncated.png) bottom repeat-x;
  691. }
  692. /*
  693. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  694. */
  695. .wizContainer table.listResults tr.even td.truncated, table.listResults tr.even td.truncated {
  696. background: #f9f9f1 url(../images/truncated.png) bottom repeat-x;
  697. }
  698. /*
  699. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  700. */
  701. , .wizContainer table.listResults tr.even td.hover.truncated, table.listResults tr.even td.hover.truncated {
  702. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  703. }
  704. /*
  705. * Beware: IE6 does not support multiple selector with multiple classes, only the last class is used
  706. */
  707. .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 {
  708. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  709. }
  710. table.listResults.truncated {
  711. border-bottom: 0;
  712. padding-bottom: 0;
  713. }
  714. tr.csv_row0 td {
  715. padding-top: 5px;
  716. padding-bottom: 5px;
  717. padding-left: 10px;
  718. padding-right: 10px;
  719. background: white;
  720. border-left: black 1px solid;
  721. }
  722. tr.csv_row1 td {
  723. padding-top: 5px;
  724. padding-bottom: 5px;
  725. padding-left: 10px;
  726. padding-right: 10px;
  727. background: #f9f9f1;
  728. border-left: black 1px solid;
  729. }
  730. tr.csv_row0 th, tr.csv_row1 th {
  731. padding-top: 5px;
  732. padding-bottom: 5px;
  733. padding-left: 10px;
  734. padding-right: 10px;
  735. border-left: black 1px solid;
  736. }
  737. td.cell_modified {
  738. font-weight: bold;
  739. color: black;
  740. }
  741. td.cell_error {
  742. font-weight: bold;
  743. color: #d81515;
  744. }
  745. table.transparent, table.transparent td {
  746. background: transparent;
  747. }
  748. p.page-header {
  749. color: #1c94c4;
  750. font-weight: bold;
  751. font-size: 12pt;
  752. font-family: Verdana, Arial, Helvetica, Sans-Serif;
  753. }
  754. td.dashboard {
  755. vertical-align: top;
  756. border: 1px solid #cccccc;
  757. padding: 0.5em;
  758. width: 50%;
  759. }
  760. .white {
  761. background-color: white;
  762. }
  763. /*
  764. * ** New Lacanau layout **
  765. */
  766. .ui-layout-pane {
  767. /*
  768. * all 'panes'
  769. */
  770. overflow: auto;
  771. }
  772. .ui-layout-resizer {
  773. /*
  774. * all 'resizer-bars'
  775. */
  776. background: #f1f1f1;
  777. }
  778. .ui-layout-toggler {
  779. /*
  780. * all 'toggler-buttons'
  781. */
  782. background: #aaaaaa;
  783. }
  784. div#top-left {
  785. width: 28px;
  786. height: 70px;
  787. background: #f1f1f1;
  788. float: left;
  789. }
  790. div#header-logo {
  791. width: 100%;
  792. height: 70px;
  793. background: #f1f1f1;
  794. }
  795. .ui-layout-pane-west {
  796. background: #f1f1f1;
  797. }
  798. div#right {
  799. min-width: 260px;
  800. }
  801. div#menu {
  802. width: 100%;
  803. overflow: auto;
  804. }
  805. .header-menu {
  806. padding-left: 24px;
  807. padding-right: 8px;
  808. padding-bottom: 24px;
  809. background: transparent;
  810. }
  811. div#inner_menu {
  812. padding-left: 24px;
  813. padding-right: 8px;
  814. background: transparent;
  815. }
  816. div#logo {
  817. height: 70px;
  818. nowidth: 100%;
  819. text-align: center;
  820. }
  821. div#logo div {
  822. height: 88px;
  823. width: 244px;
  824. background: url(../images/itop-logo-2.png) left no-repeat;
  825. }
  826. #left-pane .ui-layout-north {
  827. overflow: hidden;
  828. }
  829. #top-bar {
  830. height: 55px;
  831. background: #f1f1f1;
  832. text-align: right;
  833. }
  834. #admin-banner {
  835. float: left;
  836. margin-top: 2px;
  837. padding: 8px;
  838. border: 1px solid #cc3333;
  839. background-color: #ffeeee;
  840. -moz-border-radius: 0.5em;
  841. }
  842. #global-search {
  843. height: 55px;
  844. float: right;
  845. background: url(../images/banner-search.png) no-repeat;
  846. nopadding-top: 15px;
  847. text-align: right;
  848. overflow-y: hidden;
  849. }
  850. #global-search > form div {
  851. padding-left: 4px;
  852. }
  853. #global-search table, #global-search tr, #global-search tr td {
  854. padding: 0;
  855. border: 0;
  856. height: 55px;
  857. margin: 0;
  858. background: transparent;
  859. overflow-y: hidden;
  860. vertical-align: middle;
  861. }
  862. #global-search > form input[type="text"] {
  863. border: 0;
  864. height: 18px;
  865. width: 180px;
  866. padding-top: 4;
  867. background: transparent;
  868. }
  869. #global-search > form tr td#g-search-input {
  870. padding-top: 3px;
  871. padding-left: 3px;
  872. background: transparent;
  873. }
  874. div.icon {
  875. width: 20px;
  876. height: 20px;
  877. margin: 2px;
  878. float: right;
  879. }
  880. span.ui-icon {
  881. float: left;
  882. margin: 0 2px;
  883. }
  884. .ui-layout-button-pin-down {
  885. background: url(../images/splitter-bkg.png) transparent;
  886. width: 16px;
  887. background-position: -144px -144px;
  888. }
  889. .ui-layout-resizer-west-open {
  890. background-color: #f1f1f1;
  891. width: 8px;
  892. }
  893. div.footer img {
  894. border: 0;
  895. margin-bottom: 5px;
  896. margin-top: 5px;
  897. }
  898. div.footer {
  899. text-align: center;
  900. }
  901. #SearchResultsToAdd table.listResults tbody {
  902. height: 300px;
  903. overflow-y: auto;
  904. }
  905. tr.row_unchanged td {
  906. border-bottom: 1px #cccccc solid;
  907. padding: 2px;
  908. }
  909. .wizContainer table tr.row_error td {
  910. border-bottom: 1px #cccccc solid;
  911. background-color: #ffdddd;
  912. padding: 2px;
  913. }
  914. tr.row_modified td {
  915. border-bottom: 1px #cccccc solid;
  916. padding: 2px;
  917. }
  918. tr.row_added td {
  919. border-bottom: 1px #cccccc solid;
  920. padding: 2px;
  921. }
  922. a.truncated {
  923. cursor: pointer;
  924. }
  925. .org_combo {
  926. font-size: x-small;
  927. width: auto;
  928. max-width: 200px;
  929. }
  930. span.form_validation {
  931. width: 24px;
  932. text-align: center;
  933. }
  934. .notification {
  935. border: 1px solid #cc3333;
  936. background-color: #ffeeee;
  937. padding: 0.5em;
  938. margin: 0.5em;
  939. text-align: center;
  940. width: 95%;
  941. -moz-border-radius: 0.5em;
  942. }
  943. .wiki_broken_link {
  944. text-decoration: line-through;
  945. }
  946. .synoptics, .synoptics tr td {
  947. background: transparent;
  948. padding: 10px;
  949. font-size: 1em;
  950. vertical-align: middle;
  951. color: white;
  952. text-align: center;
  953. }
  954. .synoptics tr td.arrow {
  955. color: #333333;
  956. border-top: 1px dashed #333333;
  957. width: 100px;
  958. }
  959. .synoptics tr.synoptics_header td {
  960. color: black;
  961. font-size: 1em;
  962. vertical-align: middle;
  963. text-align: center;
  964. }
  965. .mono_value {
  966. display: inline-block;
  967. background-color: #33cc33;
  968. color: white;
  969. font-weight: bold;
  970. padding: 3px;
  971. padding-left: 5px;
  972. padding-right: 5px;
  973. margin-left: 3px;
  974. -moz-border-radius: 10px;
  975. -webkit-border-radius: 10px;
  976. border-radius: 10px;
  977. }
  978. .multi_values {
  979. display: inline-block;
  980. background-color: #cc3333;
  981. color: white;
  982. font-weight: bold;
  983. padding: 3px;
  984. padding-left: 5px;
  985. padding-right: 5px;
  986. margin-left: 3px;
  987. -moz-border-radius: 10px;
  988. -webkit-border-radius: 10px;
  989. border-radius: 10px;
  990. }
  991. .caselog {
  992. overflow-x: hidden;
  993. display: block;
  994. overflow-y: auto;
  995. border: 1px #dddddd solid;
  996. font-family: Tahoma, Verdana, Arial, Helvetica;
  997. font-size: 12px;
  998. }
  999. .caselog_input_header {
  1000. padding-top: 3px;
  1001. padding-bottom: 3px;
  1002. border-top: 1px solid white;
  1003. background: #dddddd;
  1004. width: 100%;
  1005. }
  1006. .caselog_header {
  1007. padding: 3px;
  1008. border-top: 1px solid white;
  1009. background: #dddddd url(../images/plus.gif) left no-repeat;
  1010. padding-left: 16px;
  1011. cursor: pointer;
  1012. width: 100%;
  1013. }
  1014. .caselog_header.open {
  1015. background: #dddddd url(../images/minus.gif) left no-repeat;
  1016. }
  1017. .caselog_entry {
  1018. padding: 3px;
  1019. padding-left: 16px;
  1020. border-bottom: 1px #999999 solid;
  1021. white-space: pre-wrap;
  1022. /*
  1023. * css-3
  1024. */
  1025. white-space: -moz-pre-wrap;
  1026. /*
  1027. * Mozilla, since 1999
  1028. */
  1029. white-space: -pre-wrap;
  1030. /*
  1031. * Opera 4-6
  1032. */
  1033. white-space: -o-pre-wrap;
  1034. /*
  1035. * Opera 7
  1036. */
  1037. word-wrap: break-word;
  1038. /*
  1039. * Internet Explorer 5.5+, CSS3
  1040. */
  1041. }
  1042. table.details {
  1043. border-collapse: collapse;
  1044. noborder-bottom: 2px white solid;
  1045. width: 100%;
  1046. }
  1047. table.details>tbody>tr>td {
  1048. border-bottom: 2px #dddddd solid;
  1049. padding-bottom: 5px;
  1050. padding-top: 3px;
  1051. }
  1052. fieldset table.details>tbody>tr>td {
  1053. padding-top: 3px;
  1054. background: transparent;
  1055. border: 0;
  1056. }
  1057. .ac_dlg_loading {
  1058. background: white url('../images/indicator.gif') right center no-repeat;
  1059. }
  1060. table.pagination {
  1061. display: inline-block;
  1062. }
  1063. table.pagination tr td {
  1064. padding: 3px;
  1065. }
  1066. .pagination_container {
  1067. padding-left: 3px;
  1068. }
  1069. .pager p {
  1070. margin-top: 0;
  1071. margin-bottom: 0;
  1072. }
  1073. .pager td span {
  1074. min-width: 20px;
  1075. padding-left: 2px;
  1076. padding-right: 2px;
  1077. display: inline-block;
  1078. text-align: center;
  1079. cursor: pointer;
  1080. }
  1081. .pager td span.curr_page {
  1082. color: white;
  1083. background: #999999;
  1084. -moz-border-radius: 4px;
  1085. -webkit-border-radius: 4px;
  1086. border-radius: 4px;
  1087. }
  1088. img.first, img.last, img.next, img.prev {
  1089. cursor: pointer;
  1090. }
  1091. div.actions_button {
  1092. float: right;
  1093. background: url("../images/actions_left.png") no-repeat scroll left top transparent;
  1094. padding-left: 5px;
  1095. margin-top: 0;
  1096. margin-right: 10px;
  1097. height: 17px;
  1098. vertical-align: middle;
  1099. }
  1100. .actions_button a:hover, .actions_button a:visited, div.actions_button a {
  1101. background: url(../images/actions_bkg.png) no-repeat scroll right top transparent;
  1102. color: white;
  1103. padding-right: 8px;
  1104. cursor: pointer;
  1105. font-family: Tahoma, sans-serif;
  1106. font-size: 11px;
  1107. font-weight: bold;
  1108. padding-left: 4px;
  1109. text-decoration: none;
  1110. height: 17px;
  1111. line-height: 17px;
  1112. display: block;
  1113. }
  1114. select#org_id {
  1115. max-width: 90%;
  1116. }
  1117. /*
  1118. * ********** Dashboards **********
  1119. */
  1120. .itop-dashboard {
  1121. background-color: white;
  1122. }
  1123. .dragHover {
  1124. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png);
  1125. }
  1126. .edit_mode .dashlet {
  1127. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png);
  1128. padding: 5px;
  1129. position: relative;
  1130. }
  1131. .edit_mode .dashlet-selected {
  1132. background: #e87c1e !important;
  1133. padding: 5px;
  1134. }
  1135. td.layout_cell {
  1136. height: 50px;
  1137. /*
  1138. * min-height does not work
  1139. */
  1140. vertical-align: top;
  1141. }
  1142. .dashlet-content {
  1143. background: white;
  1144. }
  1145. table.prop_table {
  1146. border-bottom: 2px solid #f9f9f1;
  1147. padding: 1px;
  1148. width: 100%;
  1149. }
  1150. .close-box {
  1151. margin: 5px;
  1152. width: 20px;
  1153. height: 20px;
  1154. position: absolute;
  1155. top: 0;
  1156. right: 0;
  1157. z-index: 10;
  1158. background: transparent url(../images/delete.png) no-repeat center;
  1159. }
  1160. td.prop_value {
  1161. text-align: left;
  1162. }
  1163. tr.itop-property-field-modified td {
  1164. background: #ffbbbb;
  1165. }
  1166. tr.itop-property-field-modified td.hover {
  1167. background: #ff9999;
  1168. }
  1169. td.prop_value input[type=text], td.prop_value textarea {
  1170. width: 98%;
  1171. }
  1172. td.prop_icon {
  1173. width: 20px;
  1174. }
  1175. .dashlet {
  1176. text-align: left;
  1177. }
  1178. .dashlet-inline {
  1179. display: inline-block;
  1180. }
  1181. .dashlet-badge a.actions {
  1182. background: none repeat scroll 0 0 transparent;
  1183. color: #666666;
  1184. font-size: 16px;
  1185. text-decoration: none;
  1186. }
  1187. .dashlet-content .display_block {
  1188. text-align: left;
  1189. }
  1190. .prop_apply .ui-icon-alert {
  1191. display: none;
  1192. }
  1193. .prop_apply .ui-state-error .ui-icon-alert {
  1194. display: block;
  1195. }
  1196. .ui-state-error .ui-icon-circle-check {
  1197. display: none;
  1198. }
  1199. .summary-details {
  1200. float: right;
  1201. margin-top: 5px;
  1202. }
  1203. .summary-details th {
  1204. background: none repeat scroll 0 0 #555555;
  1205. color: #eeeeee;
  1206. padding: 5px;
  1207. text-align: center;
  1208. }
  1209. .main_header {
  1210. background-color: #f1f1f1;
  1211. min-height: 60px;
  1212. width: 100%;
  1213. }
  1214. .main_header h1 {
  1215. color: #1c94c4;
  1216. line-height: 16px;
  1217. margin-bottom: 0;
  1218. margin-top: 0;
  1219. padding-bottom: 10px;
  1220. padding-top: 10px;
  1221. }
  1222. .main_header img {
  1223. margin-top: 10px;
  1224. margin-right: 10px;
  1225. float: left;
  1226. }
  1227. a.summary, a.summary:hover {
  1228. background: none repeat scroll 0 0 transparent;
  1229. color: #666666;
  1230. text-decoration: none;
  1231. padding-left: 0;
  1232. }
  1233. .summary-details td {
  1234. background: none repeat scroll 0 0 transparent;
  1235. padding: 5px;
  1236. text-align: center;
  1237. }
  1238. #DashboardMenu > ul > li {
  1239. list-style: none;
  1240. vertical-align: middle;
  1241. margin: 0;
  1242. padding: 0;
  1243. cursor: pointer;
  1244. }
  1245. #DashboardMenu > ul {
  1246. list-style: none;
  1247. vertical-align: middle;
  1248. margin: 0;
  1249. padding: 0;
  1250. height: 25px;
  1251. }
  1252. #DashboardMenu li a {
  1253. display: block;
  1254. padding: 5px 12px;
  1255. text-decoration: none;
  1256. color: black;
  1257. font-weight: bold;
  1258. text-align: left;
  1259. white-space: nowrap;
  1260. background: white;
  1261. }
  1262. #DashboardMenu li span {
  1263. display: block;
  1264. padding: 5px 12px;
  1265. text-decoration: none;
  1266. color: black;
  1267. white-space: nowrap;
  1268. background: white;
  1269. }
  1270. #DashboardMenu li {
  1271. list-style: none;
  1272. }
  1273. #DashboardMenu li a:hover {
  1274. background: #1a4473;
  1275. }
  1276. #DashboardMenu ul > li > ul {
  1277. border: 1px solid black;
  1278. background: white;
  1279. }
  1280. #DashboardMenu li > ul {
  1281. margin: 0;
  1282. padding: 0;
  1283. position: absolute;
  1284. display: none;
  1285. border-top: 1px solid white;
  1286. z-index: 999;
  1287. }
  1288. #DashboardMenu li ul li a:hover {
  1289. background: #d81515;
  1290. color: white;
  1291. font-weight: bold;
  1292. list-style: none;
  1293. }
  1294. .sortable_field_list {
  1295. display: inline-block;
  1296. width: 250px;
  1297. height: 150px;
  1298. border: 1px #333333 solid;
  1299. overflow: auto;
  1300. padding-left: 0;
  1301. margin: 0;
  1302. }
  1303. .sortable_field_list li {
  1304. list-style: none;
  1305. font-size: 11px;
  1306. }
  1307. .sort_order {
  1308. display: inline-block;
  1309. width: 16px;
  1310. height: 12px;
  1311. }
  1312. .sort_none {
  1313. background: url(../images/bg.gif) no-repeat center;
  1314. }
  1315. .sort_asc {
  1316. background: url(../images/desc.gif) no-repeat center;
  1317. }
  1318. .sort_desc {
  1319. background: url(../images/asc.gif) no-repeat center;
  1320. }
  1321. .sort_hidden {
  1322. display: none;
  1323. }
  1324. .sortable_field_list > li.selected {
  1325. background: #f6a828;
  1326. }
  1327. .itop-deleted-object {
  1328. text-decoration: line-through;
  1329. }
  1330. .header_message {
  1331. padding: 1em;
  1332. font-size: 10pt;
  1333. background: white;
  1334. border: 1px solid #999999;
  1335. -moz-border-radius: 4px;
  1336. -webkit-border-radius: 4px;
  1337. border-radius: 4px;
  1338. margin-bottom: 10px;
  1339. }
  1340. .header_message {
  1341. padding: 1em;
  1342. font-size: 10pt;
  1343. background: white;
  1344. border: 1px solid #999999;
  1345. -moz-border-radius: 4px;
  1346. -webkit-border-radius: 4px;
  1347. border-radius: 4px;
  1348. margin-bottom: 10px;
  1349. }
  1350. .message_info {
  1351. border: 1px solid #999933;
  1352. background: url(../images/info-mini.png) 1em 1em no-repeat #ffffcc;
  1353. padding-left: 3em;
  1354. }
  1355. .message_ok {
  1356. border: 1px solid #339933;
  1357. background: url(../images/ok.png) 1em 1em no-repeat #ccffcc;
  1358. padding-left: 3em;
  1359. }
  1360. .message_error {
  1361. border: 1px solid #993333;
  1362. background: url(../images/error.png) 1em 1em no-repeat #ffcccc;
  1363. padding-left: 3em;
  1364. }
  1365. .fg-menu a img {
  1366. border: 0;
  1367. }
  1368. div.ui-dialog-header {
  1369. padding-bottom: 10px;
  1370. padding-top: 7px;
  1371. }
  1372. .form_field_error {
  1373. border: 1px solid #993333;
  1374. background: #ffcccc;
  1375. }
  1376. .graph_config, .simple-graph {
  1377. background: white;
  1378. }
  1379. .graph_config {
  1380. padding: 0.25em;
  1381. }
  1382. .graph_config button.ui-widget {
  1383. font-size: 12px;
  1384. }
  1385. .arrow:after, .ui-tooltip {
  1386. background: #f1f1f1;
  1387. border: 1px solid #555555;
  1388. }
  1389. .ui-tooltip {
  1390. padding: 10px 10px;
  1391. box-shadow: 0 0 7px black;
  1392. }
  1393. .ui-tooltip .arrow {
  1394. width: 70px;
  1395. height: 16px;
  1396. overflow: hidden;
  1397. position: absolute;
  1398. left: 50%;
  1399. margin-left: -35px;
  1400. bottom: -16px;
  1401. }
  1402. .ui-tooltip .arrow.top {
  1403. top: -16px;
  1404. bottom: auto;
  1405. }
  1406. .ui-tooltip .arrow.left {
  1407. left: 20%;
  1408. }
  1409. .ui-tooltip .arrow:after {
  1410. content: "";
  1411. position: absolute;
  1412. left: 20px;
  1413. top: -20px;
  1414. width: 25px;
  1415. height: 25px;
  1416. box-shadow: 6px 5px 9px -9px black;
  1417. -webkit-transform: rotate(45deg);
  1418. -ms-transform: rotate(45deg);
  1419. transform: rotate(45deg);
  1420. }
  1421. .ui-tooltip .arrow.top:after {
  1422. bottom: -20px;
  1423. top: auto;
  1424. }
  1425. table.export_parameters td {
  1426. padding-right: 2em;
  1427. }
  1428. .table_preview > table {
  1429. border-collapse: collapse;
  1430. max-height: 150px;
  1431. overflow: auto;
  1432. display: block;
  1433. }
  1434. .table_preview > table > tbody > tr > td, .table_preview > table > thead > tr > th {
  1435. border: 1px #555555 solid;
  1436. min-height: 1em;
  1437. padding-left: 0.25em;
  1438. padding-right: 0.25em;
  1439. font-size: 10pt;
  1440. }
  1441. .table_preview > table > tbody > tr > td {
  1442. vertical-align: top;
  1443. }
  1444. .table_preview .drag-handle {
  1445. cursor: move;
  1446. }
  1447. .table_preview div.text-preview {
  1448. white-space: pre-wrap;
  1449. }
  1450. .graph_zoom {
  1451. display: inline-block;
  1452. float: right;
  1453. margin-right: 2em;
  1454. }
  1455. .graph_zoom_slider {
  1456. display: inline-block;
  1457. width: 10em;
  1458. }
  1459. .graph_zoom_minus, .graph_zoom_plus {
  1460. display: inline-block;
  1461. margin-left: 1em;
  1462. margin-right: 1em;
  1463. }
  1464. div.explain-printable {
  1465. border: 5px solid #1c94c4;
  1466. background: #d6e8ef;
  1467. color: black;
  1468. padding: 10px;
  1469. margin: 0;
  1470. font-size: 12px;
  1471. }
  1472. .hideable-chapter {
  1473. cursor: pointer;
  1474. }
  1475. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span {
  1476. padding-left: 20px;
  1477. background: url(../images/eye-open-555.png) 2px center no-repeat;
  1478. }
  1479. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span {
  1480. text-decoration: line-through;
  1481. background: url(../images/eye-closed-555.png) 2px center no-repeat;
  1482. }
  1483. .printable-version legend {
  1484. padding-left: 26px;
  1485. background: #1c94c4 url(../images/eye-open-fff.png) 8px center no-repeat;
  1486. }
  1487. .printable-version .strikethrough legend {
  1488. background: #1c94c4 url(../images/eye-closed-fff.png) 8px center no-repeat;
  1489. }
  1490. .printable-version fieldset.strikethrough span {
  1491. display: none;
  1492. }
  1493. .strikethrough {
  1494. text-decoration: line-through;
  1495. }
  1496. select.multiselect {
  1497. max-width: 150px;
  1498. }