/**
 * Trumbowyg v2.0.0-beta.7 - A lightweight WYSIWYG editor
 * Default stylesheet for Trumbowyg editor
 * ------------------------
 * @link http://alex-d.github.io/Trumbowyg
 * @license MIT
 * @author Alexandre Demode (Alex-D)
 *         Twitter : @AlexandreDemode
 *         Website : alex-d.fr
 */

@mixin sprite-pos($_item, $retina: false){
    @if($retina == false){
        background-position: nth($_item, 1)+5 nth($_item, 2)+5;
    } @else {
        background-position: round(nth($_item, 1)/ 2)+5 round(nth($_item, 2)/ 2)+5;
    }
}