mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
18 lines
357 B
Plaintext
18 lines
357 B
Plaintext
// Compatibility for browsers.
|
|
|
|
// Placeholder text
|
|
.placeholder(@color: @input-placeholder-color) {
|
|
// Firefox
|
|
&::-moz-placeholder {
|
|
opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
|
|
}
|
|
|
|
&::placeholder {
|
|
color: @color;
|
|
}
|
|
|
|
&:placeholder-shown {
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|