Skip to content

Commit

Permalink
tooltipStyler: fix an oversight.
Browse files Browse the repository at this point in the history
  • Loading branch information
aminomancer committed Aug 4, 2022
1 parent b5882ca commit 098424d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JS/tooltipStyler.uc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name Tooltip Styler
// @version 1.1.0
// @version 1.1.1
// @author aminomancer
// @homepage https://github.com/aminomancer/uc.css.js
// @description Allows you to style a tooltip in the chrome window based on
Expand Down Expand Up @@ -46,7 +46,7 @@
node?.localName === "toolbarpaletteitem"
) {
if (tooltip.id === "customizationPanelItemContextMenu") color = "gray";
if (type === "tooltip" && tooltip.hasAttribute("default")) color = "gray";
if (tooltip.localName === "tooltip" && tooltip.hasAttribute("default")) color = "gray";
}
break;
default:
Expand Down

0 comments on commit 098424d

Please sign in to comment.