From 13fbf21a406557b4717f081bf102131c60404a49 Mon Sep 17 00:00:00 2001 From: Aaron Young Date: Fri, 18 Apr 2025 10:34:32 +0800 Subject: [PATCH] fix: set highlight div backgroundColor to transparent --- browser_use/dom/buildDomTree.js | 1 + 1 file changed, 1 insertion(+) diff --git a/browser_use/dom/buildDomTree.js b/browser_use/dom/buildDomTree.js index 22481e9fb..5c3dc1b5f 100644 --- a/browser_use/dom/buildDomTree.js +++ b/browser_use/dom/buildDomTree.js @@ -212,6 +212,7 @@ container.style.width = "100%"; container.style.height = "100%"; container.style.zIndex = "2147483647"; + container.style.backgroundColor = 'transparent'; document.body.appendChild(container); }