1.plugin-autotooltip_tip 2{ 3 position: absolute; 4 display: block; 5 opacity: 0; 6 transition: opacity .3s ease-in-out; 7 padding: 2px 12px 3px 7px; 8 margin-left: 5px; 9 z-index: 99999; 10 pointer-events: none; 11 border-radius: 3px; 12 color: #FFF; 13 background: rgba(20, 20, 20, 0.85); 14} 15 16.plugin-autotooltip_big { 17 padding: 12px; 18 border-radius: 6px; 19 20 > *:first-child { 21 margin-top: 0; 22 padding-top: 0; 23 } 24 25 > .level3 > *:last-child { 26 margin-bottom: 0; 27 padding-bottom: 0; 28 } 29} 30 31.plugin-autotooltip--visible { 32 opacity: 1; 33} 34 35.plugin-autotooltip-hidden-tip, .plugin-autotooltip-hidden-classes { 36 display: none; 37} 38 39.plugin-autotooltip_linked { 40 display: inline; 41} 42 43.plugin-autotooltip__simple { 44 border-bottom: 1px dotted black; 45} 46 47 48// Test alternate style 49.plugin-autotooltip__blue { 50 color: #FFF; 51 background: rgba(0, 0, 40, 0.85); 52}