When minifying CSS, color values using RGB are breaking.
An example is:
Pre-minification: background: rgb(255, 255, 255, 1.0) !important;
Post-minification: background: #ffffff01 !important;
Compressing the RGB value seems to work in that it converts to ffffff, but it's including the opacity in the hex value, which causes it to break.