-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difficult to create reusable styles (style guide) #1052
Comments
Re: 1. You should actually measure performance. I do not believe the hit will be as bad as you think. Furthermore, the principle idea is that Polymer components should be small and self-contained. In which case, CSS declarations should be relatively limited and scoped. If you find yourself with numerous/lengthy component styles and/or managing components with global styles, you may want to rethink how you are building your components and designing your application. Re: 2. You can use pre-processors and external stylesheets, but, in order to do so, you need a build step. Numerous ways to do this; e.g., use Make, gulp, grunt, <insert_favorite_task_runner> to insert compiled stylesheets into a Ah, and one further point re: 1, if you create a shared asset folder (say of CSS stylesheets: reset, normalize, etc), your components can import those shared assets without a hit to performance, assuming your setup enables deduping. |
Regarding your suggestion to 1., I agree that Polymer elements should be small and self-contained. However, when building an entire app in Polymer, you tend to go in the direction that your app itself is an element, therefore defeating its purpose. That is the case at least in my experience, because things like data binding only work within Polymer elements and self binding templates, and it's probably bad architecture to make your whole app a self-binding template (it seems like a hack nevertheless). As I guess that you have more experience than I do, I'd like to hear your points about you think a proper Polymer app should be built/designed having these considerations about shared styles in mind. It would also be interesting to introduce the concept of using Shadow-less elements (#222) whose purpose should be to allow deliberate use of shared assets and styles. That would be a 4th approach to this issue. As for your no.2 reply, that is an interesting approach, and it's worth exploring. I was testing a setup where it's a cross between a Rails app and a Poylmer app using the emcee gem, and I'm not sure how I would achieve that directly, but there should be a way. |
I've had a lot of luck creating a shared |
That seems a quite pragmatic way to try to manage this. However, you end up importing a lot of SASS and ultimately some CSS in each element: @import "compass/css3/transition";
@import "font-awesome/font-awesome.scss";
@import "element";
How can we design web components so we avoid this unnecessary repetition? |
It's a common practice to include everything inside the components import that is depends on. This should include all of its dependencies and markup. As such, it makes sense to include/import any css the component needs. Importing compass files are harmless. They're only mixins and won't bloat the output .css file. For things like fonts, we usually use an HTML Import to bring it in as a dependency at the top of the element's import: The benefit of this is that all elements that reference this same import URL will be de-duplicated, yet the element still has all of the things (fonts in this case) it depends on. |
I interpreted the "overhead" of "Using /deep/ to target all shadow DOMs" to be a comment on the work required to use existing libraries with custom elements that use shadow DOM and not a comment on performance. If you wanted to use a pre-built CSS framework like Bootstrap, putting a single @ebidell, is the current suggestion to add a |
@ssorallen As a general note on CSS...version 0.8 is being tested now with optional Shadow DOM so theming could also be achieved a bit more like we would expect it to be based on current best practices.
A combination of these might be a good way to go to see what works for you. You can |
I wouldn't recommend including huge libraries like boostrap.css like this. |
Thanks for the round up, @Nevraeka. |
Oh that's very neat, @Nevraeka ! Optional Shadow DOM seems like a good solution, until we can have a more versatile Using the project's own styleguide is similar to using an external library such as Bootstrap, which is now a pain with Shadow DOM and the way styles aren't inherited by custom elements. I wonder if it would be a good idea that you can turn Shadow DOM on/off for any element that you use, even if it's a core element or a paper element. That way, you can have a custom CSS style guide that would impact those elements as well. I am not sure where the fine line is between Shadow DOM being very useful or just a pain to work with in big projects. Any tips from someone with experience here? |
Using lots of <style> elements will be the most performant option in We then share the common.css sheet internally between all widgets that used On Fri, Jan 16, 2015 at 7:47 PM, Cristian Andrei [email protected]
|
@esprehn is |
I assume core-style just inserts a <style> so it should perform about the On Mon, Apr 13, 2015 at 8:45 PM, Mohamed Meligy [email protected]
|
Doesn't this issue simply highlight a limitation or shortcoming with related WebComponent specifications. To me it feels like we trying to hack out a solution specifically around theming existing components and none seem natural and/or intuitive... Am I missing this completely? |
@clintwood That was my take away after building an internal app with polymer last year. I just found a chat transcript from last month talking about this stuff, so it seems like it's at the forefront. I just hope it gets resolved in a way that doesn't just trade bootstrap for polymer-ui. I'd really like to be able to use a la carte components without a huge styling headache. |
Closing this issue due to age and the release of version 1 of Polymer - please feel free to re-open if this is incorrect. |
Even 1.0 doesn't feel like a good solution to the theming problem: https://www.polymer-project.org/1.0/docs/devguide/styling.html#custom-css-mixins CSS4 will go a long way to alleviating the generic website theming problem but polymer/WebComponents feel clunky to me. Which is why I don't bother changing default polymer styles... who wants that headache. A brief somewhat off-topic Web Component rant: It seems to me that shadow dom and a chunk of the other web component spec serves to recreate what is essentially an My $0.02 -- Extending iframe would've solved what web components aimed to in a backwards compatible way. And an even more off-topic rant... entire SPA frameworks have been built to recreate Edit: Oops. html swallowed. |
@ebidel What's the best practice for including a shared library in an element. I understand that the import is de-duplicated, but what's the performance impact on including a large shared style module. Will it get copied in the DOM for each element and parsed separately? |
Polymer is great for encapsulating styles and functionality so it doesn't leek into the main document.
However, when building a larger web application using Polymer, sharing styles is very important to the maintainability of the project. Also, with increasing popularity of SASS in web design, there are numerous libraries that make designer's life easier and stylesheets more maintainable.
Currently in Polymer, there are limited ways of sharing styles, all with serious issues that make building a web application in Polymer resembling a bit the entangled mess of a spaghetti bowl for web designers. These ways are the following, however the issues are obvious and hard to find workarounds to, without affecting the maintainability of the project codebase:
body /deep/
in order to propagate the shared styling. Adds a lot of overhead to the stylesheet, also making things like selector + selector behave unexpectedly.<core-style>
to reuse CSS declarations directly.<core-style>
tag, we can't use the power of pre-processors or including external stylesheetsCSS can indeed be hard to maintain and this is confirmed by the very numerous and strict ways of achieving this job (read BEM, style guides, specificity managing, etc.).
I believe having a great living style guide is one of the important keys to solving the CSS maintainability problem, however it is very hard to find a way to do this properly with Polymer and web components.
This issue is connected to the fact that when building a Polymer app, it tends to go into the direction where your app is a Polymer element itself and made out of other Polymer elements, making it hard to have a common stylesheet that applies to elements in your app.
More specifically, how would we style basic elements like
h1
andh2
, making them share the style for a consistent look across the app, no matter where they are situated in the Shadow DOM tree?The text was updated successfully, but these errors were encountered: