private function CSSmin::lowercase_pseudo_first in Advanced CSS/JS Aggregation 8.3
Same name and namespace in other branches
- 8.2 advagg_css_minify/yui/CSSMin.inc \CSSmin::lowercase_pseudo_first()
File
- advagg_css_minify/
yui/ CSSMin.inc, line 669
Class
Code
private function lowercase_pseudo_first($matches) {
return ':first-' . strtolower($matches[1]) . ' ' . $matches[2];
}