1
0

trumbowyg.mathml.scss 704 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * Trumbowyg v2.22.0 - A lightweight WYSIWYG editor
  3. * Default stylesheet for Trumbowyg editor plugin
  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. &[inline="false"] {
  14. display: block;
  15. width: 100%;
  16. }
  17. &:hover {
  18. pointer-events: none;
  19. &::after {
  20. content: '\270E';
  21. position: absolute;
  22. top: 0;
  23. right: 0;
  24. bottom: 0;
  25. left: 0;
  26. background-color: rgba(255, 255, 255, 0.83);
  27. box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83);
  28. cursor: pointer;
  29. pointer-events: auto;
  30. }
  31. }
  32. }