Commit cf9334bd authored by Mark Otto's avatar Mark Otto

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

parent 22c4f3d0
...@@ -960,7 +960,8 @@ input[type="color"], ...@@ -960,7 +960,8 @@ input[type="color"],
} }
input, input,
textarea { textarea,
.uneditable-input {
width: 206px; width: 206px;
} }
......
...@@ -91,7 +91,8 @@ input[type="color"], ...@@ -91,7 +91,8 @@ input[type="color"],
// Reset appearance properties for textual inputs and textarea // Reset appearance properties for textual inputs and textarea
// Declare width for legacy (can't be on input[type=*] selectors or it's too specific) // Declare width for legacy (can't be on input[type=*] selectors or it's too specific)
input, input,
textarea { textarea,
.uneditable-input {
width: 206px; // plus 12px padding and 2px border width: 206px; // plus 12px padding and 2px border
} }
// Reset height since textareas have rows // Reset height since textareas have rows
......
Markdown is supported
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