Bug 1824430 - Update screenshots buttons styling. r=sfoster

Differential Revision: https://phabricator.services.mozilla.com/D173708
This commit is contained in:
Niklas Baumgardner
2023-03-30 15:30:21 +00:00
parent b418549f7e
commit f0190facaa
10 changed files with 229 additions and 676 deletions

View File

@@ -30,13 +30,13 @@ class ScreenshotsUI extends HTMLElement {
let templateContent = template.content;
this.appendChild(templateContent.cloneNode(true));
this._retryButton = this.querySelector(".highlight-button-retry");
this._retryButton = this.querySelector("#retry");
this._retryButton.addEventListener("click", this);
this._cancelButton = this.querySelector(".highlight-button-cancel");
this._cancelButton = this.querySelector("#cancel");
this._cancelButton.addEventListener("click", this);
this._copyButton = this.querySelector(".highlight-button-copy");
this._copyButton = this.querySelector("#copy");
this._copyButton.addEventListener("click", this);
this._downloadButton = this.querySelector(".highlight-button-download");
this._downloadButton = this.querySelector("#download");
this._downloadButton.addEventListener("click", this);
}