light-grey.css 17 KB

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