You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

69 lines
1.3 KiB

  1. #link__wiz {
  2. position: absolute;
  3. display: block;
  4. z-index: 99;
  5. width: 300px;
  6. height: 250px;
  7. padding: 0;
  8. margin: 0;
  9. overflow: hidden;
  10. border: 1px solid __border__;
  11. background-color: __background_neu__;
  12. text-align: center;
  13. }
  14. #link__wiz_header {
  15. background-color: __background_alt__;
  16. height: 16px;
  17. margin-bottom: 5px;
  18. }
  19. #link__wiz_close {
  20. cursor: pointer;
  21. margin: 0;
  22. }
  23. #link__wiz_result {
  24. background-color: __background__;
  25. width: 293px;
  26. height: 193px;
  27. overflow: auto;
  28. border: 1px solid __border__;
  29. margin: 3px auto;
  30. text-align: left;
  31. }
  32. #link__wiz_result div.type_u {
  33. padding: 3px 3px 3px 22px;
  34. background: transparent url(../../images/up.png) 3px 3px no-repeat;
  35. }
  36. #link__wiz_result div.type_f {
  37. padding: 3px 3px 3px 22px;
  38. background: transparent url(../../images/page.png) 3px 3px no-repeat;
  39. }
  40. #link__wiz_result div.type_d {
  41. padding: 3px 3px 3px 22px;
  42. background: transparent url(../../images/ns.png) 3px 3px no-repeat;
  43. }
  44. #link__wiz_result div.even {
  45. background-color: __background_neu__;
  46. }
  47. #link__wiz_result div.selected {
  48. background-color: __background_alt__;
  49. }
  50. #link__wiz_result span {
  51. display: block;
  52. color: __text_neu__;
  53. }
  54. /*FIXME maybe move to a more general style sheet*/
  55. .ondrag {
  56. cursor: move;
  57. opacity: 0.8;
  58. }