Merge "Fix width of headings in mobile editor"

This commit is contained in:
jenkins-bot 2018-08-29 00:49:50 +00:00 committed by Gerrit Code Review
commit 6f9a81861a
1 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,12 @@
overflow: hidden;
}
// We don't need display:table as there are no edit/collapse buttons
// Also display:table causes CE issues in Mobile Safari (T202991)
h1, h2, h3, h4, h5 {
display: block;
}
// Styling for images (as output by Parsiod)
// These styles are mostly derived from content.parsoid.less, which the Minerva skin
// opts out of (since the styles are largely Vectorish).