ckeditor/plugins/colordialog/dialogs/colordialog.css
author indvd00m (gotoindvdum[at]gmail[dot]com)
Thu, 15 Dec 2016 18:10:20 +0300
changeset 0 44d330dccc59
permissions -rw-r--r--
Init sample
indvd00m@0
     1
/**
indvd00m@0
     2
 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
indvd00m@0
     3
 * For licensing, see LICENSE.md or http://ckeditor.com/license
indvd00m@0
     4
 */
indvd00m@0
     5
indvd00m@0
     6
.cke_colordialog_colorcell {
indvd00m@0
     7
	width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */
indvd00m@0
     8
	height: 14px;
indvd00m@0
     9
	padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */
indvd00m@0
    10
}
indvd00m@0
    11
indvd00m@0
    12
.cke_colordialog_colorcell.cke_colordialog_focused_light,
indvd00m@0
    13
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
indvd00m@0
    14
	padding: 0; /* Shrink cell to allow 1px border indicating focus. */
indvd00m@0
    15
	border: 1px dotted #000;
indvd00m@0
    16
}
indvd00m@0
    17
indvd00m@0
    18
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
indvd00m@0
    19
	border-color: #FFF;
indvd00m@0
    20
}