Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #35 from ericlee4/master
Browse files Browse the repository at this point in the history
Dark theme adjustments
  • Loading branch information
54ac authored Jan 22, 2021
2 parents f5781c3 + 4f1fd33 commit 3eb4568
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 8 additions & 0 deletions content/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
border-width: 1px 0;
}

#popupUrlList tr:hover {
background-color: gainsboro;
}

input,
select {
margin: auto 0.25em;
Expand All @@ -64,6 +68,10 @@
background: #202023;
color: #fff;
}

#popupUrlList tr:hover {
color: #232323;
}
}
</style>
<title>The Stream Detector</title>
Expand Down
3 changes: 0 additions & 3 deletions content/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,6 @@ const createList = () => {
row.appendChild(timestampCell);
row.appendChild(deleteCell);

row.onmouseover = () => (row.style.backgroundColor = "gainsboro");
row.onmouseout = () => (row.style.backgroundColor = "initial");

table.appendChild(row);
}
};
Expand Down

0 comments on commit 3eb4568

Please sign in to comment.