| 12345678910111213141516171819202122232425 |
- .mathMlContainer {
-
- position: relative;
-
- &[inline="false"] {
- display: block;
- width: 100%;
- }
-
- &:hover {
- pointer-events: none;
- &:after {
- content: '\270E';
- pointer-events: auto;
- position: absolute;
- left: 0px;
- top: 0px;
- background-color: #ffffffd4;
- cursor: pointer;
- bottom: 0px;
- right: 0px;
- box-shadow: 0 0 5px 5px #ffffffd4;
- }
- }
- }
|