Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSS Compressor: Space before :psuedo selectors is removed #77

Closed
melloware opened this issue Jun 25, 2022 · 1 comment
Closed

CSS Compressor: Space before :psuedo selectors is removed #77

melloware opened this issue Jun 25, 2022 · 1 comment
Assignees
Labels
Milestone

Comments

@melloware
Copy link
Member

Original Issue: yui/yuicompressor#334

@media screen and (-ms-high-contrast: none) {
    body :focus {
      outline: 2px solid #5e9ed6;
    }
}

The space before : is removed and changing the selector.

@media screen and (-ms-high-contrast: none) {
    body:focus {
      outline: 2px solid #5e9ed6;
    }
}

The space before : should not be removed.

@melloware melloware changed the title CSS Compressor: CSS Compressor: Space before : are removed inside media query Jun 25, 2022
@melloware melloware self-assigned this Jun 25, 2022
@melloware melloware added the bug label Jun 25, 2022
@melloware melloware added this to the 2.5.0 milestone Jun 25, 2022
@melloware melloware changed the title CSS Compressor: Space before : are removed inside media query CSS Compressor: Space before :psuedo selectors is removed Jun 25, 2022
@melloware
Copy link
Member Author

yui/yuicompressor#248

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant