light-grey.css 29 KB

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