mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-15 15:20:33 -08:00
Doc: Restriction - Option from Preference.md
This commit is contained in:
parent
517175c8ed
commit
0ea99cb868
2 changed files with 13 additions and 8 deletions
|
|
@ -160,14 +160,7 @@ pref("general.config.obscure_value", 0);
|
|||
|
||||
**Restrictions**
|
||||
|
||||
`@supports` change in CSS is not detected in real time. (Only start time)
|
||||
|
||||
So a restart is required, and if the mozilla need real time changes, are using `@media` to handle it.
|
||||
|
||||
If project only use pure CSS, we cannot add `@media rules`.
|
||||
|
||||
- [Bug 1267890 - Support detecting bool preferences in chrome stylesheets](https://bugzilla.mozilla.org/show_bug.cgi?id=1267890)
|
||||
- [Bug 1698132 - Improve caching behaviour of -moz-bool-pref](https://bugzilla.mozilla.org/show_bug.cgi?id=1698132)
|
||||
Please refer to [Doc: Restrictions.md](./Restrictions.md#option)
|
||||
|
||||
**Example**
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
* [XUL](#xul)
|
||||
* [Namespace](#namespace)
|
||||
* [Import](#import)
|
||||
* [Option](#option)
|
||||
|
||||
<!-- markdown-toc end -->
|
||||
|
||||
|
|
@ -199,3 +200,14 @@ Any [`@namespace`](https://developer.mozilla.org/en-US/docs/Web/CSS/@namespace)
|
|||
/* After - Namespace */
|
||||
@import url("YourFile.css"); /* Not Works */
|
||||
```
|
||||
|
||||
### Option
|
||||
`@supports` change in CSS is not detected in real time. (Only start time)
|
||||
See [Doc: Preference.md](./Preference.md#using-with-user-custom-css) for how to use.
|
||||
|
||||
So a restart is required, and if the mozilla need real time changes, are using `@media` to handle it.
|
||||
|
||||
If project only use pure CSS, we cannot add `@media rules`.
|
||||
|
||||
- [Bug 1267890 - Support detecting bool preferences in chrome stylesheets](https://bugzilla.mozilla.org/show_bug.cgi?id=1267890)
|
||||
- [Bug 1698132 - Improve caching behaviour of -moz-bool-pref](https://bugzilla.mozilla.org/show_bug.cgi?id=1698132)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue