From 5646f69041af08c6131237b27bd8adedd4a717e7 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 3 Nov 2005 12:47:01 +0100 Subject: a small CSS hack to make the buttons work in IE5.2 Mac darcs-hash:20051103114701-6e07b-cb87eca037066a21f59da7f14e65986873607e29.gz --- lib/exe/css.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/exe/css.php') diff --git a/lib/exe/css.php b/lib/exe/css.php index a5b3eec66..2fb30999a 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -206,11 +206,11 @@ function css_pluginstyles($mode='screen'){ function css_compress($css){ // strip whitespaces $css = preg_replace('![\r\n\t ]+!',' ',$css); - $css = preg_replace('/ ?([:;,{}]) ?/','\\1',$css); + $css = preg_replace('/ ?([:;,{}\/]) ?/','\\1',$css); // strip comments (ungreedy) // We keep very small comments to maintain typical browser hacks - $css = preg_replace('!(/\*)(.{4,})(\*/)!U','',$css); + $css = preg_replace('#(/\*)((?!\*/).){4,}(\*/)#Us','',$css); // shorten colors $css = preg_replace("/#([0-9a-fA-F]{1})\\1([0-9a-fA-F]{1})\\2([0-9a-fA-F]{1})\\3/", "#\\1\\2\\3",$css); -- cgit v1.2.3