aboutsummaryrefslogtreecommitdiff
path: root/sources/plugins/colordialog/dialogs/colordialog.css
diff options
context:
space:
mode:
Diffstat (limited to 'sources/plugins/colordialog/dialogs/colordialog.css')
-rw-r--r--sources/plugins/colordialog/dialogs/colordialog.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/sources/plugins/colordialog/dialogs/colordialog.css b/sources/plugins/colordialog/dialogs/colordialog.css
new file mode 100644
index 0000000..3ec0d2a
--- /dev/null
+++ b/sources/plugins/colordialog/dialogs/colordialog.css
@@ -0,0 +1,20 @@
1/**
2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6.cke_colordialog_colorcell {
7 width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */
8 height: 14px;
9 padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */
10}
11
12.cke_colordialog_colorcell.cke_colordialog_focused_light,
13.cke_colordialog_colorcell.cke_colordialog_focused_dark {
14 padding: 0; /* Shrink cell to allow 1px border indicating focus. */
15 border: 1px dotted #000;
16}
17
18.cke_colordialog_colorcell.cke_colordialog_focused_dark {
19 border-color: #FFF;
20}