light-grey.css 29 KB

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