mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-09 13:30:34 +00:00
11 lines
334 B
CSS
11 lines
334 B
CSS
|
textarea.placeholder,
|
||
|
input.placeholder,
|
||
|
input::-moz-placeholder,
|
||
|
textarea::-moz-placeholder {
|
||
|
/* Unfortunately, we can't style the <input> or <textarea> text so we can't
|
||
|
set it to opacity: 0.54; which means we have to revert the style to
|
||
|
something that doesn't include an opacity. */
|
||
|
color: GrayText;
|
||
|
opacity: 1.0;
|
||
|
}
|