light-grey.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731
  1. /* CSS Document */
  2. body {
  3. font-family: Tahoma, Verdana, Arial, Helevtica;
  4. font-size: 8pt;
  5. background-color: #fff;
  6. color:#000000;
  7. margin: 0; /* Remove body margin/padding */
  8. padding: 0;
  9. overflow: hidden; /* Remove scroll bars on browser window */
  10. }
  11. .raw_output {
  12. font-family: Courier-New, Courier, Arial, Helevtica;
  13. font-size: 8pt;
  14. background-color: #eeeeee;
  15. color: #000000;
  16. border: 1px dashed #000000;
  17. padding: 0.25em;
  18. margin-top: 1em;
  19. }
  20. h1 {
  21. font-family: Tahoma, Verdana, Arial, Helvetica;
  22. font-size: 10pt;
  23. color: #000;
  24. font-weight:10px;
  25. }
  26. .hilite {
  27. color: #d81515;
  28. }
  29. table.listResults {
  30. padding: 0px;
  31. border-top: 3px solid #f6f6f1;
  32. border-left: 3px solid #f6f6f1;
  33. border-bottom: 3px solid #e6e6e1;
  34. border-right: 3px solid #e6e6e1;
  35. width: 100%;
  36. }
  37. table.listResults td {
  38. padding: 2px;
  39. }
  40. table.listContainer {
  41. border: 0;
  42. padding: 0;
  43. margin:0;
  44. width: 97%;
  45. }
  46. tr.containerHeader, tr.containerHeader td {
  47. background: transparent;
  48. }
  49. tr.even td {
  50. background-color: #f9f9f1;
  51. }
  52. tr td.hover, tr.even td.hover, .hover a, .hover a:visited, .hover a:hover {
  53. background-color: #E8FFD3;
  54. }
  55. th {
  56. font-family: Tahoma, Verdana, Arial, Helvetica;
  57. font-size: 8pt;
  58. color: #d81515;
  59. height:20px;
  60. background: #f6f6f1 url(../images/grey-header.gif) bottom repeat-x;
  61. }
  62. th.header {
  63. cursor: pointer;
  64. }
  65. th.headerSortUp, th.headerSortDown {
  66. text-decoration: underline;
  67. cursor: pointer;
  68. }
  69. td {
  70. font-family: Tahoma, Verdana, Arial, Helvetica;
  71. font-size: 8pt;
  72. color:#696969;
  73. background-color: #ffffff;
  74. padding: 0px;
  75. }
  76. tr.clicked td {
  77. font-family: Tahoma, Verdana, Arial, Helvetica;
  78. font-size: smaller;
  79. background-color: #ffcfe8;
  80. }
  81. td.label {
  82. font-family: Tahoma, Verdana, Arial, Helvetica;
  83. font-size: 8pt;
  84. color: #000000;
  85. background-color:#f6f6f6;
  86. padding: 0.25em;
  87. font-weight:bold;
  88. }
  89. td a, td a:visited {
  90. text-decoration:none;
  91. color:#000000;
  92. padding-left:14px;
  93. background: url(../images/red-arrow.gif) no-repeat left;
  94. }
  95. td a:hover {
  96. text-decoration:underline;
  97. color:#d81515;
  98. padding-left:14px;
  99. background: url(../images/red-arrow.gif) no-repeat left;
  100. }
  101. td a.no-arrow, td a.no-arrow:visited {
  102. text-decoration:none;
  103. color:#000000;
  104. padding-left:0px;
  105. background: inherit;
  106. }
  107. td a.no-arrow:hover {
  108. text-decoration:underline;
  109. color:#d81515;
  110. padding-left:0px;
  111. background: inherit;
  112. }
  113. a.small_action {
  114. font-family: Tahoma, Verdana, Arial, Helvetica;
  115. font-size: 8pt;
  116. color: #000000;
  117. text-decoration:none;
  118. }
  119. .display_block {
  120. noborder: 1px dashed #CCC;
  121. padding:0.25em;
  122. }
  123. div#TopPane .display_block {
  124. background: #fff;
  125. padding:0.25em;
  126. text-align:center;
  127. }
  128. div#TopPane label {
  129. color:#000;
  130. background: #fff;
  131. }
  132. div#TopPane td {
  133. color:#000;
  134. background: #fff;
  135. }
  136. .actions_details {
  137. float:right;
  138. margin-top:10px;
  139. margin-right:10px;
  140. padding-left: 5px;
  141. padding-top: 2px;
  142. padding-bottom: 2px;
  143. background: url(../images/actions_left.png) no-repeat left;
  144. }
  145. .actions_details span{
  146. background: url(../images/actions_right.png) no-repeat right;
  147. color: #fff;
  148. font-weight: bold;
  149. padding-top: 2px;
  150. padding-bottom: 2px;
  151. padding-right: 12px;
  152. }
  153. .actions_details a {
  154. text-decoration:none;
  155. }
  156. .loading {
  157. noborder: 1px dashed #CCC;
  158. background: #b9c1c8;
  159. padding:0.25em;
  160. }
  161. input.textSearch {
  162. border:1px solid #000;
  163. noheight:1.2em;
  164. font-size:8pt;
  165. font-family:Tahoma,Verdana, Arial, Helvetica, sans-serif;
  166. color:#000000;
  167. }
  168. .ac_input {
  169. border: 1px solid #7f9db9;
  170. background: url(../images/ac-background.gif) no-repeat right;
  171. }
  172. /* By Rom */
  173. .csvimport_createobj {
  174. color: #AA0000;
  175. background-color:#EEEEEE;
  176. }
  177. .csvimport_error {
  178. font-weight: bold;
  179. color: #FF0000;
  180. background-color:#EEEEEE;
  181. }
  182. .csvimport_warning {
  183. color: #CC8888;
  184. background-color:#EEEEEE;
  185. }
  186. .csvimport_ok {
  187. color: #00000;
  188. background-color:#BBFFBB;
  189. }
  190. .csvimport_reconkey {
  191. font-style: italic;
  192. color: #888888;
  193. background-color:#FFFFF;
  194. }
  195. .csvimport_extreconkey {
  196. color: #888888;
  197. background-color:#FFFFFF;
  198. }
  199. ul.dir {
  200. list-style:none;
  201. padding-left:16px;
  202. }
  203. ul.dir ul {
  204. padding: 8px 0px 8px 8px;
  205. margin:0;
  206. list-style:none;
  207. border: 0;
  208. }
  209. ul.dir li a, ul.dir li a:visited, ul.dir li a:hover{
  210. noborder-top: 1px solid #8b8b8b;
  211. padding: 4px 0px 0px 16px;
  212. font-size:8pt;
  213. background: url(../images/green-square.gif) no-repeat bottom left;
  214. color:#83b217;
  215. font-weight:bold;
  216. text-decoration:none;
  217. }
  218. ul.dir li li a, ul.dir li li a:visited, ul.dir li li a:hover {
  219. color:#8b8b8b;
  220. text-decoration:none;
  221. margin: 0;
  222. padding: 0px 0pt 0px 16px;
  223. font-size:8pt;
  224. background: url(../images/mini-arrow-green.gif) no-repeat left;
  225. font-weight:normal;
  226. border: 0;
  227. }
  228. a.CollapsibleLabel, td a.CollapsibleLabel {
  229. margin: 0;
  230. padding: 0px 0pt 0px 16px;
  231. font-size:8pt;
  232. text-decoration:none;
  233. color:#8b8b8b;
  234. background: url(../images/mini-arrow-green.gif) no-repeat left;
  235. }
  236. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  237. a.CollapsibleLabel.open, td a.CollapsibleLabel.open {
  238. margin: 0;
  239. padding: 0px 0pt 0px 16px;
  240. font-size:8pt;
  241. text-decoration:none;
  242. color:red;
  243. background: url(../images/mini-arrow-green-open.gif) no-repeat left;
  244. }
  245. .page_header {
  246. background-color:#f6f6f1;
  247. padding:5px;
  248. }
  249. .notreeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
  250. .notreeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
  251. .notreeview .expandable { background-image: url(../images/tv-expandable.gif); }
  252. .notreeview .last { background-image: url(../images/tv-item-last.gif); }
  253. .notreeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
  254. .notreeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
  255. #Header { padding: 0; background:#ccc url(../images/bandeau3.gif) repeat-x center;}
  256. div.iTopLogo {
  257. background:url(../images/iTop2.gif) no-repeat center;
  258. width:150px;
  259. height:56px;
  260. }
  261. div.iTopLogo span {
  262. display:none;
  263. }
  264. #MySplitter {
  265. /* Height is set to match window size in $().ready() below */
  266. border:0px;
  267. margin:4px;
  268. padding:0px;
  269. min-width: 100px; /* Splitter can't be too thin ... */
  270. min-height: 100px; /* ... or too flat */
  271. }
  272. #LeftPane {
  273. background: #f6f6f1 url(../images/left-border.gif) repeat-y top left;
  274. padding: 16px;
  275. overflow: auto; /* Scroll bars appear as needed */
  276. color:#000;
  277. }
  278. #TopPane { /* Top nested in right pane */
  279. background: #fff;
  280. padding: 4px;
  281. height: 150px; /* Initial height */
  282. min-height: 75px; /* Minimum height */
  283. overflow: auto;
  284. color:#000;
  285. }
  286. #RightPane { /* Bottom nested in right pane */
  287. background: #fff;
  288. height:150px; /* Initial height */
  289. min-height:130px;
  290. no.padding:15px;
  291. no.margin:10px;
  292. overflow:auto;
  293. color:#000000;
  294. padding-left:10px;
  295. }
  296. #BottomPane { /* Bottom nested in right pane */
  297. background: #fff;
  298. padding: 4px;
  299. overflow: auto;
  300. color:#000;
  301. }
  302. #MySplitter .vsplitbar {
  303. width: 9px;
  304. height: 50px;
  305. background: url(../images/vsplitter-grey.gif) repeat top;
  306. }
  307. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  308. #MySplitter .vsplitbar.active, #MySplitter .vsplitbar:hover {
  309. background-color: #fff;
  310. }
  311. #MySplitter .hsplitbar {
  312. height: 8px;
  313. background-color: #fff;
  314. }
  315. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  316. #MySplitter .hsplitbar.active, #MySplitter .hsplitbar:hover {
  317. background-color: #fff;
  318. }
  319. #OrganizationSelection {
  320. padding:5px 0px 16px 20px;
  321. }
  322. /* jdMenu popup menus */
  323. ul.jd_menu,
  324. ul.jd_menu_vertical {
  325. margin: 0px;
  326. padding: 0px;
  327. list-style-type: none;
  328. }
  329. ul.jd_menu ul,
  330. ul.jd_menu_vertical ul {
  331. display: none;
  332. }
  333. ul.jd_menu li {
  334. float: left;
  335. }
  336. /* -- Sub-Menus -- */
  337. ul.jd_menu ul,
  338. ul.jd_menu_vertical ul {
  339. position: absolute;
  340. display: none;
  341. list-style-type: none;
  342. margin: 0px;
  343. padding: 0px;
  344. z-index: 10000;
  345. }
  346. ul.jd_menu ul li,
  347. ul.jd_menu_vertical ul li {
  348. float: none;
  349. margin: 0px;
  350. }
  351. /* jdMenu popup menus styling */
  352. div.jd_menu_itop {
  353. height:19px;
  354. float:right;
  355. display:inline;
  356. width:70px; /* Nasty work-around for IE... en attendant mieux */
  357. padding-left: 5px;
  358. background: url(../images/actions_left.png) no-repeat left;
  359. }
  360. ul.jd_menu_itop {
  361. height: 19px;
  362. padding-right:16px;
  363. background: url(../images/actions_right.png) no-repeat right;
  364. font-weight: bold;
  365. }
  366. ul.jd_menu_vertical {
  367. width: 200px;
  368. height: auto;
  369. clear: both;
  370. background: url(gradient-vertical.png) repeat-x;
  371. background-color: #A5AFB8;
  372. }
  373. ul.jd_menu_itop a,
  374. ul.jd_menu_itop a:active,
  375. ul.jd_menu_itop a:link,
  376. ul.jd_menu_itop a:visited {
  377. text-decoration: none;
  378. color: #FFF;
  379. }
  380. ul.jd_menu_itop ul li a,
  381. ul.jd_menu_itop ul li a:active,
  382. ul.jd_menu_itop ul li a:link,
  383. ul.jd_menu_itop ul li a:visited {
  384. color: #000;
  385. }
  386. ul.jd_menu_itop li {
  387. font-family: Tahoma, sans-serif;
  388. font-size: 11px;
  389. padding: 2px 6px 4px 6px;
  390. cursor: pointer;
  391. white-space: nowrap;
  392. color: #FFF;
  393. }
  394. ul.jd_menu_itop li.jd_menu_active_menubar,
  395. ul.jd_menu_itop li.jd_menu_hover_menubar {
  396. color: #FFF;
  397. }
  398. ul.jd_menu_vertical li.jd_menu_active_menubar,
  399. ul.jd_menu_vertical li.jd_menu_hover_menubar {
  400. padding-left: 6px;
  401. padding-top: 1px;
  402. border-top: 1px solid #70777D;
  403. border-left: 0px;
  404. border-right: 0px;
  405. }
  406. ul.jd_menu_itop ul {
  407. background: #d81515;
  408. border: 1px solid #70777D;
  409. }
  410. ul.jd_menu_itop ul li {
  411. padding: 3px 10px 3px 4px;
  412. background: #FFF;
  413. border: none;
  414. color: #000;
  415. }
  416. ul.jd_menu_itop ul li.jd_menu_active,
  417. ul.jd_menu_itop ul li.jd_menu_hover {
  418. background: #d81515;
  419. padding-top: 2px;
  420. border-top: 1px solid #ABB5BC;
  421. padding-bottom: 2px;
  422. border-bottom: 1px solid #929AA1;
  423. color: #FFF;
  424. }
  425. ul.jd_menu_itop li ul li a {
  426. padding: 0;
  427. background: #fff;
  428. padding-left:0;
  429. }
  430. ul.jd_menu_itop ul li.jd_menu_active a.jd_menu_active,
  431. ul.jd_menu_itop ul li.jd_menu_hover a.jd_menu_hover {
  432. color: #FFF;
  433. background: #d81515;
  434. padding-left:0;
  435. }
  436. .wizHeader {
  437. background: #83b217;
  438. padding: 15px;
  439. }
  440. .wizSeparator {
  441. float:left;
  442. background: #83b217;
  443. height: 29px;
  444. margin-top: 5px;
  445. }
  446. div.wizActiveStep {
  447. height: 29px;
  448. background: url(../images/wizActiveStepLeft.gif) no-repeat left;
  449. color: #d81515;
  450. padding-left: 8px;
  451. margin-top: 5px;
  452. vertical-align: middle;
  453. float: left;
  454. }
  455. div.wizActiveStep span {
  456. height: 29px;
  457. background: url(../images/wizActiveStepRight.gif) no-repeat top right;
  458. padding-right: 8px;
  459. padding-top: 8px;
  460. float:left;
  461. }
  462. div.wizStep {
  463. height: 29px;
  464. background: url(../images/wizStepLeft.gif) no-repeat left;
  465. padding-left: 8px;
  466. vertical-align: middle;
  467. margin-top: 5px;
  468. float:left;
  469. }
  470. div.wizStep span {
  471. height: 29px;
  472. background: url(../images/wizStepRight.gif) no-repeat top right;
  473. padding-right: 8px;
  474. padding-top: 8px;
  475. float:left;
  476. }
  477. .wizContainer {
  478. border: 5px solid #83b217;
  479. background: #e8f3cf;
  480. padding: 5px;
  481. }
  482. .alignRight {
  483. text-align: right;
  484. padding: 3px;
  485. }
  486. .alignLeft {
  487. text-align: left;
  488. padding: 3px;
  489. }
  490. .red {
  491. background-color: #ff6000;
  492. color: #000;
  493. }
  494. th.red {
  495. background: url(../images/red-header.gif) bottom left repeat-x;
  496. color: #000;
  497. }
  498. .green {
  499. background-color: #00cc00;
  500. color: #000;
  501. }
  502. th.green {
  503. background: url(../images/green-header.gif) bottom left repeat-x;
  504. color: #000;
  505. }
  506. .orange {
  507. background-color: #ffde00;
  508. color: #000;
  509. }
  510. th.orange {
  511. background: url(../images/orange-header.gif) bottom left repeat-x;
  512. color: #000;
  513. }
  514. /* For Date Picker: Creates a little calendar icon
  515. * instead of a text link for "Choose date"
  516. */
  517. 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 {
  518. float: left;
  519. width: 16px;
  520. height: 16px;
  521. padding: 0;
  522. margin: 5px 3px 0;
  523. display: block;
  524. text-indent: -2000px;
  525. overflow: hidden;
  526. background: url(../images/calendar.png) no-repeat;
  527. }
  528. td a.dp-choose-date.dp-disabled, a.dp-choose-date.dp-disabled {
  529. background-position: 0 -20px;
  530. cursor: default;
  531. }
  532. /* For Date Picker: makes the input field shorter once the date picker code
  533. * has run (to allow space for the calendar icon)
  534. */
  535. input.dp-applied {
  536. width: 140px;
  537. float: left;
  538. }
  539. /* For search forms */
  540. .SearchDrawer {
  541. background: #83b217 url(../images/green-corner.png) top left no-repeat;
  542. color: #fff;
  543. padding: 10px;
  544. margin: 0;
  545. }
  546. .SearchDrawer form table tbody tr td {
  547. background: #83b217;
  548. color: #fff;
  549. }
  550. .SearchDrawer label {
  551. background: #83b217;
  552. color: #fff;
  553. padding-left: 10px;
  554. }
  555. .SearchDrawer h1 {
  556. color: #fff;
  557. }
  558. .DrawerClosed {
  559. display: none;
  560. }
  561. .DrawerHandle {
  562. margin: 0;
  563. padding: 5px;
  564. background: #fff url(../images/drawer-handle.gif) bottom no-repeat;
  565. color: #fff;
  566. cursor: pointer;
  567. text-align: center;
  568. /* center the block */
  569. width: 100px;
  570. margin-left: auto;
  571. margin-right: auto;
  572. margin-top: 0;
  573. margin-bottom: 0;
  574. display: block;
  575. }
  576. div.HRDrawer {
  577. height: 5px;
  578. width: 100%;
  579. margin: 0;
  580. background-color: #83b217;
  581. margin: 0;
  582. padding: 0;
  583. border: 0;
  584. display: block;
  585. }
  586. .mini_tabs a {
  587. text-decoration: none;
  588. font-weight:bold;
  589. color: #ccc;
  590. background-color:#333;
  591. padding-left: 1em;
  592. padding-right: 1em;
  593. padding-bottom: 0.25em;
  594. }
  595. .mini_tabs a.selected {
  596. color: #fff;
  597. background-color: #83b217;
  598. padding-top: 0.25em;
  599. }
  600. .mini_tabs ul {
  601. margin: -10px;
  602. }
  603. .mini_tabs ul li {
  604. float: right;
  605. list-style: none;
  606. nopadding-left: 1em;
  607. nopadding-right: 1em;
  608. margin-top: 0;
  609. }
  610. .mandatory {
  611. border: 1px solid #f00;
  612. }
  613. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  614. table.listResults tr.odd td.truncated {
  615. background: url(../images/truncated.png) bottom repeat-x;
  616. }
  617. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  618. table.listResults tr.even td.truncated {
  619. background: #f9f9f1 url(../images/truncated.png) bottom repeat-x;
  620. }
  621. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  622. table.listResults tr.even td.hover.truncated {
  623. background: #E8FFD3 url(../images/truncated.png) bottom repeat-x;
  624. }
  625. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  626. table.listResults tr.odd td.hover.truncated {
  627. background: #E8FFD3 url(../images/truncated.png) bottom repeat-x;
  628. }
  629. table.listResults.truncated {
  630. border-bottom: 0;
  631. padding-bottom: 0;
  632. }
  633. tr.csv_row0 td {
  634. padding-top:5px;
  635. padding-bottom:5px;
  636. padding-left:10px;
  637. padding-right:10px;
  638. background: #fff;
  639. border-left: #000 1px solid;
  640. }
  641. tr.csv_row1 td {
  642. padding-top:5px;
  643. padding-bottom:5px;
  644. padding-left:10px;
  645. padding-right:10px;
  646. background: #f9f9f1;
  647. border-left: #000 1px solid;
  648. }
  649. tr.csv_row1 th, tr.csv_row0 th {
  650. padding-top:5px;
  651. padding-bottom:5px;
  652. padding-left:10px;
  653. padding-right:10px;
  654. border-left: #000 1px solid;
  655. }
  656. td.cell_modified {
  657. font-weight: bold;
  658. color: #000;
  659. }
  660. td.cell_error {
  661. font-weight: bold;
  662. color: #D81515;
  663. }