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

"scrollbar-color" and "text-decoration-color" properties' values are not being processed #1259

Open
MiaKani opened this issue Oct 11, 2023 · 0 comments

Comments

@MiaKani
Copy link

MiaKani commented Oct 11, 2023

The "scrollbar-color" and "text-decoration-color" properties' values are not being processed. When the input values contain uppercase letters, "clean-css" should change them to lowercase letters on output like it does for all other CSS properties.

Environment

  • clean-css version: 5.3.2
  • node.js version: 18.18.1
  • operating system: Windows

Configuration options

cleancss --debug --output "C:\CSS.css" "C:\CSS.css"

Input CSS

  • {
    scrollbar-color:#AAAAAA #FFFFFF;
    text-decoration-color:#EEEEEE;
    }

Actual output CSS

*{scrollbar-color:#AAAAAA #FFFFFF;text-decoration-color:#EEEEEE}

Expected output CSS

*{scrollbar-color:#aaaaaa #ffffff;text-decoration-color:#eeeeee}

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

No branches or pull requests

1 participant