heapProfiler.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * Copyright (C) 2009 Google Inc. All rights reserved.
  3. * Copyright (C) 2010 Apple Inc. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are
  7. * met:
  8. *
  9. * * Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * * Redistributions in binary form must reproduce the above
  12. * copyright notice, this list of conditions and the following disclaimer
  13. * in the documentation and/or other materials provided with the
  14. * distribution.
  15. * * Neither the name of Google Inc. nor the names of its
  16. * contributors may be used to endorse or promote products derived from
  17. * this software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. .heap-snapshot-sidebar-tree-item .icon {
  32. content: url(Images/profileIcon.png);
  33. }
  34. .heap-snapshot-sidebar-tree-item.wait .icon {
  35. content: url(Images/spinnerActive.gif);
  36. }
  37. .heap-snapshot-sidebar-tree-item.wait.selected .icon {
  38. content: url(Images/spinnerActiveSelected.gif);
  39. }
  40. body.inactive .heap-snapshot-sidebar-tree-item.wait .icon {
  41. content: url(Images/spinnerInactive.gif);
  42. }
  43. body.inactive .heap-snapshot-sidebar-tree-item.wait.selected .icon {
  44. content: url(Images/spinnerInactiveSelected.gif);
  45. }
  46. .heap-snapshot-sidebar-tree-item.small .icon {
  47. content: url(Images/profileSmallIcon.png);
  48. }
  49. .heap-snapshot-view {
  50. display: none;
  51. overflow: hidden;
  52. position: absolute;
  53. top: 0;
  54. left: 0;
  55. right: 0;
  56. bottom: 0;
  57. }
  58. .heap-snapshot-view.visible {
  59. display: block;
  60. }
  61. .heap-snapshot-view .view {
  62. display: none;
  63. }
  64. .heap-snapshot-view .view.visible {
  65. display: block;
  66. }
  67. .heap-snapshot-view .data-grid tr:empty {
  68. height: 16px;
  69. visibility: hidden;
  70. }
  71. .heap-snapshot-view .data-grid {
  72. border: none;
  73. }
  74. .heap-snapshot-view .data-grid td.count-column {
  75. text-align: right;
  76. }
  77. .heap-snapshot-view .data-grid td.addedCount-column {
  78. text-align: right;
  79. }
  80. .heap-snapshot-view .data-grid td.removedCount-column {
  81. text-align: right;
  82. }
  83. .heap-snapshot-view .data-grid td.countDelta-column {
  84. text-align: right;
  85. }
  86. .heap-snapshot-view .data-grid td.addedSize-column {
  87. text-align: right;
  88. }
  89. .heap-snapshot-view .data-grid td.removedSize-column {
  90. text-align: right;
  91. }
  92. .heap-snapshot-view .data-grid td.sizeDelta-column {
  93. text-align: right;
  94. }
  95. .heap-snapshot-view .data-grid td.shallowSize-column {
  96. text-align: right;
  97. }
  98. .heap-snapshot-view .data-grid td.retainedSize-column {
  99. text-align: right;
  100. }
  101. .heap-snapshot-view .data-grid td.distanceToWindow-column {
  102. text-align: right;
  103. }
  104. .heap-snapshot-view .data-grid div.heap-snapshot-multiple-values {
  105. float: right;
  106. }
  107. .heap-snapshot-view .data-grid span.percent-column {
  108. color: #999;
  109. width: 32px;
  110. display: inline-block;
  111. }
  112. .heap-snapshot-view .console-formatted-object,
  113. .console-formatted-node {
  114. display: inline;
  115. position: static;
  116. }
  117. .detached-dom-tree-node {
  118. background-color: #FF9999;
  119. }
  120. .heap-snapshot-view .console-formatted-string {
  121. white-space: nowrap;
  122. }
  123. .heap-snapshot-view .console-formatted-id {
  124. color: grey;
  125. }
  126. .heap-snapshot-view .data-grid tr.selected * {
  127. color: inherit;
  128. }
  129. .heap-snapshot-view .data-grid:focus tr.selected * {
  130. color: white;
  131. }
  132. .heap-snapshot-view .delimiter {
  133. height: 24px;
  134. background-color: #d6dde5;
  135. }
  136. .heap-snapshot-view .data-grid {
  137. position: absolute;
  138. top: 0;
  139. left: 0;
  140. right: 0;
  141. bottom: 0;
  142. }
  143. .heap-snapshot-view .views-container {
  144. position: absolute;
  145. top: 0;
  146. left: 0;
  147. right: 0;
  148. bottom: 173px;
  149. }
  150. .reserve-80px-at-top {
  151. top: 80px !important;
  152. }
  153. .heap-snapshot-view .views-container .view {
  154. position: absolute;
  155. top: 0;
  156. left: 0;
  157. right: 0;
  158. bottom: 0;
  159. }
  160. .heap-snapshot-view .retaining-paths-view {
  161. height: 150px;
  162. position: absolute;
  163. bottom: 0;
  164. left: 0;
  165. right: 0;
  166. }
  167. .heap-snapshot-view .class-view-grid {
  168. top: 22px;
  169. }
  170. .heap-snapshot-view .class-view-toolbar {
  171. height: 22px;
  172. background-color: #DDD;
  173. display: block;
  174. position: absolute;
  175. left: 0;
  176. right: 0;
  177. top: 0;
  178. }
  179. .heap-snapshot-view .class-view-toolbar input.class-name-filter {
  180. width: 200px;
  181. height: 18px;
  182. font-size: 11px;
  183. padding: 2px;
  184. margin: 2px 10px;
  185. background-color: white;
  186. border: solid 1px #BBB;
  187. }
  188. .heap-snapshot-view .retainers-view-header {
  189. background-image: url(Images/statusbarResizerVertical.png), -webkit-linear-gradient(rgb(253,253,253), rgb(230,230,230) 75%, rgb(230,230,230));
  190. border-top: 1px solid rgb(202, 202, 202);
  191. background-repeat: no-repeat;
  192. background-position: right center, center;
  193. cursor: row-resize;
  194. height: 23px;
  195. display: block;
  196. position: absolute;
  197. left: 0;
  198. right: 0;
  199. bottom: 150px;
  200. }
  201. .heap-snapshot-view .retainers-view-header .title > span {
  202. display: inline-block;
  203. padding-top: 3px;
  204. vertical-align: middle;
  205. margin-left: 4px;
  206. margin-right: 8px;
  207. }
  208. .heap-snapshot-view tr:not(.selected) td.object-column span.highlight {
  209. background-color: rgb(255, 255, 200);
  210. }
  211. .heap-snapshot-view td.object-column span.grayed {
  212. color: gray;
  213. }
  214. .heap-snapshot-help-status-bar-item .glyph {
  215. -webkit-mask-position: -160px -2px;
  216. }
  217. table.heap-snapshot-help {
  218. border-spacing: 12px 2px;
  219. }
  220. .cycled-ancessor-node {
  221. opacity: 0.6;
  222. }
  223. #heap-recording-view .heap-snapshot-view {
  224. top: 80px;
  225. }
  226. .overview-container {
  227. overflow: hidden;
  228. position: absolute;
  229. top: 0;
  230. width: 100%;
  231. height: 80px;
  232. }
  233. #heap-recording-overview-grid .resources-dividers-label-bar {
  234. pointer-events: auto;
  235. }
  236. #heap-recording-overview-container {
  237. border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  238. }
  239. .heap-recording-overview-canvas {
  240. position: absolute;
  241. top: 20px;
  242. left: 0;
  243. right: 0;
  244. bottom: 0;
  245. }