light-grey.css 15 KB

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