ember-component-css icon indicating copy to clipboard operation
ember-component-css copied to clipboard

An Ember CLI addon which allows you to specify styles for individual components

Results 57 ember-component-css issues
Sort by recently updated
recently updated
newest added

Imagine a nested component with an element that shares the class name of an element in it's parent component, or even uses a class that is also defined in the...

in progress

Currently, using the `&` parent selector it applies a class above the component class, which breaks the whole encapsulation rule: eg: ``` sass .button { .active & { color: blue;...

👋 maintainers of this excellent addon! I'm working on `ember-cli-addon-docs`, which depends on `ember-component-css`, and I was trying to define a `treeForAddonStyles()` hook in my `index.js`. It wasn't getting called...

I'm using this addon to add styles to components in my addon that I'm creating. My addon is using `pods` structure. When I test my addon with the dummy app,...

Engines do not appear supported right now since the [currentPath](https://github.com/ebryn/ember-component-css/blob/master/addon/initializers/route-styles.js#L15) contains the prefix of the engine name. However, the podName manifest is keyed off the route name. For example, the...

``` DEPRECATION WARNING on line 1, column 8 of /ember-app/tmp/sass_compiler-input_base_path-xAOqyt5U.tmp/app/styles/app.scss: Including .css files with @import is non-standard behaviour which will be removed in future versions of LibSass. Use a custom...

I think it'd be pretty cool to have this addon support module unification :-D as is, it looks like the styles aren't getting picked up.

### Background > Design and document for inheritance or else prohibit it. -Joshua Bloch, Effective Java There are many cases where I have a component with some internal structure: ```hbs...

Hi there! Our team just decided to start using ember-component-css (which has been great so far!) and in the process of cramming scss files into our pods, I ran across...