light-grey.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  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. }
  370. .itop_popup li ul li, #logOffBtn li ul li {
  371. float: none;
  372. display: inline;
  373. }
  374. .itop_popup li ul li a, #logOffBtn li ul li a {
  375. width: auto;
  376. text-align: left;
  377. }
  378. .itop_popup li ul li a:hover, #logOffBtn li ul li a:hover{
  379. background: #D81515;
  380. color: #fff;
  381. font-weight: bold;
  382. }
  383. /************************************/
  384. .wizHeader {
  385. background: #1c94c4;
  386. padding: 15px;
  387. }
  388. .wizSeparator {
  389. float:left;
  390. background: #83b217;
  391. height: 29px;
  392. margin-top: 5px;
  393. }
  394. div.wizActiveStep {
  395. height: 29px;
  396. background: url(../images/wizActiveStepLeft.gif) no-repeat left;
  397. color: #d81515;
  398. padding-left: 8px;
  399. margin-top: 5px;
  400. vertical-align: middle;
  401. float: left;
  402. }
  403. div.wizActiveStep span {
  404. height: 29px;
  405. background: url(../images/wizActiveStepRight.gif) no-repeat top right;
  406. padding-right: 8px;
  407. padding-top: 8px;
  408. float:left;
  409. }
  410. div.wizStep {
  411. height: 29px;
  412. background: url(../images/wizStepLeft.gif) no-repeat left;
  413. padding-left: 8px;
  414. vertical-align: middle;
  415. margin-top: 5px;
  416. float:left;
  417. }
  418. div.wizStep span {
  419. height: 29px;
  420. background: url(../images/wizStepRight.gif) no-repeat top right;
  421. padding-right: 8px;
  422. padding-top: 8px;
  423. float:left;
  424. }
  425. .wizContainer {
  426. border: 5px solid #1c94c4;
  427. background: #d6e8ef;
  428. padding: 5px;
  429. }
  430. .wizContainer table tr td {
  431. background: transparent;
  432. }
  433. .alignRight {
  434. text-align: right;
  435. padding: 3px;
  436. }
  437. .alignLeft {
  438. text-align: left;
  439. padding: 3px;
  440. }
  441. .red {
  442. background-color: #ff6000;
  443. color: #000;
  444. }
  445. th.red {
  446. background: url(../images/red-header.gif) bottom left repeat-x;
  447. color: #000;
  448. }
  449. .green {
  450. background-color: #00cc00;
  451. color: #000;
  452. }
  453. th.green {
  454. background: url(../images/green-header.gif) bottom left repeat-x;
  455. color: #000;
  456. }
  457. .orange {
  458. background-color: #ffde00;
  459. color: #000;
  460. }
  461. th.orange {
  462. background: url(../images/orange-header.gif) bottom left repeat-x;
  463. color: #000;
  464. }
  465. /* For Date Picker: Creates a little calendar icon
  466. * instead of a text link for "Choose date"
  467. */
  468. 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 {
  469. float: left;
  470. width: 16px;
  471. height: 16px;
  472. padding: 0;
  473. margin: 5px 3px 0;
  474. display: block;
  475. text-indent: -2000px;
  476. overflow: hidden;
  477. background: url(../images/calendar.png) no-repeat;
  478. }
  479. td a.dp-choose-date.dp-disabled, a.dp-choose-date.dp-disabled {
  480. background-position: 0 -20px;
  481. cursor: default;
  482. }
  483. /* For Date Picker: makes the input field shorter once the date picker code
  484. * has run (to allow space for the calendar icon)
  485. */
  486. input.dp-applied {
  487. width: 140px;
  488. float: left;
  489. }
  490. /* For search forms */
  491. .SearchDrawer {
  492. //background: #1c94c4 url(../images/search-top-left-corner.png) top left no-repeat;
  493. border-top: 5px solid #1c94c4;
  494. border-left: 5px solid #1c94c4;
  495. border-right: 5px solid #1c94c4;
  496. border-bottom: 0;
  497. background: #d6e8ef;
  498. color: #000;
  499. padding: 10px;
  500. margin: 0;
  501. }
  502. .SearchDrawer form table tbody tr td {
  503. background: #d6e8ef;
  504. color: #fff;
  505. font-size: 10pt;
  506. }
  507. .SearchDrawer label {
  508. background: #d6e8ef;
  509. color: #000;
  510. padding-left: 10px;
  511. }
  512. .SearchDrawer h1 {
  513. color: #000;
  514. }
  515. .DrawerClosed {
  516. display: none;
  517. }
  518. .DrawerHandle {
  519. margin: 0;
  520. padding: 5px;
  521. background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
  522. color: #fff;
  523. cursor: pointer;
  524. text-align: center;
  525. /* center the block */
  526. width: 100px;
  527. margin-left: auto;
  528. margin-right: auto;
  529. margin-top: 0;
  530. margin-bottom: 0;
  531. display: block;
  532. }
  533. div.HRDrawer {
  534. height: 5px;
  535. width: 100%;
  536. margin: 0;
  537. background-color: #1c94c4;
  538. margin: 0;
  539. padding: 0;
  540. border: 0;
  541. display: block;
  542. }
  543. .mini_tabs a {
  544. text-decoration: none;
  545. font-weight:bold;
  546. color: #ccc;
  547. background-color:#333;
  548. padding-left: 1em;
  549. padding-right: 1em;
  550. padding-bottom: 0.25em;
  551. }
  552. .mini_tabs a.selected {
  553. color: #fff;
  554. background-color: #1c94c4;
  555. padding-top: 0.25em;
  556. }
  557. .mini_tabs ul {
  558. margin: -10px;
  559. }
  560. .mini_tabs ul li {
  561. float: right;
  562. list-style: none;
  563. nopadding-left: 1em;
  564. nopadding-right: 1em;
  565. margin-top: 0;
  566. }
  567. .mandatory {
  568. border: 1px solid #f00;
  569. }
  570. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  571. table.listResults tr.odd td.truncated {
  572. background: url(../images/truncated.png) bottom repeat-x;
  573. }
  574. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  575. table.listResults tr.even td.truncated {
  576. background: #f9f9f1 url(../images/truncated.png) bottom repeat-x;
  577. }
  578. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  579. table.listResults tr.even td.hover.truncated {
  580. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  581. }
  582. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  583. table.listResults tr.odd td.hover.truncated {
  584. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  585. }
  586. table.listResults.truncated {
  587. border-bottom: 0;
  588. padding-bottom: 0;
  589. }
  590. tr.csv_row0 td {
  591. padding-top:5px;
  592. padding-bottom:5px;
  593. padding-left:10px;
  594. padding-right:10px;
  595. background: #fff;
  596. border-left: #000 1px solid;
  597. }
  598. tr.csv_row1 td {
  599. padding-top:5px;
  600. padding-bottom:5px;
  601. padding-left:10px;
  602. padding-right:10px;
  603. background: #f9f9f1;
  604. border-left: #000 1px solid;
  605. }
  606. tr.csv_row1 th, tr.csv_row0 th {
  607. padding-top:5px;
  608. padding-bottom:5px;
  609. padding-left:10px;
  610. padding-right:10px;
  611. border-left: #000 1px solid;
  612. }
  613. td.cell_modified {
  614. font-weight: bold;
  615. color: #000;
  616. }
  617. td.cell_error {
  618. font-weight: bold;
  619. color: #D81515;
  620. }
  621. table.transparent, table.transparent td {
  622. background: transparent;
  623. }
  624. p.page-header {
  625. color:#1c94c4;
  626. font-weight: bold;
  627. font-size: 12pt;
  628. font-family: Verdana, Arial, Helvetica, Sans-Serif
  629. }
  630. td.dashboard {
  631. vertical-align:top;
  632. text-align: center;
  633. border: 1px solid #ccc;
  634. -moz-border-radius: 10px;
  635. padding: 10px;
  636. width: 50%;
  637. }
  638. .white {
  639. background-color: #fff;
  640. }
  641. /*** New Lacanau layout ***/
  642. .ui-layout-pane { /* all 'panes' */
  643. background: #FFF;
  644. overflow: auto;
  645. }
  646. .ui-layout-resizer { /* all 'resizer-bars' */
  647. background: #DDD;
  648. }
  649. .ui-layout-toggler { /* all 'toggler-buttons' */
  650. background: #AAA;
  651. }
  652. div#top-left {
  653. width: 28px;
  654. height: 70px;
  655. background: #f6f6f1 url(../images/top-left-bkg.png) top left no-repeat;
  656. float:left;
  657. }
  658. div#header-logo {
  659. width: 100%;
  660. height: 70px;
  661. background: #f6f6f1 url(../images/splitter-top.png) top repeat-x;
  662. }
  663. .ui-layout-pane-west {
  664. background: #f6f6f1 url(../images/left-bkg.png) left repeat-y;
  665. }
  666. div#right {
  667. min-width: 260px;
  668. }
  669. div#menu {
  670. width: 100%;
  671. }
  672. .header-menu {
  673. padding-left: 24px;
  674. padding-right: 8px;
  675. padding-bottom: 24px;
  676. background: transparent;
  677. }
  678. div#inner_menu {
  679. padding-left: 24px;
  680. padding-right: 8px;
  681. background: transparent;
  682. }
  683. div#logo {
  684. height: 70px;
  685. width: 100%;
  686. text-align: center;
  687. }
  688. div#logo div {
  689. height: 88px;
  690. width: 244px;
  691. background: url(../images/itop-logo-2.png) left no-repeat;
  692. }
  693. #top-bar {
  694. height: 55px;
  695. background: url(../images/banner-bkg.png) repeat-x scroll 0 0 transparent;
  696. text-align: right;
  697. }
  698. #global-search {
  699. height: 55px;
  700. float: right;
  701. background: url(../images/banner-search.png) no-repeat left;
  702. nopadding-top: 15px;
  703. text-align: right;
  704. overflow-y: hidden;
  705. }
  706. #global-search > form div {
  707. padding-left: 4px;
  708. }
  709. #global-search table, #global-search tr td, #global-search tr {
  710. padding: 0;
  711. border: 0;
  712. height: 55px;
  713. margin: 0;
  714. background: transparent;
  715. overflow-y: hidden;
  716. vertical-align: middle;
  717. }
  718. #global-search > form input[type="text"] {
  719. border: 0;
  720. height: 18px;
  721. width: 180px;E8FFD3
  722. padding-top: 4;
  723. background: transparent;
  724. }
  725. #global-search > form tr td#g-search-input {
  726. padding-top: 3px;
  727. padding-left: 3px;
  728. background: transparent;
  729. }
  730. div.icon {
  731. width: 20px;
  732. height: 20px;
  733. margin: 2px;
  734. float: right;
  735. }
  736. span.ui-icon {
  737. float:left;
  738. margin:0 2px;
  739. }
  740. .ui-layout-button-pin-down {
  741. background: url(../images/splitter-bkg.png) transparent;
  742. width: 16px;
  743. background-position: -144px -144px;
  744. }
  745. .ui-layout-resizer-west-open {
  746. background: url(../images/splitter-bkg.png) repeat-y scroll 0 0 transparent;
  747. width: 16px;
  748. }
  749. div.footer {
  750. height: 123px;
  751. background: url(../images/logo-combodo.png) center no-repeat;
  752. }
  753. div.footer > span {
  754. display:none;
  755. }
  756. #SearchResultsToAdd table.listResults tbody {
  757. height: 300px;
  758. overflow-y: auto;
  759. }