From 2f0cd22d5be245392a440139ce07e64587ae9b30 Mon Sep 17 00:00:00 2001 From: lukecarbis Date: Wed, 14 Nov 2012 08:20:52 +1000 Subject: [PATCH] Password Inputs Adds password input types to styles for text and email inputs. --- style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 3ed8bdcd..51a08936 100644 --- a/style.css +++ b/style.css @@ -281,6 +281,7 @@ input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly i } input[type=text], input[type=email], +input[type=password], textarea { color: #666; border: 1px solid #ccc; @@ -288,11 +289,13 @@ textarea { } input[type=text]:focus, input[type=email]:focus, +input[type=password]:focus, textarea:focus { color: #111; } input[type=text], -input[type=email] { +input[type=email], +input[type=password] { padding: 3px; } textarea {