From 4c3f98b69a667b94f3162599d3a8a023f83e912d Mon Sep 17 00:00:00 2001 From: Patrick <patrick.wuerstle@gmx.de> Date: Tue, 22 Jun 2021 11:45:39 +0200 Subject: [PATCH] made the placeholder text a little lighter --- public/css/search.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/public/css/search.css b/public/css/search.css index a8b3332..1d71e88 100644 --- a/public/css/search.css +++ b/public/css/search.css @@ -147,3 +147,15 @@ body { .linesearch { display: flex; /* equal height of the children */ } + ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ + color: rgb(189, 189, 189); + opacity: 1; /* Firefox */ + } + + :-ms-input-placeholder { /* Internet Explorer 10-11 */ + color: rgb(189, 189, 189); + } + + ::-ms-input-placeholder { /* Microsoft Edge */ + color: rgb(189, 189, 189); + } \ No newline at end of file -- GitLab