From 00984f5c943455c6fcd64f667cccfe32f1608c43 Mon Sep 17 00:00:00 2001 From: rydesun Date: Fri, 16 Dec 2022 22:43:54 +0800 Subject: [PATCH] Fix firefox css: remove popup border --- .mozilla/firefox/profile/chrome/userChrome.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.mozilla/firefox/profile/chrome/userChrome.css b/.mozilla/firefox/profile/chrome/userChrome.css index bb4f165..389ea82 100644 --- a/.mozilla/firefox/profile/chrome/userChrome.css +++ b/.mozilla/firefox/profile/chrome/userChrome.css @@ -1,3 +1,8 @@ @import "color.css"; @import "userChrome/sidebar.css"; @import "userChrome/topbar.css"; + +/* 去除弹出菜单的透明边框 (与compositor冲突) */ +.menupopup-arrowscrollbox, slot:nth-child(1) { + margin: 0 !important; +}