mirror of
https://github.com/pure-css/pure.git
synced 2025-01-13 02:04:23 +00:00
Merge pull request #50 from rcbdev/master
#49 Updated form styles - textarea matches input
This commit is contained in:
commit
261a218d0e
@ -7,6 +7,8 @@ NEXT
|
||||
* Fixed: Responsive grids fails to apply when another class precedes the unit
|
||||
class in markup. [#44]
|
||||
|
||||
* Fixed: textarea does not match input styling in forms. [#49]
|
||||
|
||||
|
||||
0.1.0 (2013-05-24)
|
||||
------------------
|
||||
|
@ -1,5 +1,6 @@
|
||||
.pure-form input,
|
||||
.pure-form select {
|
||||
.pure-form select,
|
||||
.pure-form textarea {
|
||||
padding: 0.5em 0.6em;
|
||||
display: inline-block;
|
||||
border: 1px solid #ccc;
|
||||
@ -18,7 +19,8 @@
|
||||
}
|
||||
|
||||
.pure-form input:focus,
|
||||
.pure-form select:focus {
|
||||
.pure-form select:focus,
|
||||
.pure-form textarea:focus {
|
||||
outline: 0;
|
||||
outline: thin dotted \9; /* IE6-9 */
|
||||
border-color: #129FEA;
|
||||
|
Loading…
Reference in New Issue
Block a user