Bug 1242958 - The cursor type is not I-beam when the mouse pointer is over the heap-view. r=fitzgen

This commit is contained in:
Greg Tatum 2016-03-01 07:28:00 -05:00
parent ddc08ffa06
commit e150ac87f6

View File

@ -181,6 +181,7 @@ html, body, #app, #memory-tool {
color: var(--theme-body-color);
border-bottom: 1px solid rgba(128,128,128,0.15);
padding: 8px;
cursor: default;
}
.snapshot-list-item.selected {
@ -188,6 +189,11 @@ html, body, #app, #memory-tool {
color: var(--theme-selection-color);
}
.snapshot-list-item.selected ::-moz-selection {
background-color: var(--theme-selection-color);
color: var(--theme-selection-background);
}
.snapshot-list-item .snapshot-info {
display: flex;
justify-content: space-between;
@ -365,6 +371,7 @@ html, body, #app, #memory-tool {
.tree-node {
height: var(--heap-tree-row-height);
line-height: var(--heap-tree-row-height);
cursor: default;
}
.children-pointer {
@ -397,6 +404,11 @@ html, body, #app, #memory-tool {
color: var(--theme-selection-color);
}
.heap-tree-item.focused ::-moz-selection {
background-color: var(--theme-selection-color);
color: var(--theme-selection-background);
}
.heap-tree-item-bytes,
.heap-tree-item-count,
.heap-tree-item-total-bytes,