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
Remove unnecessary alpha-value from CSS rgb colors
#17077
Remove unnecessary alpha-value from CSS rgb colors
#17077
Conversation
Setting the alpha-value explicitly to `1` in `rgb` colors is unnecessary, since that's the default value, and this way we ever so slightly reduce the size of our CSS files. Unfortunately I've not found a Stylelint rule to enforce this automatically, and the patch was generated using search and replace.
|
/botio-linux preview |
From: Bot.io (Linux m4)ReceivedCommand cmd_preview from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/2fea319f9c754a3/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/2fea319f9c754a3/output.txt Total script time: 1.44 mins Published |
|
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/7f0ed76471a510a/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.193.163.58:8877/4aca2bad7e02bf8/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/7f0ed76471a510a/output.txt Total script time: 26.87 mins
Image differences available at: http://54.241.84.105:8877/7f0ed76471a510a/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/4aca2bad7e02bf8/output.txt Total script time: 37.65 mins
Image differences available at: http://54.193.163.58:8877/4aca2bad7e02bf8/reftest-analyzer.html#web=eq.log |
|
Thanks! |
Setting the alpha-value explicitly to
1inrgbcolors is unnecessary, since that's the default value, and this way we ever so slightly reduce the size of our CSS files.Unfortunately I've not found a Stylelint rule to enforce this automatically, and the patch was generated using search and replace.