0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

🎨 fix title placeholder styles (#728)

closes https://github.com/TryGhost/Ghost/issues/8516
- placeholders are pseudo elements so need to use `::` rather than `:` in their CSS selectors
This commit is contained in:
Kevin Ansfield 2017-06-01 15:56:06 +01:00 committed by GitHub
parent 6c56db1534
commit 108cd94173

View file

@ -237,7 +237,7 @@
padding: 0;
}
.gh-editor-title:placeholder {
.gh-editor-title::placeholder {
font-weight: bold;
}