From e99591dbfc6cba7f70c60cb9a3e30850e8f806cd Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Sun, 24 Jul 2022 02:02:40 +0900 Subject: [PATCH] Doc: Restrictions - `-moz-accent-color` #437 --- docs/Restrictions.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/Restrictions.md b/docs/Restrictions.md index a74021f..4c8029a 100644 --- a/docs/Restrictions.md +++ b/docs/Restrictions.md @@ -6,6 +6,7 @@ * [Cross Platform](#cross-platform) * [Firefox Version](#firefox-version) * [Side Effect](#side-effect) + * [`-moz-accent-color` Related](#-moz-accent-color-related) - [Internals](#internals) * [CSS Loading Order](#css-loading-order) * [DOM structure cannot be modified](#dom-structure-cannot-be-modified) @@ -51,6 +52,17 @@ This project is using SCSS to make a [reusable compatible mixins](../src/utils). } ``` +**Main compatibility bugs** + +- `-moz-toolbar-prefers-color-scheme` -> `prefers-color-scheme` [#250](https://github.com/black7375/Firefox-UI-Fix/issues/250) +- `:root[lwtheme-mozlightdark]` is removed [#288](https://github.com/black7375/Firefox-UI-Fix/issues/288) +- `-moz-os-version` -> `-moz-platform` [#331](https://github.com/black7375/Firefox-UI-Fix/issues/331) +- Breaking change with `-moz-accent-color`/`-moz-accent-color-foreground` -> `AccentColor`/`AccentColorText` [#433](https://github.com/black7375/Firefox-UI-Fix/issues/433) + +### `-moz-accent-color` + +I don't know the exact reason, but it can be a problem if it is not applied to [CSS Variable](https://developer.mozilla.org/en-US/docs/Web/CSS/var). [#437](https://github.com/black7375/Firefox-UI-Fix/issues/437) + ### Side Effect Only CSS modifications can cause bugs that are hard to think of in the general web, such as the [context menu not appearing](https://github.com/black7375/Firefox-UI-Fix/issues/114).