2022-03-17 10:25:51 +03:00
|
|
|
input::-webkit-input-placeholder {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input:-moz-placeholder {
|
2022-03-15 09:58:22 +03:00
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input::-moz-placeholder {
|
|
|
|
color: red;
|
|
|
|
}
|
2022-03-17 10:25:51 +03:00
|
|
|
input:-ms-input-placeholder {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input::-ms-input-placeholder {
|
2022-03-15 09:58:22 +03:00
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input::placeholder {
|
|
|
|
color: red;
|
|
|
|
}
|
2022-03-17 10:25:51 +03:00
|
|
|
input::-webkit-input-placeholder,
|
|
|
|
#fs-toggle:-webkit-full-screen {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input:-moz-placeholder,
|
|
|
|
#fs-toggle:-moz-full-screen {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input::-moz-placeholder,
|
|
|
|
#fs-toggle:-moz-full-screen {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input:-ms-input-placeholder,
|
|
|
|
#fs-toggle:-ms-fullscreen {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input::-ms-input-placeholder,
|
|
|
|
#fs-toggle:-ms-fullscreen {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
input::placeholder,
|
|
|
|
#fs-toggle:fullscreen {
|
|
|
|
color: red;
|
|
|
|
}
|
2022-04-14 07:10:30 +03:00
|
|
|
input::-webkit-input-placeholder {
|
|
|
|
-webkit-backdrop-filter: blur(2px);
|
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
}
|
|
|
|
input:-moz-placeholder {
|
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
}
|
|
|
|
input::-moz-placeholder {
|
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
}
|
|
|
|
input:-ms-input-placeholder {
|
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
}
|
|
|
|
input::-ms-input-placeholder {
|
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
}
|
|
|
|
input::placeholder {
|
|
|
|
-webkit-backdrop-filter: blur(2px);
|
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
}
|
|
|
|
input.appearance::-webkit-input-placeholder {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
input.appearance:-moz-placeholder {
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
input.appearance::-moz-placeholder {
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
input.appearance:-ms-input-placeholder {
|
|
|
|
-ms-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
input.appearance::-ms-input-placeholder {
|
|
|
|
-ms-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
input.appearance::placeholder {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
-ms-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|