ckeditor/plugins/colordialog/dialogs/colordialog.css
changeset 0 44d330dccc59
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ckeditor/plugins/colordialog/dialogs/colordialog.css	Thu Dec 15 18:10:20 2016 +0300
     1.3 @@ -0,0 +1,20 @@
     1.4 +/**
     1.5 + * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
     1.6 + * For licensing, see LICENSE.md or http://ckeditor.com/license
     1.7 + */
     1.8 +
     1.9 +.cke_colordialog_colorcell {
    1.10 +	width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */
    1.11 +	height: 14px;
    1.12 +	padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */
    1.13 +}
    1.14 +
    1.15 +.cke_colordialog_colorcell.cke_colordialog_focused_light,
    1.16 +.cke_colordialog_colorcell.cke_colordialog_focused_dark {
    1.17 +	padding: 0; /* Shrink cell to allow 1px border indicating focus. */
    1.18 +	border: 1px dotted #000;
    1.19 +}
    1.20 +
    1.21 +.cke_colordialog_colorcell.cke_colordialog_focused_dark {
    1.22 +	border-color: #FFF;
    1.23 +}