From a5416d8087282939cb30d4669129d9a8481e801f Mon Sep 17 00:00:00 2001 From: Moonchild Date: Fri, 2 Jul 2021 19:49:34 +0000 Subject: [PATCH] [Pale-Moon] Issue #1872 - Part 7: Make the the search placeholder less obnoxious. Reducing opacity and making it Italic makes it less confusing of an element to deal with. --- .../palemoon/components/abouthome/aboutHome.css | 5 +++++ application/palemoon/components/newtab/newTab.css | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/application/palemoon/components/abouthome/aboutHome.css b/application/palemoon/components/abouthome/aboutHome.css index 0cd69edade..7bb647bdaf 100644 --- a/application/palemoon/components/abouthome/aboutHome.css +++ b/application/palemoon/components/abouthome/aboutHome.css @@ -112,6 +112,11 @@ a { border-color: rgba(92, 133, 214, 0.6) rgba(78, 114, 188, 0.6) rgba(41, 82, 163, 0.6); } +#searchText::placeholder { + font-style: italic; + opacity: 0.3; +} + #searchSubmit { margin-inline-start: -1px; background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1)) padding-box; diff --git a/application/palemoon/components/newtab/newTab.css b/application/palemoon/components/newtab/newTab.css index 5c6d648f24..eac84f4f43 100644 --- a/application/palemoon/components/newtab/newTab.css +++ b/application/palemoon/components/newtab/newTab.css @@ -236,11 +236,6 @@ input[type=button] { margin: 10px 0 15px; } -#searchContainer[page-disabled] { - opacity: 0; - pointer-events: none; -} - #searchForm { width: 470px; display: -moz-box; @@ -294,6 +289,11 @@ input[type=button] { border-color: rgba(92, 133, 214, 0.6) rgba(78, 114, 188, 0.6) rgba(41, 82, 163, 0.6); } +#searchText::placeholder { + font-style: italic; + opacity: 0.3; +} + #searchSubmit { margin-inline-start: -1px; background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1)) padding-box;