I have a sample.phtml partial in a ZF 1 environment. CSS files are included in the head.phtml file.
If I construct in sample.phtml a style section like following the CSS code completion will not work, only for text-color1.
<style>
.text-color1 {
color: #fff;
}
</style>
If I delete this style section the CSS code completion will work fine in the partial.
Any suggestions?