light-grey.css 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081
  1. /* CSS Document */
  2. body {
  3. font-family: Tahoma, Verdana, Arial, Helvetica;
  4. font-size: 10pt;
  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, Helvetica;
  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. font-size: 12pt;
  25. }
  26. h2 {
  27. font-family: Tahoma, Verdana, Arial, Helvetica;
  28. color: #000;
  29. font-weight: normal;
  30. font-size: 12pt;
  31. }
  32. h3 {
  33. font-family: Tahoma, Verdana, Arial, Helvetica;
  34. color: #000;
  35. font-weight: normal;
  36. font-size: 10pt;
  37. }
  38. .hilite, .hilite a, .hilite a:visited {
  39. color: #EB8F00;
  40. text-decoration: none;
  41. }
  42. table.listResults {
  43. padding: 0px;
  44. border-top: 3px solid #f6f6f1;
  45. border-left: 3px solid #f6f6f1;
  46. border-bottom: 3px solid #e6e6e1;
  47. border-right: 3px solid #e6e6e1;
  48. width: 100%;
  49. background-color: #fff;
  50. }
  51. table.listResults td {
  52. padding: 2px;
  53. }
  54. table.listContainer {
  55. border: 0;
  56. padding: 0;
  57. margin:0;
  58. width: 97%;
  59. }
  60. tr.containerHeader, tr.containerHeader td {
  61. background: transparent;
  62. }
  63. tr.even td, .wizContainer tr.even td {
  64. background-color: #f9f9f1;
  65. }
  66. tr.red_even td, .wizContainer tr.red_even td {
  67. background-color: #f97e75;
  68. color: #ffffff;
  69. }
  70. tr.red td, .wizContainer tr.red td {
  71. background-color: #f9a397;
  72. color: #ffffff;
  73. }
  74. tr.orange_even td, .wizContainer tr.orange_even td {
  75. background-color: #f4d07a;
  76. }
  77. tr.orange td, .wizContainer tr.orange td {
  78. background-color: #f4e96c;
  79. }
  80. tr.green_even td, .wizContainer tr.green_even td {
  81. background-color: #bee5a3;
  82. }
  83. tr.green td, .wizContainer tr.green td {
  84. background-color: #b3e5b4;
  85. }
  86. tr td.hover, tr.even td.hover, .hover a, .hover a:visited, .hover a:hover, .wizContainer tr.even td.hover, .wizContainer tr td.hover {
  87. background-color: #fdf5d0;
  88. color: #000000;
  89. }
  90. th {
  91. font-family: Tahoma, Verdana, Arial, Helvetica;
  92. font-size: 8pt;
  93. color: #1C94C4;
  94. height:20px;
  95. background: #f6f6f1 url(../images/grey-header.gif) bottom repeat-x;
  96. }
  97. th.header {
  98. cursor: pointer;
  99. background-repeat: no-repeat;
  100. background-position: center right;
  101. background-image: url(../images/bg.gif);
  102. background-repeat: no-repeat;
  103. padding-right: 16px; // some space for the asc/desc icons
  104. }
  105. th.headerSortUp {
  106. background-image: url(../images/asc.gif);
  107. text-decoration: underline;
  108. cursor: pointer;
  109. }
  110. th.headerSortDown {
  111. background-image: url(../images/desc.gif);
  112. text-decoration: underline;
  113. cursor: pointer;
  114. }
  115. td {
  116. font-family: Tahoma, Verdana, Arial, Helvetica;
  117. font-size: 12px;
  118. color:#696969;
  119. nobackground-color: #ffffff;
  120. padding: 0px;
  121. }
  122. tr.clicked td {
  123. font-family: Tahoma, Verdana, Arial, Helvetica;
  124. font-size: smaller;
  125. background-color: #ffcfe8;
  126. }
  127. td.label {
  128. vertical-align: top;
  129. }
  130. td.label span {
  131. font-family: Tahoma, Verdana, Arial, Helvetica;
  132. font-size: 12px;
  133. color: #000000;
  134. padding: 5px;
  135. padding-right: 10px;
  136. font-weight:bold;
  137. vertical-align: top;
  138. text-align: right;
  139. display: block;
  140. }
  141. fieldset td.label span {
  142. padding: 3px;
  143. padding-right: 10px;
  144. }
  145. fieldset {
  146. margin-top: 3px;
  147. -moz-border-radius: 6px;
  148. -webkit-border-radius: 6px;
  149. border-radius: 6px;
  150. border-style: solid;
  151. border-color: #ddd;
  152. }
  153. legend {
  154. font-family: Tahoma, Verdana, Arial, Helvetica;
  155. font-size: 12px;
  156. padding:8px;
  157. color: #fff;
  158. background-color: #1C94C4;
  159. font-weight: bold;
  160. -moz-border-radius: 6px;
  161. -webkit-border-radius: 6px;
  162. border-radius: 6px;
  163. }
  164. .ui-widget-content td a, p a, p a:visited, td a, td a:visited {
  165. text-decoration:none;
  166. color: #1C94C4;
  167. padding-left:14px;
  168. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  169. }
  170. p a:hover, td a:hover {
  171. text-decoration:underline;
  172. color:#EB8F00;
  173. padding-left:14px;
  174. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  175. }
  176. td a.no-arrow, td a.no-arrow:visited, .SearchDrawer a.no-arrow, .SearchDrawer a.no-arrow:visited {
  177. text-decoration:none;
  178. color:#000000;
  179. padding-left:0px;
  180. background: inherit;
  181. }
  182. td a.no-arrow:hover {
  183. text-decoration:underline;
  184. color:#d81515;
  185. padding-left:0px;
  186. background: inherit;
  187. }
  188. td a.mailto, td a.mailto:visited {
  189. text-decoration:none;
  190. color:#000000;
  191. padding-left:20px;
  192. background: url(../images/mail.png) no-repeat left;
  193. }
  194. td a.mailto:hover {
  195. text-decoration:underline;
  196. color:#EB8F00;
  197. padding-left:20px;
  198. background: url(../images/mail.png) no-repeat left;
  199. }
  200. a.small_action {
  201. font-family: Tahoma, Verdana, Arial, Helvetica;
  202. font-size: 8pt;
  203. color: #000000;
  204. text-decoration:none;
  205. }
  206. .display_block {
  207. padding:0.25em;
  208. }
  209. .actions_details {
  210. float:right;
  211. margin-top:10px;
  212. margin-right:10px;
  213. padding-left: 5px;
  214. padding-top: 2px;
  215. padding-bottom: 2px;
  216. background: url(../images/actions_left.png) no-repeat left;
  217. }
  218. .actions_details span{
  219. background: url(../images/actions_right.png) no-repeat right;
  220. color: #fff;
  221. font-weight: bold;
  222. padding-top: 2px;
  223. padding-bottom: 2px;
  224. padding-right: 12px;
  225. }
  226. .actions_details a {
  227. text-decoration:none;
  228. }
  229. .loading {
  230. noborder: 1px dashed #CCC;
  231. background: #b9c1c8;
  232. padding:0.25em;
  233. }
  234. input.textSearch {
  235. border:1px solid #000;
  236. font-family:Tahoma,Verdana, Arial, Helvetica, sans-serif;
  237. font-size: 12px;
  238. color:#000000;
  239. }
  240. .ac_input {
  241. border: 1px solid #7f9db9;
  242. background: #fff url(../images/ac-background.gif) no-repeat right;
  243. }
  244. /* By Rom */
  245. .csvimport_createobj {
  246. color: #AA0000;
  247. background-color:#EEEEEE;
  248. }
  249. .csvimport_error {
  250. font-weight: bold;
  251. color: #FF0000;
  252. background-color:#EEEEEE;
  253. }
  254. .csvimport_warning {
  255. color: #CC8888;
  256. background-color:#EEEEEE;
  257. }
  258. .csvimport_ok {
  259. color: #00000;
  260. background-color:#BBFFBB;
  261. }
  262. .csvimport_reconkey {
  263. font-style: italic;
  264. color: #888888;
  265. background-color:#FFFFF;
  266. }
  267. .csvimport_extreconkey {
  268. color: #888888;
  269. background-color:#FFFFFF;
  270. }
  271. #accordion h3 {
  272. padding: 10px;
  273. }
  274. .ui-accordion-content ul {
  275. list-style:none;
  276. padding-left:16px;
  277. margin-top: 8px;
  278. }
  279. .ui-accordion-content li.submenu {
  280. margin-top: 8px;
  281. }
  282. .ui-accordion-content ul ul {
  283. padding: 8px 0px 8px 8px;
  284. margin:0;
  285. list-style:none;
  286. border: 0;
  287. }
  288. .nothing {
  289. noborder-top: 1px solid #8b8b8b;
  290. padding: 4px 0px 0px 16px;
  291. font-size:8pt;
  292. background: url(../images/green-square.gif) no-repeat bottom left;
  293. color:#83b217;
  294. font-weight:bold;
  295. text-decoration:none;
  296. }
  297. div.ui-accordion-content {
  298. padding-top: 10px;
  299. padding-left: 10px;
  300. }
  301. .ui-accordion-content a, ui-accordion-content a:visited {
  302. color: #1C94C4;
  303. text-decoration:none;
  304. }
  305. .ui-accordion-content a:hover {
  306. color: #EB8F00;
  307. text-decoration: none;
  308. }
  309. .ui-accordion-content p {
  310. color:#8b8b8b;
  311. text-decoration:none;
  312. margin: 0;
  313. padding-bottom: 1px;
  314. font-size: 9pt;
  315. font-weight:normal;
  316. border: 0;
  317. }
  318. .ui-accordion-content ul {
  319. padding-left: 0;
  320. margin-top: 0;
  321. }
  322. .ui-accordion-content li {
  323. color:#8b8b8b;
  324. text-decoration:none;
  325. margin: 0;
  326. padding: 0px 0pt 0px 16px;
  327. font-size: 9pt;
  328. background: url(../images/mini-arrow-orange.gif) no-repeat top left;
  329. font-weight:normal;
  330. border: 0;
  331. }
  332. a.CollapsibleLabel, td a.CollapsibleLabel {
  333. margin: 0;
  334. padding: 0px 0pt 0px 16px;
  335. font-size:8pt;
  336. text-decoration:none;
  337. color:#8b8b8b;
  338. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  339. }
  340. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  341. a.CollapsibleLabel.open, td a.CollapsibleLabel.open {
  342. margin: 0;
  343. padding: 0px 0pt 0px 16px;
  344. font-size:8pt;
  345. text-decoration:none;
  346. color: #EB8F00;
  347. background: url(../images/mini-arrow-orange-open.gif) no-repeat left;
  348. }
  349. .page_header {
  350. background-color:#f6f6f1;
  351. padding:5px;
  352. }
  353. .notreeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
  354. .notreeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
  355. .notreeview .expandable { background-image: url(../images/tv-expandable.gif); }
  356. .notreeview .last { background-image: url(../images/tv-item-last.gif); }
  357. .notreeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
  358. .notreeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
  359. #OrganizationSelection {
  360. padding:5px 0px 16px 20px;
  361. }
  362. /* popup menus */
  363. div.itop_popup {
  364. margin: 0;
  365. padding: 0;
  366. float:right;
  367. }
  368. div.itop_popup > ul {
  369. height:19px;
  370. display:block;
  371. width:70px; /* Nasty work-around for IE... en attendant mieux */
  372. padding-left: 5px;
  373. background: url(../images/actions_left.png) no-repeat top left;
  374. cursor: pointer;
  375. }
  376. div.itop_popup > ul > li {
  377. float: left;
  378. list-style: none;
  379. font-size: 11px;
  380. font-family: Tahoma,sans-serif;
  381. height: 19px;
  382. padding-right: 16px;
  383. padding-left: 4px;
  384. background: url(../images/actions_right.png) no-repeat top right transparent;
  385. font-weight: bold;
  386. color: #fff;
  387. vertical-align: middle;
  388. }
  389. #logOffBtn > ul > li {
  390. list-style: none;
  391. vertical-align: middle;
  392. margin: 0;
  393. padding: 0;
  394. }
  395. #logOffBtn > ul {
  396. list-style: none;
  397. vertical-align: middle;
  398. margin: 0;
  399. padding: 0;
  400. height: 25px;
  401. noline-height: 25px;
  402. }
  403. .itop_popup li a, #logOffBtn li a {
  404. display: block;
  405. padding: 5px 12px;
  406. text-decoration: none;
  407. nowidth: 70px;
  408. color: #000;
  409. font-weight: bold;
  410. white-space: nowrap;
  411. background: #fff;
  412. }
  413. #logOffBtn li span {
  414. display: block;
  415. padding: 5px 12px;
  416. text-decoration: none;
  417. nowidth: 70px;
  418. color: #000;
  419. white-space: nowrap;
  420. background: #fff;
  421. }
  422. .itop_popup li a:hover, #logOffBtn li a:hover {
  423. background: #1A4473;
  424. }
  425. .itop_popup ul > li > ul, #logOffBtn ul > li > ul
  426. {
  427. border: 1px solid black;
  428. background: #fff;
  429. }
  430. .itop_popup li > ul, #logOffBtn li > ul
  431. { margin: 0;
  432. padding: 0;
  433. position: absolute;
  434. display: none;
  435. border-top: 1px solid white;
  436. z-index: 999;
  437. }
  438. .itop_popup li ul li, #logOffBtn li ul li {
  439. float: none;
  440. display: inline;
  441. }
  442. .itop_popup li ul li a, #logOffBtn li ul li a {
  443. width: auto;
  444. text-align: left;
  445. }
  446. .itop_popup li ul li a:hover, #logOffBtn li ul li a:hover{
  447. background: #D81515;
  448. color: #fff;
  449. font-weight: bold;
  450. }
  451. hr.menu-separator {
  452. border: none 0;
  453. border-top: 1px solid #ccc;;
  454. color: #ccc;
  455. background-color: transparent;
  456. height: 1px;
  457. margin: 3px;
  458. cursor: default;
  459. }
  460. /************************************/
  461. .wizHeader {
  462. background: #1c94c4;
  463. padding: 15px;
  464. }
  465. .wizSeparator {
  466. float:left;
  467. background: #83b217;
  468. height: 29px;
  469. margin-top: 5px;
  470. }
  471. div.wizActiveStep {
  472. height: 29px;
  473. background: url(../images/wizActiveStepLeft.gif) no-repeat left;
  474. color: #d81515;
  475. padding-left: 8px;
  476. margin-top: 5px;
  477. vertical-align: middle;
  478. float: left;
  479. }
  480. div.wizActiveStep span {
  481. height: 29px;
  482. background: url(../images/wizActiveStepRight.gif) no-repeat top right;
  483. padding-right: 8px;
  484. padding-top: 8px;
  485. float:left;
  486. }
  487. div.wizStep {
  488. height: 29px;
  489. background: url(../images/wizStepLeft.gif) no-repeat left;
  490. padding-left: 8px;
  491. vertical-align: middle;
  492. margin-top: 5px;
  493. float:left;
  494. }
  495. div.wizStep span {
  496. height: 29px;
  497. background: url(../images/wizStepRight.gif) no-repeat top right;
  498. padding-right: 8px;
  499. padding-top: 8px;
  500. float:left;
  501. }
  502. .wizContainer {
  503. border: 5px solid #1c94c4;
  504. background: #d6e8ef;
  505. padding: 5px;
  506. }
  507. .wizContainer table tr td {
  508. background: transparent;
  509. }
  510. .alignRight {
  511. text-align: right;
  512. padding: 3px;
  513. }
  514. .alignLeft {
  515. text-align: left;
  516. padding: 3px;
  517. }
  518. .red {
  519. background-color: #ff6000;
  520. color: #000;
  521. }
  522. th.red {
  523. background: url(../images/red-header.gif) bottom left repeat-x;
  524. color: #000;
  525. }
  526. .green {
  527. background-color: #00cc00;
  528. color: #000;
  529. }
  530. th.green {
  531. background: url(../images/green-header.gif) bottom left repeat-x;
  532. color: #000;
  533. }
  534. .orange {
  535. background-color: #ffde00;
  536. color: #000;
  537. }
  538. th.orange {
  539. background: url(../images/orange-header.gif) bottom left repeat-x;
  540. color: #000;
  541. }
  542. /* For Date Picker: Creates a little calendar icon
  543. * instead of a text link for "Choose date"
  544. */
  545. 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 {
  546. float: left;
  547. width: 16px;
  548. height: 16px;
  549. padding: 0;
  550. margin: 5px 3px 0;
  551. display: block;
  552. text-indent: -2000px;
  553. overflow: hidden;
  554. background: url(../images/calendar.png) no-repeat;
  555. }
  556. td a.dp-choose-date.dp-disabled, a.dp-choose-date.dp-disabled {
  557. background-position: 0 -20px;
  558. cursor: default;
  559. }
  560. /* For Date Picker: makes the input field shorter once the date picker code
  561. * has run (to allow space for the calendar icon)
  562. */
  563. input.dp-applied {
  564. width: 140px;
  565. float: left;
  566. }
  567. /* For search forms */
  568. .SearchDrawer {
  569. //background: #1c94c4 url(../images/search-top-left-corner.png) top left no-repeat;
  570. border-top: 5px solid #1c94c4;
  571. border-left: 5px solid #1c94c4;
  572. border-right: 5px solid #1c94c4;
  573. border-bottom: 0;
  574. background: #d6e8ef;
  575. color: #000;
  576. padding: 10px;
  577. margin: 0;
  578. font-size: 12px;
  579. }
  580. .SearchDrawer label {
  581. background: #d6e8ef;
  582. color: #000;
  583. }
  584. .SearchDrawer h1 {
  585. color: #000;
  586. }
  587. .DrawerClosed {
  588. display: none;
  589. }
  590. .DrawerHandle {
  591. margin: 0;
  592. padding: 5px;
  593. background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
  594. color: #fff;
  595. cursor: pointer;
  596. text-align: center;
  597. /* center the block */
  598. width: 100px;
  599. margin-left: auto;
  600. margin-right: auto;
  601. margin-top: 0;
  602. margin-bottom: 0;
  603. display: block;
  604. font-size: 12px;
  605. }
  606. div.HRDrawer {
  607. height: 5px;
  608. width: 100%;
  609. margin: 0;
  610. background-color: #1c94c4;
  611. margin: 0;
  612. padding: 0;
  613. border: 0;
  614. display: block;
  615. }
  616. .mini_tabs a {
  617. text-decoration: none;
  618. font-weight:bold;
  619. color: #ccc;
  620. background-color:#333;
  621. padding-left: 1em;
  622. padding-right: 1em;
  623. padding-bottom: 0.25em;
  624. }
  625. .mini_tabs a.selected {
  626. color: #fff;
  627. background-color: #1c94c4;
  628. padding-top: 0.25em;
  629. }
  630. .mini_tabs ul {
  631. margin: -10px;
  632. }
  633. .mini_tabs ul li {
  634. float: right;
  635. list-style: none;
  636. nopadding-left: 1em;
  637. nopadding-right: 1em;
  638. margin-top: 0;
  639. }
  640. .mandatory {
  641. border: 1px solid #f00;
  642. }
  643. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  644. table.listResults tr.odd td.truncated, table.listResults tr td.truncated, .wizContainer table.listResults tr.odd td.truncated, .wizContainer table.listResults tr td.truncated {
  645. background: url(../images/truncated.png) bottom repeat-x;
  646. }
  647. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  648. table.listResults tr.even td.truncated, .wizContainer table.listResults tr.even td.truncated {
  649. background: #f9f9f1 url(../images/truncated.png) bottom repeat-x;
  650. }
  651. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  652. table.listResults tr.even td.hover.truncated, , .wizContainer table.listResults tr.even td.hover.truncated {
  653. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  654. }
  655. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  656. 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 {
  657. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  658. }
  659. table.listResults.truncated {
  660. border-bottom: 0;
  661. padding-bottom: 0;
  662. }
  663. tr.csv_row0 td {
  664. padding-top:5px;
  665. padding-bottom:5px;
  666. padding-left:10px;
  667. padding-right:10px;
  668. background: #fff;
  669. border-left: #000 1px solid;
  670. }
  671. tr.csv_row1 td {
  672. padding-top:5px;
  673. padding-bottom:5px;
  674. padding-left:10px;
  675. padding-right:10px;
  676. background: #f9f9f1;
  677. border-left: #000 1px solid;
  678. }
  679. tr.csv_row1 th, tr.csv_row0 th {
  680. padding-top:5px;
  681. padding-bottom:5px;
  682. padding-left:10px;
  683. padding-right:10px;
  684. border-left: #000 1px solid;
  685. }
  686. td.cell_modified {
  687. font-weight: bold;
  688. color: #000;
  689. }
  690. td.cell_error {
  691. font-weight: bold;
  692. color: #D81515;
  693. }
  694. table.transparent, table.transparent td {
  695. background: transparent;
  696. }
  697. p.page-header {
  698. color:#1c94c4;
  699. font-weight: bold;
  700. font-size: 12pt;
  701. font-family: Verdana, Arial, Helvetica, Sans-Serif
  702. }
  703. td.dashboard {
  704. vertical-align:top;
  705. text-align: center;
  706. border: 1px solid #ccc;
  707. -moz-border-radius: 10px;
  708. padding: 10px;
  709. width: 50%;
  710. }
  711. .white {
  712. background-color: #fff;
  713. }
  714. /*** New Lacanau layout ***/
  715. .ui-layout-pane { /* all 'panes' */
  716. background: #FFF;
  717. overflow: auto;
  718. }
  719. .ui-layout-resizer { /* all 'resizer-bars' */
  720. background: #DDD;
  721. }
  722. .ui-layout-toggler { /* all 'toggler-buttons' */
  723. background: #AAA;
  724. }
  725. div#top-left {
  726. width: 28px;
  727. height: 70px;
  728. background: #f6f6f1 url(../images/top-left-bkg.png) top left no-repeat;
  729. float:left;
  730. }
  731. div#header-logo {
  732. width: 100%;
  733. height: 70px;
  734. background: #f6f6f1 url(../images/splitter-top.png) top repeat-x;
  735. }
  736. .ui-layout-pane-west {
  737. background: #f6f6f1 url(../images/left-bkg.png) left repeat-y;
  738. }
  739. div#right {
  740. min-width: 260px;
  741. }
  742. div#menu {
  743. width: 100%;
  744. }
  745. .header-menu {
  746. padding-left: 24px;
  747. padding-right: 8px;
  748. padding-bottom: 24px;
  749. background: transparent;
  750. }
  751. div#inner_menu {
  752. padding-left: 24px;
  753. padding-right: 8px;
  754. background: transparent;
  755. }
  756. div#logo {
  757. height: 70px;
  758. nowidth: 100%;
  759. text-align: center;
  760. }
  761. div#logo div {
  762. height: 88px;
  763. width: 244px;
  764. background: url(../images/itop-logo-2.png) left no-repeat;
  765. }
  766. #top-bar {
  767. height: 55px;
  768. background: url(../images/banner-bkg.png) repeat-x scroll 0 0 transparent;
  769. text-align: right;
  770. }
  771. #admin-banner {
  772. float: left;
  773. margin-top: 2px;
  774. padding: 8px;
  775. border: 1px solid #c33;
  776. background-color: #fee;
  777. -moz-border-radius: 0.5em;
  778. }
  779. #global-search {
  780. height: 55px;
  781. float: right;
  782. background: url(../images/banner-search.png) no-repeat;
  783. nopadding-top: 15px;
  784. text-align: right;
  785. overflow-y: hidden;
  786. }
  787. #global-search > form div {
  788. padding-left: 4px;
  789. }
  790. #global-search table, #global-search tr td, #global-search tr {
  791. padding: 0;
  792. border: 0;
  793. height: 55px;
  794. margin: 0;
  795. background: transparent;
  796. overflow-y: hidden;
  797. vertical-align: middle;
  798. }
  799. #global-search > form input[type="text"] {
  800. border: 0;
  801. height: 18px;
  802. width: 180px;
  803. padding-top: 4;
  804. background: transparent;
  805. }
  806. #global-search > form tr td#g-search-input {
  807. padding-top: 3px;
  808. padding-left: 3px;
  809. background: transparent;
  810. }
  811. div.icon {
  812. width: 20px;
  813. height: 20px;
  814. margin: 2px;
  815. float: right;
  816. }
  817. span.ui-icon {
  818. float:left;
  819. margin:0 2px;
  820. }
  821. .ui-layout-button-pin-down {
  822. background: url(../images/splitter-bkg.png) transparent;
  823. width: 16px;
  824. background-position: -144px -144px;
  825. }
  826. .ui-layout-resizer-west-open {
  827. background: url(../images/splitter-bkg.png) repeat-y scroll 0 0 transparent;
  828. width: 16px;
  829. }
  830. div.footer img {
  831. border: 0;
  832. margin-bottom: 5px;
  833. margin-top: 5px;
  834. }
  835. div.footer{
  836. text-align:center;
  837. }
  838. #SearchResultsToAdd table.listResults tbody {
  839. height: 300px;
  840. overflow-y: auto;
  841. }
  842. tr.row_unchanged td {
  843. border-bottom: 1px #ccc solid;
  844. padding: 2px;
  845. }
  846. .wizContainer table tr.row_error td {
  847. border-bottom: 1px #ccc solid;
  848. background-color: #fdd;
  849. padding: 2px;
  850. }
  851. tr.row_modified td {
  852. border-bottom: 1px #ccc solid;
  853. padding: 2px;
  854. }
  855. tr.row_added td {
  856. border-bottom: 1px #ccc solid;
  857. padding: 2px;
  858. }
  859. a.truncated {
  860. cursor: pointer;
  861. }
  862. .org_combo
  863. {
  864. font-size:x-small;
  865. width: auto;
  866. max-width: 200px;
  867. }
  868. span.form_validation {
  869. width:24px;
  870. text-align:center;
  871. }
  872. .notification {
  873. border: 1px solid #c33;
  874. background-color: #fee;
  875. padding: 0.5em;
  876. margin: 0.5em;
  877. text-align:center;
  878. width: 95%;
  879. -moz-border-radius: 0.5em;
  880. }
  881. .wiki_broken_link {
  882. text-decoration: line-through;
  883. }
  884. .synoptics, .synoptics tr td {
  885. background: transparent;
  886. padding:10px;
  887. font-size:1em;
  888. vertical-align:middle;
  889. color:#fff;
  890. text-align:center;
  891. }
  892. .synoptics tr td.arrow {
  893. color:#333;
  894. border-top: 1px dashed #333;
  895. width:100px;
  896. }
  897. .synoptics tr.synoptics_header td {
  898. color:#000; font-size:1em;
  899. vertical-align:middle;
  900. text-align:center;
  901. }
  902. .mono_value {
  903. display: inline-block;
  904. background-color: #3c3;
  905. color: #fff;
  906. font-weight:bold;
  907. padding: 3px;
  908. padding-left: 5px;
  909. padding-right: 5px;
  910. margin-left:3px;
  911. -moz-border-radius: 10px;
  912. -webkit-border-radius: 10px;
  913. border-radius: 10px;
  914. }
  915. .multi_values {
  916. display: inline-block;
  917. background-color: #c33;
  918. color: #fff;
  919. font-weight:bold;
  920. padding: 3px;
  921. padding-left: 5px;
  922. padding-right: 5px;
  923. margin-left:3px;
  924. -moz-border-radius: 10px;
  925. -webkit-border-radius: 10px;
  926. border-radius: 10px;
  927. }
  928. .caselog {
  929. overflow-x: hidden;
  930. display: block;
  931. overflow-y: auto;
  932. border: 1px #ddd solid;
  933. font-family: Tahoma, Verdana, Arial, Helvetica;
  934. font-size: 12px;
  935. }
  936. .caselog_input_header {
  937. padding-top:3px;
  938. padding-bottom:3px;
  939. border-top:1px solid #fff;
  940. background: #ddd;
  941. width:100%;
  942. }
  943. .caselog_header {
  944. padding:3px;
  945. border-top:1px solid #fff;
  946. background: #ddd url(../images/plus.gif) left no-repeat;
  947. padding-left: 16px;
  948. cursor: pointer;
  949. width:100%;
  950. }
  951. .caselog_header.open {
  952. background: #ddd url(../images/minus.gif) left no-repeat;
  953. }
  954. .caselog_entry {
  955. padding:3px;
  956. padding-left: 16px;
  957. border-bottom:1px #999 solid;
  958. margin-left:0;
  959. margin-right:0;
  960. white-space: pre-wrap; /* css-3 */
  961. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  962. white-space: -pre-wrap; /* Opera 4-6 */
  963. white-space: -o-pre-wrap; /* Opera 7 */
  964. word-wrap: break-word; /* Internet Explorer 5.5+, CSS3 */
  965. }
  966. table.details {
  967. border-collapse: collapse;
  968. noborder-bottom: 2px #fff solid;
  969. width:100%;
  970. }
  971. table.details>tbody>tr>td {
  972. border-bottom: 2px #ddd solid;
  973. padding-bottom: 5px;
  974. padding-top: 3px;
  975. }
  976. fieldset table.details>tbody>tr>td {
  977. padding-top: 3px;
  978. background: transparent;
  979. border: 0;
  980. }
  981. .ac_dlg_loading {
  982. background: white url('../images/indicator.gif') right center no-repeat;
  983. }
  984. table.pagination {
  985. display:inline-block;
  986. }
  987. table.pagination tr td {
  988. padding: 3px;
  989. }
  990. .pager {
  991. float:left;
  992. }
  993. .pager p {
  994. margin-top: 0;
  995. margin-bottom: 0;
  996. }
  997. .pager td span {
  998. min-width: 20px;
  999. display:inline-block;
  1000. text-align: center;
  1001. cursor: pointer;
  1002. }
  1003. .pager td span.curr_page {
  1004. color: #fff;
  1005. background: #999;
  1006. -moz-border-radius: 4px;
  1007. -webkit-border-radius: 4px;
  1008. border-radius: 4px;
  1009. }
  1010. img.prev, img.first, img.next, img.last {
  1011. cursor: pointer;
  1012. }