We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d185e79 commit ef6b544Copy full SHA for ef6b544
src/LiveDevelopment/BrowserScripts/RemoteFunctions.js
@@ -2520,6 +2520,14 @@ function RemoteFunctions(config) {
2520
clearElementBackground(previouslyClickedElement);
2521
}
2522
2523
+ // Clear all elements that might have hover background styling applied
2524
+ const allElements = window.document.querySelectorAll("[data-brackets-id]");
2525
+ for (let i = 0; i < allElements.length; i++) {
2526
+ if (allElements[i]._originalBackgroundColor !== undefined) {
2527
+ clearElementBackground(allElements[i]);
2528
+ }
2529
2530
+
2531
// Remove info box when switching modes to avoid confusion
2532
if (_nodeInfoBox && !_nodeMoreOptionsBox) {
2533
_nodeInfoBox.remove();
0 commit comments