Commit cf9334bd authored by Mark Otto's avatar Mark Otto
Browse files

fixes #4725: width of .uneditable-input should match standard text input width

parent 22c4f3d0
Showing with 4 additions and 2 deletions
+4 -2
......@@ -960,7 +960,8 @@ input[type="color"],
}
input,
textarea {
textarea,
.uneditable-input {
width: 206px;
}
......
......@@ -91,7 +91,8 @@ input[type="color"],
// Reset appearance properties for textual inputs and textarea
// Declare width for legacy (can't be on input[type=*] selectors or it's too specific)
input,
textarea {
textarea,
.uneditable-input {
width: 206px; // plus 12px padding and 2px border
}
// Reset height since textareas have rows
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment