Bug 1008356 - The close button on watch expressions acts weirdly, r=bgrins

This commit is contained in:
Victor Porof 2014-05-09 16:19:58 -04:00
parent 473a2be9a5
commit 067cc1429a
2 changed files with 5 additions and 3 deletions

View File

@ -2215,6 +2215,7 @@ WatchExpressionsView.prototype = Heritage.extend(WidgetMethods, {
_createItemView: function(aExpression) {
let container = document.createElement("hbox");
container.className = "list-widget-item dbg-expression";
container.setAttribute("align", "center");
let arrowNode = document.createElement("hbox");
arrowNode.className = "dbg-expression-arrow";

View File

@ -280,10 +280,11 @@
}
.dbg-expression-arrow {
background: url(commandline-icon.png);
background-position: 16px;
width: 16px;
height: auto;
height: 16px;
margin: 2px;
background: -moz-image-rect(url(commandline-icon.png), 0, 32, 16, 16);
}
.dbg-expression-input {
@ -294,8 +295,8 @@
-moz-appearance: none;
border: none;
background: none;
cursor: pointer;
text-decoration: underline;
cursor: pointer;
}
.theme-dark .dbg-expression-button {