From 739b7e5c663ecd026295b303356c3d278afd6be9 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sun, 8 May 2011 14:44:43 +0200 Subject: [PATCH] Fix placeholder color on webkit. --- 4chan_x.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.js b/4chan_x.js index 49ffeef5c..879943fc9 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -2363,7 +2363,7 @@ overflow: hidden;\ }\ /* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */\ - #qr input:-webkit-input-placeholder {\ + #qr input::-webkit-input-placeholder {\ color: grey;\ }\ #qr input:-moz-placeholder {\ diff --git a/script.coffee b/script.coffee index bf083257a..3cf5c3df1 100644 --- a/script.coffee +++ b/script.coffee @@ -1867,7 +1867,7 @@ main = overflow: hidden; } /* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */ - #qr input:-webkit-input-placeholder { + #qr input::-webkit-input-placeholder { color: grey; } #qr input:-moz-placeholder {