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
Recent comments
Since Bee doesn't seem to have any active sites using it - I wonder if that is a viable option? What do you mean by that? Loads of sites use it but it is not a module, rather...
Cloudflare specific advice needed
My "unexpected shutdown" turned out to be my VPS Host replacing the kernal - they shutdown then restarted the server.
Cloudflare specific advice needed
My suggestions, if there is time to look at recent bug reports: (1) Not sure if the fix for this issue still needs a code review to get labeled as RTBC: Editor link autocomplete...
July 9th, 2026 - Weekly Meetings