From 643a8ad291f57bf75ef29234540e0068eac62ef7 Mon Sep 17 00:00:00 2001 From: 2641a40fd44383320adde4b027a1d0b03bd550 <58827198+2641a40fd44383320adde4b027a1d0b03bd550@users.noreply.github.com> Date: Thu, 1 Jun 2023 11:10:58 +0000 Subject: [PATCH] Fix: Rounding - Clear history infobox from menu bar --- css/leptonChrome.css | 5 +++++ src/rounding/_square.scss | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/css/leptonChrome.css b/css/leptonChrome.css index 482fc4b..c23423c 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -3199,6 +3199,11 @@ border-radius: 0 !important; } } +@supports -moz-bool-pref("userChrome.rounding.square_infobox") { + #sanitizeEverythingWarningBox { + border-radius: 0 !important; + } +} @supports -moz-bool-pref("userChrome.rounding.square_toolbar") { :root { --uc-rounding-toolbar: 0; diff --git a/src/rounding/_square.scss b/src/rounding/_square.scss index 8151c24..5722402 100644 --- a/src/rounding/_square.scss +++ b/src/rounding/_square.scss @@ -65,6 +65,12 @@ } } +@include Option("userChrome.rounding.square_infobox") { + #sanitizeEverythingWarningBox { + border-radius: 0 !important; + } +} + @include Option("userChrome.rounding.square_toolbar") { :root { --uc-rounding-toolbar: 0;