You are here

dBug.css in dBug for Drupal 8

Same filename and directory in other branches
  1. 2.0.x css/dBug.css
  2. 1.0.x css/dBug.css
table.dBug_array,
table.dBug_object,
table.dBug_resource,
table.dBug_resourceC,
table.dBug_xml {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 12px;
  border-spacing: 2px;
  display: table;
  border-collapse: separate;
}

table.dBug_array td,
table.dBug_object td,
table.dBug_resource td,
table.dBug_resourceC td,
table.dBug_xml td {
  line-height: 1.3;
  padding: 3px;
  vertical-align: top;
}

.dBug_arrayHeader,
.dBug_objectHeader,
.dBug_resourceHeader,
.dBug_resourceCHeader,
.dBug_xmlHeader {
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.dBug_arrayKey,
.dBug_objectKey,
.dBug_xmlKey {
  cursor: pointer;
}

/* array */
table.dBug_array {
  background-color: #006600;
}

table.dBug_array td {
  background-color: #ffffff;
}

table.dBug_array td.dBug_arrayHeader {
  background-color: #009900;
}

table.dBug_array td.dBug_arrayKey {
  background-color: #ccffcc;
}

/* object */
table.dBug_object {
  background-color: #0000cc;
}

table.dBug_object td {
  background-color: #ffffff;
}

table.dBug_object td.dBug_objectHeader {
  background-color: #4444cc;
}

table.dBug_object td.dBug_objectKey {
  background-color: #ccddff;
}

/* resource */
table.dBug_resourceC {
  background-color: #884488;
}

table.dBug_resourceC td {
  background-color: #ffffff;
}

table.dBug_resourceC td.dBug_resourceCHeader {
  background-color: #aa66aa;
}

table.dBug_resourceC td.dBug_resourceCKey {
  background-color: #ffddff;
}

/* resource */
table.dBug_resource {
  background-color: #884488;
}

table.dBug_resource td {
  background-color: #ffffff;
}

table.dBug_resource td.dBug_resourceHeader {
  background-color: #aa66aa;
}

table.dBug_resource td.dBug_resourceKey {
  background-color: #ffddff;
}

/* xml */
table.dBug_xml {
  background-color: #888888;
}

table.dBug_xml td {
  background-color: #ffffff;
}

table.dBug_xml td.dBug_xmlHeader {
  background-color: #aaaaaa;
}

table.dBug_xml td.dBug_xmlKey {
  background-color: #dddddd;
}

File

css/dBug.css
View source
  1. table.dBug_array,
  2. table.dBug_object,
  3. table.dBug_resource,
  4. table.dBug_resourceC,
  5. table.dBug_xml {
  6. font-family: Verdana, Arial, Helvetica, sans-serif;
  7. color: #000000;
  8. font-size: 12px;
  9. border-spacing: 2px;
  10. display: table;
  11. border-collapse: separate;
  12. }
  13. table.dBug_array td,
  14. table.dBug_object td,
  15. table.dBug_resource td,
  16. table.dBug_resourceC td,
  17. table.dBug_xml td {
  18. line-height: 1.3;
  19. padding: 3px;
  20. vertical-align: top;
  21. }
  22. .dBug_arrayHeader,
  23. .dBug_objectHeader,
  24. .dBug_resourceHeader,
  25. .dBug_resourceCHeader,
  26. .dBug_xmlHeader {
  27. font-weight: bold;
  28. color: #ffffff;
  29. cursor: pointer;
  30. }
  31. .dBug_arrayKey,
  32. .dBug_objectKey,
  33. .dBug_xmlKey {
  34. cursor: pointer;
  35. }
  36. /* array */
  37. table.dBug_array {
  38. background-color: #006600;
  39. }
  40. table.dBug_array td {
  41. background-color: #ffffff;
  42. }
  43. table.dBug_array td.dBug_arrayHeader {
  44. background-color: #009900;
  45. }
  46. table.dBug_array td.dBug_arrayKey {
  47. background-color: #ccffcc;
  48. }
  49. /* object */
  50. table.dBug_object {
  51. background-color: #0000cc;
  52. }
  53. table.dBug_object td {
  54. background-color: #ffffff;
  55. }
  56. table.dBug_object td.dBug_objectHeader {
  57. background-color: #4444cc;
  58. }
  59. table.dBug_object td.dBug_objectKey {
  60. background-color: #ccddff;
  61. }
  62. /* resource */
  63. table.dBug_resourceC {
  64. background-color: #884488;
  65. }
  66. table.dBug_resourceC td {
  67. background-color: #ffffff;
  68. }
  69. table.dBug_resourceC td.dBug_resourceCHeader {
  70. background-color: #aa66aa;
  71. }
  72. table.dBug_resourceC td.dBug_resourceCKey {
  73. background-color: #ffddff;
  74. }
  75. /* resource */
  76. table.dBug_resource {
  77. background-color: #884488;
  78. }
  79. table.dBug_resource td {
  80. background-color: #ffffff;
  81. }
  82. table.dBug_resource td.dBug_resourceHeader {
  83. background-color: #aa66aa;
  84. }
  85. table.dBug_resource td.dBug_resourceKey {
  86. background-color: #ffddff;
  87. }
  88. /* xml */
  89. table.dBug_xml {
  90. background-color: #888888;
  91. }
  92. table.dBug_xml td {
  93. background-color: #ffffff;
  94. }
  95. table.dBug_xml td.dBug_xmlHeader {
  96. background-color: #aaaaaa;
  97. }
  98. table.dBug_xml td.dBug_xmlKey {
  99. background-color: #dddddd;
  100. }