-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add ckeditor colorDialog plugin - EXO-65704 - Meeds-io/MIPs#71
Add ckeditor colorDialog plugin
- Loading branch information
Showing
73 changed files
with
1,254 additions
and
34 deletions.
There are no files selected for viewing
40 changes: 20 additions & 20 deletions
40
...ons-extension-webapp/src/main/webapp/ckeditor/plugins/colordialog/dialogs/colordialog.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/** | ||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or http://ckeditor.com/license | ||
*/ | ||
|
||
.cke_colordialog_colorcell { | ||
width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */ | ||
height: 14px; | ||
padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */ | ||
} | ||
|
||
.cke_colordialog_colorcell.cke_colordialog_focused_light, | ||
.cke_colordialog_colorcell.cke_colordialog_focused_dark { | ||
padding: 0; /* Shrink cell to allow 1px border indicating focus. */ | ||
border: 1px dotted #000; | ||
} | ||
|
||
.cke_colordialog_colorcell.cke_colordialog_focused_dark { | ||
border-color: #FFF; | ||
} | ||
/** | ||
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. | ||
* CKEditor 4 LTS ("Long Term Support") is available under the terms of the Extended Support Model. | ||
*/ | ||
|
||
.cke_colordialog_colorcell { | ||
width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */ | ||
height: 14px; | ||
padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */ | ||
} | ||
|
||
.cke_colordialog_colorcell.cke_colordialog_focused_light, | ||
.cke_colordialog_colorcell.cke_colordialog_focused_dark { | ||
padding: 0; /* Shrink cell to allow 1px border indicating focus. */ | ||
border: 1px dotted #000; | ||
} | ||
|
||
.cke_colordialog_colorcell.cke_colordialog_focused_dark { | ||
border-color: #FFF; | ||
} |
Oops, something went wrong.