Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit 8c72653

Browse files
committed
Fixed placeholder in IE
1 parent cc10a2a commit 8c72653

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

app/less/app.less

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2869,13 +2869,23 @@ a.composer_command_option.composer_autocomplete_option_active .composer_command_
28692869
}
28702870
}
28712871

2872+
// Mozilla hack
28722873
@-moz-document url-prefix() {
28732874
.composer_rich_textarea:empty:active:before,
28742875
.composer_rich_textarea:empty:focus:before {
28752876
display: none;
28762877
}
28772878
}
28782879

2880+
// IE hack
2881+
_:-ms-lang(x), .composer_rich_textarea:empty:active:before {
2882+
display: none;
2883+
}
2884+
_:-ms-lang(x), .composer_rich_textarea:empty:focus:before {
2885+
display: none;
2886+
}
2887+
2888+
28792889
.composer_command_btn {
28802890
display: block;
28812891
position: absolute;

0 commit comments

Comments
 (0)