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.

debug.css 864B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. Styles for ajax adapter debug window.
  3. */
  4. body {
  5. overflow: scroll;
  6. }
  7. * {
  8. font-size: 10pt;
  9. font-family: sans-serif;
  10. }
  11. xmp {
  12. margin: 0px;
  13. padding: 0px;
  14. }
  15. .folded {
  16. margin-top: 4px;
  17. background-color: #eeeeee;
  18. background-image: url(img/on.gif);
  19. background-repeat: no-repeat;
  20. border: 1px dotted gray;
  21. padding-left: 20px;
  22. height: 20px;
  23. width: 100%;
  24. overflow: hidden;
  25. cursor: hand;
  26. cursor: pointer;
  27. }
  28. .unfolded {
  29. margin-top: 4px;
  30. background-color: #eeeeee;
  31. background-image: url(img/off.gif);
  32. background-repeat: no-repeat;
  33. border: 1px dotted gray;
  34. padding-left: 20px;
  35. height:;
  36. width: 100%;
  37. overflow: hidden;
  38. cursor: hand;
  39. cursor: pointer;
  40. }
  41. .normal {
  42. margin-top: 4px;
  43. border-top: 1px dotted gray;
  44. width: 100%;
  45. }
  46. .error {
  47. border: 1px solid red;
  48. }