firebug.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. .firebug {
  2. margin: 0;
  3. background:#fff;
  4. font-family: Lucida Grande, Tahoma, sans-serif;
  5. font-size: 11px;
  6. overflow: hidden;
  7. border: 1px solid black;
  8. position: relative;
  9. }
  10. .firebug a {
  11. text-decoration: none;
  12. }
  13. .firebug a:hover {
  14. text-decoration: underline;
  15. }
  16. .firebug a:visited{
  17. color:#0000FF;
  18. }
  19. .firebug #firebugToolbar {
  20. height: 18px;
  21. line-height:18px;
  22. border-top: 1px solid ThreeDHighlight;
  23. border-bottom: 1px solid ThreeDShadow;
  24. padding: 2px 6px;
  25. background:#f0f0f0;
  26. }
  27. .firebug #firebugLog, .firebug #objectLog {
  28. overflow: auto;
  29. position: absolute;
  30. left: 0;
  31. width: 100%;
  32. }
  33. #objectLog{
  34. overflow:scroll;
  35. height:258px;
  36. }
  37. .firebug #firebugCommandLine {
  38. position: absolute;
  39. bottom: 0;
  40. left: 0;
  41. width: 100%;
  42. height: 18px;
  43. border: none;
  44. border-top: 1px solid ThreeDShadow;
  45. }
  46. .firebug .logRow {
  47. position: relative;
  48. border-bottom: 1px solid #D7D7D7;
  49. padding: 2px 4px 1px 6px;
  50. background-color: #FFFFFF;
  51. }
  52. .firebug .logRow-command {
  53. font-family: Monaco, monospace;
  54. color: blue;
  55. }
  56. .firebug .objectBox-null {
  57. padding: 0 2px;
  58. border: 1px solid #666666;
  59. background-color: #888888;
  60. color: #FFFFFF;
  61. }
  62. .firebug .objectBox-string {
  63. font-family: Monaco, monospace;
  64. color: red;
  65. white-space: pre;
  66. }
  67. .firebug .objectBox-number {
  68. color: #000088;
  69. }
  70. .firebug .objectBox-function {
  71. font-family: Monaco, monospace;
  72. color: DarkGreen;
  73. }
  74. .firebug .objectBox-object {
  75. color: DarkGreen;
  76. font-weight: bold;
  77. }
  78. .firebug .logRow-info,
  79. .firebug .logRow-error,
  80. .firebug .logRow-warning
  81. {
  82. background: #00FFFF no-repeat 2px 2px;
  83. padding-left: 20px;
  84. padding-bottom: 3px;
  85. }
  86. .firebug .logRow-info {
  87. background: #FFF url(infoIcon.png) no-repeat 2px 2px;
  88. padding-left: 20px;
  89. padding-bottom: 3px;
  90. }
  91. .firebug .logRow-warning {
  92. background: #00FFFF url(warningIcon.png) no-repeat 2px 2px;
  93. padding-left: 20px;
  94. padding-bottom: 3px;
  95. }
  96. .firebug .logRow-error {
  97. background: LightYellow url(errorIcon.png) no-repeat 2px 2px;
  98. padding-left: 20px;
  99. padding-bottom: 3px;
  100. }
  101. .firebug .errorMessage {
  102. vertical-align: top;
  103. color: #FF0000;
  104. }
  105. .firebug .objectBox-sourceLink {
  106. position: absolute;
  107. right: 4px;
  108. top: 2px;
  109. padding-left: 8px;
  110. font-family: Lucida Grande, sans-serif;
  111. font-weight: bold;
  112. color: #0000FF;
  113. }
  114. .firebug .logRow-group {
  115. background: #EEEEEE;
  116. border-bottom: none;
  117. }
  118. .firebug .logGroup {
  119. background: #EEEEEE;
  120. }
  121. .firebug .logGroupBox {
  122. margin-left: 24px;
  123. border-top: 1px solid #D7D7D7;
  124. border-left: 1px solid #D7D7D7;
  125. }
  126. .firebug .selectorTag,
  127. .firebug .selectorId,
  128. .firebug .selectorClass {
  129. font-family: Monaco, monospace;
  130. font-weight: normal;
  131. }
  132. .firebug .selectorTag {
  133. color: #0000FF;
  134. }
  135. .firebug .selectorId {
  136. color: DarkBlue;
  137. }
  138. .firebug .selectorClass {
  139. color: red;
  140. }
  141. .firebug .objectBox-element {
  142. font-family: Monaco, monospace;
  143. color: #000088;
  144. }
  145. .firebug .nodeChildren {
  146. margin-left: 16px;
  147. }
  148. .firebug .nodeTag {
  149. color: blue;
  150. }
  151. .firebug .nodeValue {
  152. color: #FF0000;
  153. font-weight: normal;
  154. }
  155. .firebug .nodeText,
  156. .firebug .nodeComment {
  157. margin: 0 2px;
  158. vertical-align: top;
  159. }
  160. .firebug .nodeText {
  161. color: #333333;
  162. }
  163. .firebug .nodeComment {
  164. color: DarkGreen;
  165. }
  166. .firebug .propertyNameCell {
  167. vertical-align: top;
  168. }
  169. .firebug .propertyName {
  170. font-weight: bold;
  171. }
  172. /* tabs */
  173. #firebugToolbar ul.tabs{
  174. margin:0 !important;
  175. padding:0;
  176. }
  177. #firebugToolbar ul.tabs li{
  178. list-style:none;
  179. background:transparent url(tab_lft_norm.png) no-repeat left;
  180. line-height:18px;
  181. float:left;
  182. margin-left:5px;
  183. }
  184. #firebugToolbar ul.tabs li.right{
  185. float:right;
  186. margin-right:5px;
  187. margin-left:0;
  188. }
  189. #firebugToolbar ul.tabs li.gap{
  190. margin-left:20px;
  191. }
  192. #firebugToolbar .tabs a{
  193. text-decoration:none;
  194. background:transparent url(tab_rgt_norm.png) no-repeat right;
  195. line-height:18px;
  196. padding:3px 9px 4px 0px;
  197. margin-left:9px;
  198. color:#333333;
  199. }
  200. #firebugToolbar .tabs li:hover{
  201. background:transparent url(tab_lft_over.png) no-repeat left;
  202. }
  203. #firebugToolbar .tabs a:hover{
  204. text-decoration:none;
  205. background:transparent url(tab_rgt_over.png) no-repeat right;
  206. color:#FFFFFF;
  207. }