Basis has the following in its base.css
file:
* {
box-sizing: border-box;
}
According to CSS-Tricks, this is an old method of setting box-sizing
. There's an updated method that may be better:
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
This newer method not only helps with pseudo elements, but also allows easier overriding of box-sizing if need be (see the linked article for more details).
Can/should we update Basis to use the newer method?
Here's a PR: backdrop/backdrop#2991
GitHub Issue #:
4208
Recent comments
Here are some more details about my setup. Yes, I am using a contextual filter. Specifically, I have several content types that have an entity reference field meant to hold references to...
Hide title of a view block if no results?
You can use Rules or the Node Notify module for comments. When a new account is created, I believe there are Rules to send.
Email notifications
There's a few way to accomplish it, but it really depends on your full requirements. I'm working on a contact management module but it won't be released for a few months. There...
Pairing fields