1
0

trumbowyg.mathml.css 768 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Trumbowyg v2.22.0 - A lightweight WYSIWYG editor
  3. * Trumbowyg plugin stylesheet
  4. * ------------------------
  5. * @link http://alex-d.github.io/Trumbowyg
  6. * @license MIT
  7. * @author Alexandre Demode (Alex-D)
  8. * Twitter : @AlexandreDemode
  9. * Website : alex-d.fr
  10. */
  11. .mathMlContainer {
  12. position: relative; }
  13. .mathMlContainer[inline="false"] {
  14. display: block;
  15. width: 100%; }
  16. .mathMlContainer:hover {
  17. pointer-events: none; }
  18. .mathMlContainer:hover::after {
  19. content: '\270E';
  20. position: absolute;
  21. top: 0;
  22. right: 0;
  23. bottom: 0;
  24. left: 0;
  25. background-color: rgba(255, 255, 255, 0.83);
  26. box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83);
  27. cursor: pointer;
  28. pointer-events: auto; }