commit 103bb3d3f9339dc69c83e60846193bc09c7b9912
parent 98eb115db892b4073678d9264c4a1f56c129923a
Author: awy <awy@awy.one>
Date: Sat, 3 May 2025 14:53:11 +0300
square everything
Diffstat:
1 file changed, 24 insertions(+), 2 deletions(-)
diff --git a/userChrome.css b/userChrome.css
@@ -130,8 +130,24 @@ scrollcorner {
visibility: collapse !important;
}
-menupopup,
-.menupopup-arrowscrollbox{ border-radius: 0 !important; }
+/* removes the rounded corners from popup menus (main hamburger menu, bookmarks, etc) */
+.menupopup-arrowscrollbox,
+.panel-arrowcontainer,
+.panel-arrowbox,
+.panel-arrowscrollbox,
+menupopup {
+ border-radius: 0 !important;
+}
+
+/* removes rounded corner from selection boxes and autocomplete popups */
+menupopup menuitem,
+menupopup menu,
+menupopup,
+panel,
+menulist {
+ border-radius: 0 !important;
+ --panel-border-radius: 0 !important;
+}
:root {
/* reduce padding between menu items */
@@ -147,3 +163,9 @@ menupopup,
--tab-border-radius: 0 !important;
--subviewbutton-border-radius: 0 !important;
}
+
+/* remove annoying top border on top of urlbar*/
+#nav-bar {
+ box-shadow: none !important;
+ border-top: none !important;
+}