blob: e7b33cef6381b2556fdcdcc91ab3c04cb360adb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
textarea::placeholder {
color: green;
opacity: 1.0;
}
textarea:placeholder-shown {
appearance: none;
color: FieldText;
background-color: red;
}
textarea:placeholder-shown.shown,
textarea.shown-ref {
appearance: none;
color: green;
background-color: #c7c7c7;
font-style: italic;
border: 2px solid green;
height: 200px;
width: 200px;
}
|