Garry Polley

Results 34 comments of Garry Polley

This repository: https://github.com/garrypolley/style-site Whenever I look at the LESS files here https://github.com/garrypolley/style-site/tree/master/assets/less that's when I get the error. Thanks for checking it out.

🚲 🔴 🏠 🚲 🔵 🏠 I think part of the reason was related to tooling. It's pretty simple to write tools that parse text on `--` and `__`. Having...

I think you're wanting the `block__elm--mod` ```html ``` My understanding is that the _only_ order is Block -> Element -> Modifier. The element and/or modifier can be left off, but...

Having an idea of what is at play here would help my understanding. If I read this correctly I would assume what really exists is: `.block--mod` === `.block__element` And the...

Assuming the same markup this is what I would do, largely because I think the toggle is a sub-element of the form. ``` html Option 2 — initial state ```...

I think there are might be a misunderstanding of some of the goals of BEM. From the documentation on why you would use it: ``` No matter what methodology you...

I'm no expert but I think cell-padding attribute will get the most consistent experience cross browser. If the desire is to keep using CSS I'd make this selector: ``` css...

In my opinion it's not "against" BEM to use an HTML tag in a selector. I think `table` is an example of where it makes sense to do it. Tables...

Thanks for the suggestion @foxx Have you looked into making https://github.com/MongoEngine/django-mongoengine/tree/master better support Django + Mongo?

Sqlite is also not scalable. If it were to be used over a long period of time it would not work well. If a db is to be used I...