CSS.PHP -file indentation problem
I need to code my CSS inside PHP-files (e.g. pages.css.php). I can successfully turn on the Template Data Languages -> CSS for these files so they get the proper syntax coloring.
However, indentation does not work. If I try to reformat the code, it formats PHP-code fine but not CSS.
Is there a possibility to turn on proper indentation for CSS (or other languages in Template Data Languages).
I Have a PHPStrom 6.0.3 personal licence.
pages.css.php:
<?php
header("Content-type: text/css;charset=utf-8");
?>
#wrapper {
position: relative;
width: 960px;
margin: 0 auto;
box-shadow: 0 0 36px #333;
background: #fff;
}
. . .
请先登录再写评论。
Hi there,


Your example seems to work OK for me (checked in PhpStorm v7 EAP build 131.322).
Before reformat:
After Reformat:
P.S.
PhpStorm EAP
PhpStorm 7 was released today and now this works fine. Nice timing, cool :D