
/****
* Plugin Name: TinyMCE Annotate
* Description: Create annotations on your posts or pages
* Version:     1.1.2
* Author:      xyulex
* Author URI:  https://profiles.wordpress.org/xyulex/
* License:     GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
.annotation:hover {
    cursor: pointer;
}

.annotation:hover:after {
    content: attr(data-author) ':\A' attr(data-annotation);
    color: #333;
    position: absolute;
    white-space: pre;
    z-index: 20;
    -moz-border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    border: 0.2rem solid #000;
    padding: 1rem;
    background-color: #fff;
    font-size: 1.4rem;
}