aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcaneleex <[email protected]>2021-03-12 11:23:25 +0100
committercaneleex <[email protected]>2021-03-12 11:23:25 +0100
commitca3732315c6f704663e20096470ecb33c3cf4d23 (patch)
tree99314ce31ce15bc7921431d87b30eaa6da17e924
parent3c50f70b3bdb1d6c50761e2c5a18ce0fd23895e5 (diff)
downloadSponsorBlock-ca3732315c6f704663e20096470ecb33c3cf4d23.tar.gz
SponsorBlock-ca3732315c6f704663e20096470ecb33c3cf4d23.zip
remove unnecessary additional css
-rw-r--r--public/popup.css7
-rw-r--r--src/popup.ts2
2 files changed, 1 insertions, 8 deletions
diff --git a/public/popup.css b/public/popup.css
index f7e173e3..fda29da8 100644
--- a/public/popup.css
+++ b/public/popup.css
@@ -63,13 +63,6 @@
cursor: pointer;
}
-.uuidButton {
- height: 20px;
- padding: 0 5px;
-
- cursor: pointer;
-}
-
#videoInfo>p, #videoInfo>div>p {
margin: 0;
}
diff --git a/src/popup.ts b/src/popup.ts
index 7025b286..d13af4a0 100644
--- a/src/popup.ts
+++ b/src/popup.ts
@@ -429,7 +429,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
const uuidButton = document.createElement("img");
uuidButton.id = "sponsorTimesCopyUUIDButtonContainer" + UUID;
- uuidButton.className = "uuidButton";
+ uuidButton.className = "voteButton";
uuidButton.src = chrome.extension.getURL("icons/clipboard.svg");
uuidButton.addEventListener("click", () => navigator.clipboard.writeText(UUID));