Bug 1117722 - Changed badge.style.backgroundColor. and badge attribute. r=jaws
--- a/browser/base/content/browser.js
+++ b/browser/base/content/browser.js
@@ -2529,18 +2529,18 @@ let gMenuButtonUpdateBadge = {
case STATE_PENDING:
case STATE_PENDING_SVC:
// If the update is successfully applied, or if the updater has fallen back
// to non-staged updates, add a badge to the hamburger menu to indicate an
// update will be applied once the browser restarts.
let badge = document.getAnonymousElementByAttribute(PanelUI.menuButton,
"class",
"toolbarbutton-badge");
- badge.style.backgroundColor = 'green';
- PanelUI.menuButton.setAttribute("badge", "\u2605");
+ badge.style.backgroundColor = '#74BF43';
+ PanelUI.menuButton.setAttribute("badge", "\u2B06");
let brandBundle = document.getElementById("bundle_brand");
let brandShortName = brandBundle.getString("brandShortName");
stringId = "appmenu.restartNeeded.description";
updateButtonText = gNavigatorBundle.getFormattedString(stringId,
[brandShortName]);
updateButton.setAttribute("label", updateButtonText);