light-grey.css 17 KB

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