Merge pull request #50 from rcbdev/master

#49 Updated form styles - textarea matches input
This commit is contained in:
Tilo 2013-06-03 16:24:55 -07:00
commit 261a218d0e
2 changed files with 6 additions and 2 deletions

View File

@ -7,6 +7,8 @@ NEXT
* Fixed: Responsive grids fails to apply when another class precedes the unit * Fixed: Responsive grids fails to apply when another class precedes the unit
class in markup. [#44] class in markup. [#44]
* Fixed: textarea does not match input styling in forms. [#49]
0.1.0 (2013-05-24) 0.1.0 (2013-05-24)
------------------ ------------------

View File

@ -1,5 +1,6 @@
.pure-form input, .pure-form input,
.pure-form select { .pure-form select,
.pure-form textarea {
padding: 0.5em 0.6em; padding: 0.5em 0.6em;
display: inline-block; display: inline-block;
border: 1px solid #ccc; border: 1px solid #ccc;
@ -18,7 +19,8 @@
} }
.pure-form input:focus, .pure-form input:focus,
.pure-form select:focus { .pure-form select:focus,
.pure-form textarea:focus {
outline: 0; outline: 0;
outline: thin dotted \9; /* IE6-9 */ outline: thin dotted \9; /* IE6-9 */
border-color: #129FEA; border-color: #129FEA;