light-grey.css 24 KB

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