When adding CSS styles in the specified htm file's templateUrl while loading a directive, I wonder if this is a bad idea. Will it be repeated every time the template is instantiated on the rendered page, or does Angular handle this differently? By using the inspector, it appears that it does get repeated with each instance of the template.
So, how can I load CSS that is scoped to a template (directive) and only load it when the template is loaded?
Perhaps I am just over-optimizing.