Fixed rows attribute being ignored on textarea

Specify height with CSS on a textarea makes it ignore the rows
attribute. Fixed it by moving the height declaration into its own group
of selectors.
This commit is contained in:
Edward-Lombe 2015-01-15 11:13:00 +11:00
parent 88f03612b0
commit 6ae69f294a

10
css/skeleton.css vendored
View File

@ -234,13 +234,21 @@ input[type="url"],
input[type="password"], input[type="password"],
textarea, textarea,
select { select {
height: 38px;
padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
background-color: #fff; background-color: #fff;
border: 1px solid #D1D1D1; border: 1px solid #D1D1D1;
border-radius: 4px; border-radius: 4px;
box-shadow: none; box-shadow: none;
box-sizing: border-box; } box-sizing: border-box; }
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
select {
height: 38px; }
/* Removes awkward default styles on some inputs for iOS */ /* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="email"],
input[type="number"], input[type="number"],