XF 1.5 Template search is not accurate?

Cyb3r

Well-known member
If what i'm looking for is inside a style propert it cannot be found by template search, for example i'm trying to find all references to this color @xbColor1 but it only shows direct calls to it and not within style properties.

match example:
CSS:
div {
    color: @xbColor1;
}

unmatched example:
CSS:
div {
    @property "navTabSelected.background";
    color: @xbColor1;
    @property "/navTabSelected.background";
}

Why this is happening and how can I find all the references?
 
Top Bottom