diff --git a/common/modules/addons.jsm b/common/modules/addons.jsm index e76af75b..1d20b0c6 100644 --- a/common/modules/addons.jsm +++ b/common/modules/addons.jsm @@ -149,7 +149,6 @@ var Addon = Class("Addon", { - {_("addon.action.On")} {_("addon.action.Off")} @@ -157,6 +156,7 @@ var Addon = Class("Addon", { {_("addon.action.Update")} {_("addon.action.Options")} + , this.list.document, this.nodes); @@ -224,6 +224,7 @@ var Addon = Class("Addon", { this.nodes.version.textContent = this.version; update("status", this.statusInfo); this.nodes.description.textContent = this.description; + DOM(this.nodes.row).attr("active", this.isActive || null); for (let node in values(this.nodes)) if (node.update && node.update !== callee) @@ -284,8 +285,8 @@ var AddonList = Class("AddonList", { {_("title.Name")} {_("title.Version")} - {_("title.Status")} + {_("title.Status")} {_("title.Description")} , this.document, this.nodes); diff --git a/common/skin/global-styles.css b/common/skin/global-styles.css index 3adf5c55..5192ab73 100644 --- a/common/skin/global-styles.css +++ b/common/skin/global-styles.css @@ -307,6 +307,7 @@ AddonHead>*;;;AddonCell Addon /* An add-on in the :addons manager */ \ display: table-row; +Addon:not([active]) color: #888; Addon:nth-child(2n+1) background: rgba(0, 0, 0, .04); Addon>*;;;AddonCell