Skip to content

Namespace and Media Queries #286

@andresgarza

Description

@andresgarza

Looks like namespacing doesn't work correctly with media queries:

#namespace {
    #foo { color:black; }
    @media (orientation:portrait) {
        #bar { color:white }
    }
}

Should result in:

#namespace #foo { color: black; }
@media (orientation:portrait) {
    #namespace #bar { color: white; }
}

But instead you get:

#namespace #foo { color: black; }
@media (orientation:portrait) {
    #bar { color: white; }
}

As you can see, the namespace is not applied to the rules inside a media query.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions