Commit 5bb55e46 authored by Mark Otto's avatar Mark Otto

change fixed height on responsive textareas to min-height

parent 343012a9
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
.uneditable-input { .uneditable-input {
display: block; display: block;
width: 100%; width: 100%;
height: 28px; min-height: 28px;
/* Make inputs at least the height of their button counterpart */ /* Make inputs at least the height of their button counterpart */
/* Makes inputs behave like true block-level elements */ /* Makes inputs behave like true block-level elements */
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
.uneditable-input { .uneditable-input {
display: block; display: block;
width: 100%; width: 100%;
height: 28px; /* Make inputs at least the height of their button counterpart */ min-height: 28px; /* Make inputs at least the height of their button counterpart */
/* Makes inputs behave like true block-level elements */ /* Makes inputs behave like true block-level elements */
-webkit-box-sizing: border-box; /* Older Webkit */ -webkit-box-sizing: border-box; /* Older Webkit */
-moz-box-sizing: border-box; /* Older FF */ -moz-box-sizing: border-box; /* Older FF */
......
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