template.sql.inc 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <style>
  2. #sqlbox {
  3. position: absolute;
  4. right: 20px;
  5. bottom: 40px;
  6. width: 35px;
  7. height: 35px;
  8. overflow: auto;
  9. border-style: solid;
  10. border-color: #999933;
  11. border-width: 1px;
  12. scrollbar-face-color: #BBBB55;
  13. scrollbar-shadow-color: #BBBB55;
  14. scrollbar-highlight-color: #EEEE88;
  15. scrollbar-3dlight-color: #BBBB55;
  16. scrollbar-darkshadow-color: #BBBB55;
  17. scrollbar-track-color: #DDDD77;
  18. scrollbar-arrow-color: #000000;
  19. font-family: Courier New;
  20. font-size: 8pt;
  21. color: #000000;
  22. background-color: #EEEE88;
  23. padding: 3px;
  24. z-index: 10;
  25. cursor: default;
  26. text-align: left;
  27. }
  28. </style>
  29. <script language='JavaScript'>
  30. function sqlbox_show (obj)
  31. {
  32. if (obj.style.width != '500px')
  33. {
  34. obj.style.width = '500px';
  35. obj.style.height = '350px';
  36. }
  37. else
  38. {
  39. obj.style.width = '35px';
  40. obj.style.height = '35px';
  41. }
  42. }
  43. function sqlbox_hide (obj)
  44. {
  45. obj.style.display= 'none';
  46. }
  47. </script>
  48. <div id='sqlbox' onclick='sqlbox_show(this);' ondblclick='sqlbox_hide(this);'>
  49. <pre>
  50. <?php
  51. echo $sqlbox;
  52. ?>
  53. </pre>
  54. </div>