2
0

debug.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .debug-dum {
  2. background: #f4f4f4;
  3. padding: 10px;
  4. border: 1px solid #ddd;
  5. font-size: 14px;
  6. }
  7. #debugger-logs {
  8. position: fixed;
  9. z-index: 999;
  10. bottom: 0;
  11. left: 0;
  12. width: 100%;
  13. max-height: 90%;
  14. overflow-y: auto;
  15. background: #333;
  16. color: #fff;
  17. font-size: 12px;
  18. padding: 10px;
  19. display: none;
  20. }
  21. .debug-renderLogs-header {
  22. text-align: right;
  23. padding: 5px;
  24. }
  25. .debug-renderLogs-print {
  26. padding: 5px 0;
  27. }
  28. .debug-renderLogs-button {
  29. position: fixed;
  30. z-index: 999;
  31. bottom: 0;
  32. right: 0;
  33. background: #333;
  34. color: #fff;
  35. border: none;
  36. padding: 10px;
  37. cursor: pointer;
  38. }
  39. .debug-head-console {
  40. border-radius: 3px 3px 0 0;
  41. padding: 5px 10px;
  42. background-color:#b4b4b4;
  43. color:rgb(58, 58, 58);
  44. }
  45. .debug-console {
  46. border-radius: 0 0 3px 3px;
  47. background-color:#D3D3D3;
  48. padding: 10px;
  49. }
  50. .debug-console-key {
  51. color: blueviolet
  52. }
  53. .debug-console-value {
  54. color: red;
  55. }
  56. .debug-console-capsule {
  57. color: black;
  58. }
  59. .log-entry span.variable {
  60. color: #56b6c2;
  61. }
  62. .log-entry span.function {
  63. color: #61afef;
  64. }
  65. .debug-badge {
  66. padding:10px;
  67. font-size:1em;
  68. background-color:#343a40;
  69. text-decoration: none;
  70. color:white;
  71. }
  72. .debug-badge:hover {
  73. color:rgb(197, 197, 197);
  74. background-color:#485561;
  75. }