openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

trumbowyg.mathml.scss (680B)


      1 /**
      2  * Trumbowyg v2.10.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 
     12 .mathMlContainer {
     13 	
     14 	position: relative;
     15 	
     16 	&[inline="false"] {
     17 		display: block;
     18 		width: 100%;
     19 	}
     20 	
     21 	&:hover {
     22 		pointer-events: none;
     23 		&:after {
     24 			content: '\270E';
     25 			pointer-events: auto;
     26 			position: absolute;
     27 			left: 0px;
     28 			top: 0px;
     29 			background-color: #ffffffd4;
     30 			cursor: pointer;
     31 			bottom: 0px;
     32 			right: 0px;
     33 			box-shadow: 0 0 5px 5px #ffffffd4;
     34 		}
     35 	}
     36 }