light-grey.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  1. /* CSS Document */
  2. body {
  3. font-family: Tahoma, Verdana, Arial, Helevtica;
  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, 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. 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: 8pt;
  118. color:#696969;
  119. background-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. font-family: Tahoma, Verdana, Arial, Helvetica;
  129. font-size: 12px;
  130. color: #000000;
  131. background-color:#f6f6f6;
  132. padding: 0.25em;
  133. font-weight:bold;
  134. }
  135. .ui-widget-content td a, p a, p a:visited, td a, td a:visited {
  136. text-decoration:none;
  137. color: #1C94C4;
  138. padding-left:14px;
  139. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  140. }
  141. p a:hover, td a:hover {
  142. text-decoration:underline;
  143. color:#EB8F00;
  144. padding-left:14px;
  145. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  146. }
  147. td a.no-arrow, td a.no-arrow:visited {
  148. text-decoration:none;
  149. color:#000000;
  150. padding-left:0px;
  151. background: inherit;
  152. }
  153. td a.no-arrow:hover {
  154. text-decoration:underline;
  155. color:#d81515;
  156. padding-left:0px;
  157. background: inherit;
  158. }
  159. a.small_action {
  160. font-family: Tahoma, Verdana, Arial, Helvetica;
  161. font-size: 8pt;
  162. color: #000000;
  163. text-decoration:none;
  164. }
  165. .display_block {
  166. padding:0.25em;
  167. }
  168. .actions_details {
  169. float:right;
  170. margin-top:10px;
  171. margin-right:10px;
  172. padding-left: 5px;
  173. padding-top: 2px;
  174. padding-bottom: 2px;
  175. background: url(../images/actions_left.png) no-repeat left;
  176. }
  177. .actions_details span{
  178. background: url(../images/actions_right.png) no-repeat right;
  179. color: #fff;
  180. font-weight: bold;
  181. padding-top: 2px;
  182. padding-bottom: 2px;
  183. padding-right: 12px;
  184. }
  185. .actions_details a {
  186. text-decoration:none;
  187. }
  188. .loading {
  189. noborder: 1px dashed #CCC;
  190. background: #b9c1c8;
  191. padding:0.25em;
  192. }
  193. input.textSearch {
  194. border:1px solid #000;
  195. font-family:Tahoma,Verdana, Arial, Helvetica, sans-serif;
  196. font-size: 12px;
  197. color:#000000;
  198. }
  199. .ac_input {
  200. border: 1px solid #7f9db9;
  201. background: #fff url(../images/ac-background.gif) no-repeat right;
  202. }
  203. /* By Rom */
  204. .csvimport_createobj {
  205. color: #AA0000;
  206. background-color:#EEEEEE;
  207. }
  208. .csvimport_error {
  209. font-weight: bold;
  210. color: #FF0000;
  211. background-color:#EEEEEE;
  212. }
  213. .csvimport_warning {
  214. color: #CC8888;
  215. background-color:#EEEEEE;
  216. }
  217. .csvimport_ok {
  218. color: #00000;
  219. background-color:#BBFFBB;
  220. }
  221. .csvimport_reconkey {
  222. font-style: italic;
  223. color: #888888;
  224. background-color:#FFFFF;
  225. }
  226. .csvimport_extreconkey {
  227. color: #888888;
  228. background-color:#FFFFFF;
  229. }
  230. #accordion h3 {
  231. padding: 10px;
  232. }
  233. .ui-accordion-content ul {
  234. list-style:none;
  235. padding-left:16px;
  236. margin-top: 8px;
  237. }
  238. .ui-accordion-content li.submenu {
  239. margin-top: 8px;
  240. }
  241. .ui-accordion-content ul ul {
  242. padding: 8px 0px 8px 8px;
  243. margin:0;
  244. list-style:none;
  245. border: 0;
  246. }
  247. .nothing {
  248. noborder-top: 1px solid #8b8b8b;
  249. padding: 4px 0px 0px 16px;
  250. font-size:8pt;
  251. background: url(../images/green-square.gif) no-repeat bottom left;
  252. color:#83b217;
  253. font-weight:bold;
  254. text-decoration:none;
  255. }
  256. div.ui-accordion-content {
  257. padding-top: 10px;
  258. padding-left: 10px;
  259. }
  260. .ui-accordion-content a, ui-accordion-content a:visited {
  261. color: #1C94C4;
  262. text-decoration:none;
  263. }
  264. .ui-accordion-content a:hover {
  265. color: #EB8F00;
  266. text-decoration: none;
  267. }
  268. .ui-accordion-content p {
  269. color:#8b8b8b;
  270. text-decoration:none;
  271. margin: 0;
  272. padding-bottom: 1px;
  273. font-size: 9pt;
  274. font-weight:normal;
  275. border: 0;
  276. }
  277. .ui-accordion-content ul {
  278. padding-left: 0;
  279. margin-top: 0;
  280. }
  281. .ui-accordion-content li {
  282. color:#8b8b8b;
  283. text-decoration:none;
  284. margin: 0;
  285. padding: 0px 0pt 0px 16px;
  286. font-size: 9pt;
  287. background: url(../images/mini-arrow-orange.gif) no-repeat top left;
  288. font-weight:normal;
  289. border: 0;
  290. }
  291. a.CollapsibleLabel, td a.CollapsibleLabel {
  292. margin: 0;
  293. padding: 0px 0pt 0px 16px;
  294. font-size:8pt;
  295. text-decoration:none;
  296. color:#8b8b8b;
  297. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  298. }
  299. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  300. a.CollapsibleLabel.open, td a.CollapsibleLabel.open {
  301. margin: 0;
  302. padding: 0px 0pt 0px 16px;
  303. font-size:8pt;
  304. text-decoration:none;
  305. color: #EB8F00;
  306. background: url(../images/mini-arrow-orange-open.gif) no-repeat left;
  307. }
  308. .page_header {
  309. background-color:#f6f6f1;
  310. padding:5px;
  311. }
  312. .notreeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
  313. .notreeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
  314. .notreeview .expandable { background-image: url(../images/tv-expandable.gif); }
  315. .notreeview .last { background-image: url(../images/tv-item-last.gif); }
  316. .notreeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
  317. .notreeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
  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. #logOffBtn > ul > li {
  349. list-style: none;
  350. vertical-align: middle;
  351. margin: 0;
  352. padding: 0;
  353. }
  354. #logOffBtn > ul {
  355. list-style: none;
  356. vertical-align: middle;
  357. margin: 0;
  358. padding: 0;
  359. height: 25px;
  360. noline-height: 25px;
  361. }
  362. .itop_popup li a, #logOffBtn li a {
  363. display: block;
  364. padding: 5px 12px;
  365. text-decoration: none;
  366. nowidth: 70px;
  367. color: #000;
  368. font-weight: bold;
  369. white-space: nowrap;
  370. background: #fff;
  371. }
  372. #logOffBtn li span {
  373. display: block;
  374. padding: 5px 12px;
  375. text-decoration: none;
  376. nowidth: 70px;
  377. color: #000;
  378. white-space: nowrap;
  379. background: #fff;
  380. }
  381. .itop_popup li a:hover, #logOffBtn li a:hover {
  382. background: #1A4473;
  383. }
  384. .itop_popup ul > li > ul, #logOffBtn ul > li > ul
  385. {
  386. border: 1px solid black;
  387. background: #fff;
  388. }
  389. .itop_popup li > ul, #logOffBtn li > ul
  390. { margin: 0;
  391. padding: 0;
  392. position: absolute;
  393. display: none;
  394. border-top: 1px solid white;
  395. z-index: 999;
  396. }
  397. .itop_popup li ul li, #logOffBtn li ul li {
  398. float: none;
  399. display: inline;
  400. }
  401. .itop_popup li ul li a, #logOffBtn li ul li a {
  402. width: auto;
  403. text-align: left;
  404. }
  405. .itop_popup li ul li a:hover, #logOffBtn li ul li a:hover{
  406. background: #D81515;
  407. color: #fff;
  408. font-weight: bold;
  409. }
  410. /************************************/
  411. .wizHeader {
  412. background: #1c94c4;
  413. padding: 15px;
  414. }
  415. .wizSeparator {
  416. float:left;
  417. background: #83b217;
  418. height: 29px;
  419. margin-top: 5px;
  420. }
  421. div.wizActiveStep {
  422. height: 29px;
  423. background: url(../images/wizActiveStepLeft.gif) no-repeat left;
  424. color: #d81515;
  425. padding-left: 8px;
  426. margin-top: 5px;
  427. vertical-align: middle;
  428. float: left;
  429. }
  430. div.wizActiveStep span {
  431. height: 29px;
  432. background: url(../images/wizActiveStepRight.gif) no-repeat top right;
  433. padding-right: 8px;
  434. padding-top: 8px;
  435. float:left;
  436. }
  437. div.wizStep {
  438. height: 29px;
  439. background: url(../images/wizStepLeft.gif) no-repeat left;
  440. padding-left: 8px;
  441. vertical-align: middle;
  442. margin-top: 5px;
  443. float:left;
  444. }
  445. div.wizStep span {
  446. height: 29px;
  447. background: url(../images/wizStepRight.gif) no-repeat top right;
  448. padding-right: 8px;
  449. padding-top: 8px;
  450. float:left;
  451. }
  452. .wizContainer {
  453. border: 5px solid #1c94c4;
  454. background: #d6e8ef;
  455. padding: 5px;
  456. }
  457. .wizContainer table tr td {
  458. background: transparent;
  459. }
  460. .alignRight {
  461. text-align: right;
  462. padding: 3px;
  463. }
  464. .alignLeft {
  465. text-align: left;
  466. padding: 3px;
  467. }
  468. .red {
  469. background-color: #ff6000;
  470. color: #000;
  471. }
  472. th.red {
  473. background: url(../images/red-header.gif) bottom left repeat-x;
  474. color: #000;
  475. }
  476. .green {
  477. background-color: #00cc00;
  478. color: #000;
  479. }
  480. th.green {
  481. background: url(../images/green-header.gif) bottom left repeat-x;
  482. color: #000;
  483. }
  484. .orange {
  485. background-color: #ffde00;
  486. color: #000;
  487. }
  488. th.orange {
  489. background: url(../images/orange-header.gif) bottom left repeat-x;
  490. color: #000;
  491. }
  492. /* For Date Picker: Creates a little calendar icon
  493. * instead of a text link for "Choose date"
  494. */
  495. 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 {
  496. float: left;
  497. width: 16px;
  498. height: 16px;
  499. padding: 0;
  500. margin: 5px 3px 0;
  501. display: block;
  502. text-indent: -2000px;
  503. overflow: hidden;
  504. background: url(../images/calendar.png) no-repeat;
  505. }
  506. td a.dp-choose-date.dp-disabled, a.dp-choose-date.dp-disabled {
  507. background-position: 0 -20px;
  508. cursor: default;
  509. }
  510. /* For Date Picker: makes the input field shorter once the date picker code
  511. * has run (to allow space for the calendar icon)
  512. */
  513. input.dp-applied {
  514. width: 140px;
  515. float: left;
  516. }
  517. /* For search forms */
  518. .SearchDrawer {
  519. //background: #1c94c4 url(../images/search-top-left-corner.png) top left no-repeat;
  520. border-top: 5px solid #1c94c4;
  521. border-left: 5px solid #1c94c4;
  522. border-right: 5px solid #1c94c4;
  523. border-bottom: 0;
  524. background: #d6e8ef;
  525. color: #000;
  526. padding: 10px;
  527. margin: 0;
  528. font-size: 12px;
  529. }
  530. .SearchDrawer label {
  531. background: #d6e8ef;
  532. color: #000;
  533. }
  534. .SearchDrawer h1 {
  535. color: #000;
  536. }
  537. .DrawerClosed {
  538. display: none;
  539. }
  540. .DrawerHandle {
  541. margin: 0;
  542. padding: 5px;
  543. background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
  544. color: #fff;
  545. cursor: pointer;
  546. text-align: center;
  547. /* center the block */
  548. width: 100px;
  549. margin-left: auto;
  550. margin-right: auto;
  551. margin-top: 0;
  552. margin-bottom: 0;
  553. display: block;
  554. font-size: 12px;
  555. }
  556. div.HRDrawer {
  557. height: 5px;
  558. width: 100%;
  559. margin: 0;
  560. background-color: #1c94c4;
  561. margin: 0;
  562. padding: 0;
  563. border: 0;
  564. display: block;
  565. }
  566. .mini_tabs a {
  567. text-decoration: none;
  568. font-weight:bold;
  569. color: #ccc;
  570. background-color:#333;
  571. padding-left: 1em;
  572. padding-right: 1em;
  573. padding-bottom: 0.25em;
  574. }
  575. .mini_tabs a.selected {
  576. color: #fff;
  577. background-color: #1c94c4;
  578. padding-top: 0.25em;
  579. }
  580. .mini_tabs ul {
  581. margin: -10px;
  582. }
  583. .mini_tabs ul li {
  584. float: right;
  585. list-style: none;
  586. nopadding-left: 1em;
  587. nopadding-right: 1em;
  588. margin-top: 0;
  589. }
  590. .mandatory {
  591. border: 1px solid #f00;
  592. }
  593. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  594. table.listResults tr.odd td.truncated, table.listResults tr td.truncated, .wizContainer table.listResults tr.odd td.truncated, .wizContainer table.listResults tr td.truncated {
  595. background: url(../images/truncated.png) bottom repeat-x;
  596. }
  597. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  598. table.listResults tr.even td.truncated, .wizContainer table.listResults tr.even td.truncated {
  599. background: #f9f9f1 url(../images/truncated.png) bottom repeat-x;
  600. }
  601. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  602. table.listResults tr.even td.hover.truncated, , .wizContainer table.listResults tr.even td.hover.truncated {
  603. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  604. }
  605. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  606. 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 {
  607. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  608. }
  609. table.listResults.truncated {
  610. border-bottom: 0;
  611. padding-bottom: 0;
  612. }
  613. tr.csv_row0 td {
  614. padding-top:5px;
  615. padding-bottom:5px;
  616. padding-left:10px;
  617. padding-right:10px;
  618. background: #fff;
  619. border-left: #000 1px solid;
  620. }
  621. tr.csv_row1 td {
  622. padding-top:5px;
  623. padding-bottom:5px;
  624. padding-left:10px;
  625. padding-right:10px;
  626. background: #f9f9f1;
  627. border-left: #000 1px solid;
  628. }
  629. tr.csv_row1 th, tr.csv_row0 th {
  630. padding-top:5px;
  631. padding-bottom:5px;
  632. padding-left:10px;
  633. padding-right:10px;
  634. border-left: #000 1px solid;
  635. }
  636. td.cell_modified {
  637. font-weight: bold;
  638. color: #000;
  639. }
  640. td.cell_error {
  641. font-weight: bold;
  642. color: #D81515;
  643. }
  644. table.transparent, table.transparent td {
  645. background: transparent;
  646. }
  647. p.page-header {
  648. color:#1c94c4;
  649. font-weight: bold;
  650. font-size: 12pt;
  651. font-family: Verdana, Arial, Helvetica, Sans-Serif
  652. }
  653. td.dashboard {
  654. vertical-align:top;
  655. text-align: center;
  656. border: 1px solid #ccc;
  657. -moz-border-radius: 10px;
  658. padding: 10px;
  659. width: 50%;
  660. }
  661. .white {
  662. background-color: #fff;
  663. }
  664. /*** New Lacanau layout ***/
  665. .ui-layout-pane { /* all 'panes' */
  666. background: #FFF;
  667. overflow: auto;
  668. }
  669. .ui-layout-resizer { /* all 'resizer-bars' */
  670. background: #DDD;
  671. }
  672. .ui-layout-toggler { /* all 'toggler-buttons' */
  673. background: #AAA;
  674. }
  675. div#top-left {
  676. width: 28px;
  677. height: 70px;
  678. background: #f6f6f1 url(../images/top-left-bkg.png) top left no-repeat;
  679. float:left;
  680. }
  681. div#header-logo {
  682. width: 100%;
  683. height: 70px;
  684. background: #f6f6f1 url(../images/splitter-top.png) top repeat-x;
  685. }
  686. .ui-layout-pane-west {
  687. background: #f6f6f1 url(../images/left-bkg.png) left repeat-y;
  688. }
  689. div#right {
  690. min-width: 260px;
  691. }
  692. div#menu {
  693. width: 100%;
  694. }
  695. .header-menu {
  696. padding-left: 24px;
  697. padding-right: 8px;
  698. padding-bottom: 24px;
  699. background: transparent;
  700. }
  701. div#inner_menu {
  702. padding-left: 24px;
  703. padding-right: 8px;
  704. background: transparent;
  705. }
  706. div#logo {
  707. height: 70px;
  708. width: 100%;
  709. text-align: center;
  710. }
  711. div#logo div {
  712. height: 88px;
  713. width: 244px;
  714. background: url(../images/itop-logo-2.png) left no-repeat;
  715. }
  716. #top-bar {
  717. height: 55px;
  718. background: url(../images/banner-bkg.png) repeat-x scroll 0 0 transparent;
  719. text-align: right;
  720. }
  721. #global-search {
  722. height: 55px;
  723. float: right;
  724. background: url(../images/banner-search.png) no-repeat left;
  725. nopadding-top: 15px;
  726. text-align: right;
  727. overflow-y: hidden;
  728. }
  729. #global-search > form div {
  730. padding-left: 4px;
  731. }
  732. #global-search table, #global-search tr td, #global-search tr {
  733. padding: 0;
  734. border: 0;
  735. height: 55px;
  736. margin: 0;
  737. background: transparent;
  738. overflow-y: hidden;
  739. vertical-align: middle;
  740. }
  741. #global-search > form input[type="text"] {
  742. border: 0;
  743. height: 18px;
  744. width: 180px;E8FFD3
  745. padding-top: 4;
  746. background: transparent;
  747. }
  748. #global-search > form tr td#g-search-input {
  749. padding-top: 3px;
  750. padding-left: 3px;
  751. background: transparent;
  752. }
  753. div.icon {
  754. width: 20px;
  755. height: 20px;
  756. margin: 2px;
  757. float: right;
  758. }
  759. span.ui-icon {
  760. float:left;
  761. margin:0 2px;
  762. }
  763. .ui-layout-button-pin-down {
  764. background: url(../images/splitter-bkg.png) transparent;
  765. width: 16px;
  766. background-position: -144px -144px;
  767. }
  768. .ui-layout-resizer-west-open {
  769. background: url(../images/splitter-bkg.png) repeat-y scroll 0 0 transparent;
  770. width: 16px;
  771. }
  772. div.footer img {
  773. border: 0;
  774. margin-bottom: 5px;
  775. margin-top: 5px;
  776. }
  777. div.footer{
  778. text-align:center;
  779. }
  780. #SearchResultsToAdd table.listResults tbody {
  781. height: 300px;
  782. overflow-y: auto;
  783. }