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
match example:
unmatched example:
Why this is happening and how can I find all the references?
@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?