Guest User

Untitled

a guest
Feb 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. /* limit the width of the full-screen editor so the text columns are not too wide */
  2. .mce-fullscreen .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item.mce-last {
  3. max-width: 700px;
  4. }
  5.  
  6. /* when viewing attachements, the bar overlay at the top covers the top of the image.
  7. this makes that bar transparent so you can see the top of the image. */
  8. .toolbar.ril-toolbar {
  9. background-color: transparent;
  10. }
  11.  
  12. /* make list left padding smaller */
  13. .mce-content-body ol,
  14. .mce-content-body ul {
  15. padding-left: 2em;
  16. }
  17.  
  18. /* increase list item vertical margins */
  19. .mce-content-body li {
  20. margin-bottom: 1em;
  21. }
Add Comment
Please, Sign In to add comment