css: add box-sizing: border-box to base css.

This makes it so that an element's width includes borders and padding,
so that borders or padding don't cause an element to exceed its
specified width. This is a standard part of most CSS resets.

https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing
This commit is contained in:
evazion
2021-02-16 08:51:12 -06:00
parent 7b3322bfd1
commit 19aea560db
3 changed files with 4 additions and 3 deletions

View File

@@ -138,7 +138,6 @@ div.ui-dialog {
textarea, input[type="text"] {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
form.simple_form {