-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Polish placeholders, inserter, responsiveness #1439
Conversation
@@ -210,7 +210,7 @@ class VisualEditorBlockList extends Component { | |||
type="text" | |||
readOnly | |||
className="editor-visual-editor__placeholder" | |||
value={ ! blocks.length ? __( 'Write your story.' ) : __( 'Write…' ) } | |||
value={ ! blocks.length ? __( 'Write your story' ) : __( 'Write…' ) } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the punctuation before :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmmm you prefer with the period? For me that seems so finite especially when you're just about to blog.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It feels weird to see sentences in the content without punctuation, but I'm willing to concede.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be okay with an ellipsis instead of a period. But it's just double ellipsi then...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's go with your intuition.
This normalizes the color with placeholder text, and polishes the alignment a little.
Hide movers and config toolbars on the side. These will be resurfaced as part of a separate effort in #705.
Needs more work.
82880ad
to
13e2178
Compare
Enable media-text in all builds
This PR does a number of things. It normalizes the color of the "new post" placeholders and inserter:
Tweak the alignment of the inserter a little.
Frees up further space on mobile for more toolbar space.
Hides the movers and config buttons on mobile. This is pending further improvement in #705, where I need to first investigate the potential accessibility implications.