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:
@@ -138,7 +138,6 @@ div.ui-dialog {
|
||||
textarea, input[type="text"] {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
form.simple_form {
|
||||
|
||||
Reference in New Issue
Block a user