[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.
This commit is contained in:
Moonchild 2021-07-02 19:49:34 +00:00 committed by roytam1
commit a5416d8087
2 changed files with 10 additions and 5 deletions

View file

@ -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;

View file

@ -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;