/** * Plugin Name: Full TinyMCE WordPress Editor redo * Plugin URI: http://87pixels.co.za/87pixels-tinymce-advanced * Version: 1.2 * Author: 87Pixels * Author URI: http://www.87pixels.co.za * Description: Extends and enhances the default WordPress editor * License: GPL2 */ body { background: #f1f1f1 !important; } /** * Checkbox styles and animations */ .checkbox label:after { content: ''; display: table; clear: both; } .checkbox .cr { position: relative; display: inline-block; border: 1px solid #a9a9a9; border-radius: .25em; width: 1.3em; height: 1.3em; float: left; margin-right: .5em; } .checkbox .cr .cr-icon { position: absolute; font-size: .8em; line-height: 0; top: 50%; left: 20%; } .checkbox label input[type="checkbox"] { display: none; } .checkbox label input[type="checkbox"] + .cr > .cr-icon { transform: scale(3) rotateZ(-20deg); opacity: 0; transition: all .3s ease-in; } .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon { transform: scale(1) rotateZ(0deg); opacity: 1; } .checkbox label input[type="checkbox"]:disabled + .cr { opacity: .5; } .input-group-addon.checkbox { padding: 8px 0px 0px 10px; } .input-group .form-control { background: #fff !important; border-left: 1px solid rgba(0,0,0,.15); } /** * input and labels */ label { font-size: 1em; }