fix: 🐛 image size and Variable Prefix

This commit is contained in:
jqtmviyu 2025-05-25 20:55:11 +08:00
parent 7644a1d52f
commit 4730427470
4 changed files with 8 additions and 7 deletions

View File

@ -24,3 +24,4 @@ Tips:
3. For quick style previews, utilize the `Style Editor`.
4. Customize navigation and sidebar colors via `about:config -> zen.theme.gradient.show-custom-colors -> true`.
5. Disable transparent backgrounds: `about:config -> transparent -> false`.
4. `zen.theme.gradient`

View File

@ -1,14 +1,14 @@
/* hide sidebar mod */
/* hide sidebar theme */
/* hide Sidebery header */
@media (-moz-bool-pref: "mod.hidesidebar.hide_sidebar_header") {
@media (-moz-bool-pref: "theme.hidesidebar.hide_sidebar_header") {
#sidebar-header {
display: none !important;
}
}
/* hide default sidebar */
@media (-moz-bool-pref: "mod.hidesidebar.hide_navigator_toolbox") {
@media (-moz-bool-pref: "theme.hidesidebar.hide_navigator_toolbox") {
#navigator-toolbox {
display: none !important;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -1,14 +1,14 @@
[
{
"property": "mod.hidesidebar.hide_sidebar_header",
"property": "theme.hidesidebar.hide_sidebar_header",
"label": "hide Sidebery header",
"type": "checkbox",
"defaultValue": true
"defaultValue": false
},
{
"property": "mod.hidesidebar.hide_navigator_toolbox",
"property": "theme.hidesidebar.hide_navigator_toolbox",
"label": "hide default sidebar",
"type": "checkbox",
"defaultValue": true
"defaultValue": false
}
]