diff --git a/mozilla/browser/base/content/customizeToolbar.js b/mozilla/browser/base/content/customizeToolbar.js index 56f3f8b5c2e..5cd22aa0627 100644 --- a/mozilla/browser/base/content/customizeToolbar.js +++ b/mozilla/browser/base/content/customizeToolbar.js @@ -254,13 +254,14 @@ var paletteDNDObserver = { if (!item) return; + // XXX Now insertBefore |item| in the right place. + // We're going back in the palette now, so we have to readd the flex // and width which we removed when moving the item to the toolbar. // (These attributes help space the items properly in the palette.) item.setAttribute("flex", "1"); item.setAttribute("width", "0"); - // XXX Now insertBefore |item| in the right place. gToolbarChanged = true; }, _flavourSet: null, diff --git a/mozilla/browser/base/skin/customizeToolbar.css b/mozilla/browser/base/skin/customizeToolbar.css index efe2b52388f..fb8c09d0cf6 100644 --- a/mozilla/browser/base/skin/customizeToolbar.css +++ b/mozilla/browser/base/skin/customizeToolbar.css @@ -21,15 +21,5 @@ Blake Ross (blaker@netscape.com) */ -#trash-can { - margin: 0px; - border: 0px; - padding: 0px; - list-style-image: url('chrome://browser/skin/trash-closed.gif'); -} - -#trash-can[dragactive] { - list-style-image: url('chrome://browser/skin/trash-open.gif'); -} diff --git a/mozilla/browser/base/skin/trash-closed.gif b/mozilla/browser/base/skin/trash-closed.gif deleted file mode 100644 index 43f622ff655..00000000000 Binary files a/mozilla/browser/base/skin/trash-closed.gif and /dev/null differ diff --git a/mozilla/browser/base/skin/trash-open.gif b/mozilla/browser/base/skin/trash-open.gif deleted file mode 100644 index 57e79b0f17d..00000000000 Binary files a/mozilla/browser/base/skin/trash-open.gif and /dev/null differ