trumbowyg.mathml.scss 376 B

12345678910111213141516171819202122232425
  1. .mathMlContainer {
  2. position: relative;
  3. &[inline="false"] {
  4. display: block;
  5. width: 100%;
  6. }
  7. &:hover {
  8. pointer-events: none;
  9. &:after {
  10. content: '\270E';
  11. pointer-events: auto;
  12. position: absolute;
  13. left: 0px;
  14. top: 0px;
  15. background-color: #ffffffd4;
  16. cursor: pointer;
  17. bottom: 0px;
  18. right: 0px;
  19. box-shadow: 0 0 5px 5px #ffffffd4;
  20. }
  21. }
  22. }