Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

(remove browser padding) the repo code is not up to date with the extension? #48

@froggy-jpg

Description

@froggy-jpg

code from the repo:

@media not (-moz-bool-pref: "zen.view.compact") {   
    #tabbrowser-tabpanels {
        & .browserSidebarContainer:not([zen-split="true"]) {
            --zen-webview-border-radius: var(--zen-border-radius) 0 0 0;
            --zen-element-separation: 0;
        }
    }

    @media (-moz-bool-pref: "zen.tabs.vertical.right-side") {
        #tabbrowser-tabpanels {
            & .browserSidebarContainer:not([zen-split="true"]) {
                --zen-webview-border-radius: 0 var(--zen-border-radius) 0 0;
            }
        }
    }
}

code from the extension:

@-moz-document url-prefix("chrome:") {
    @media not (-moz-bool-pref: "zen.view.compact") {
        #tabbrowser-tabpanels {
            padding: 0 !important;

            & .browserSidebarContainer:not([zen-split="true"]) {
                --zen-webview-border-radius: var(--zen-border-radius) 0 0 0;
                --zen-element-separation: 0;
            }
        }

        @media (-moz-bool-pref: "zen.tabs.vertical.right-side") {
            #tabbrowser-tabpanels {
                & .browserSidebarContainer:not([zen-split="true"]) {
                    --zen-webview-border-radius: 0 var(--zen-border-radius) 0 0;
                }
            }
        }
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions