From 196cb1d83dd66ac749b2ca0afd18900b3c802e11 Mon Sep 17 00:00:00 2001 From: Johnny Date: Fri, 9 May 2014 21:49:11 +1000 Subject: [PATCH] Small update to placeholder styling Firefox 19+ has an opacity set to `::-moz-placeholder`, so it was never *really* `#aaa` to begin with. This gets rid of the `!important` and the `:hover`, making it a lot more consistent with Chrome. --- css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index 545a7422b..13be06eec 100644 --- a/css/style.css +++ b/css/style.css @@ -18,9 +18,9 @@ outline: none; transition: color .25s, border-color .25s, flex .25s; } -.field::-moz-placeholder, -.field:hover::-moz-placeholder { - color: #AAA !important; +.field::-moz-placeholder { + color: #AAA; + opacity: 1; } .field:hover { border-color: #999;