X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_samples%2Fui_color.html;h=78e0104899d1336e2da09d76ef3e2615283a0f20;hp=8ba1acf232c7693a403252401052dd91f1598166;hb=48b1db88210b4160dce439c6e3e32e14af8c106b;hpb=9afde8772159bd3436f1f5b7862960307710ae5a diff --git a/_samples/ui_color.html b/_samples/ui_color.html index 8ba1acf..78e0104 100644 --- a/_samples/ui_color.html +++ b/_samples/ui_color.html @@ -1,20 +1,53 @@ - UI Color Setting Tool - CKEditor Sample + UI Color Picker — CKEditor Sample -

- CKEditor Sample +

+ CKEditor Sample — UI Color Picker

+
+

+ This sample shows how to automatically replace <textarea> elements + with a CKEditor instance with an option to change the color of its user interface. +

+

Setting the User Interface Color

+

+ To specify the color of the user interface, set the uiColor property: +

+
CKEDITOR.replace( 'textarea_id',
+	{
+		uiColor: '#EE0000'
+	});
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+

Enabling the Color Picker

+

+ If the uicolor plugin along with the dedicated UIColor + toolbar button is added to CKEditor, the user will also be able to pick the color of the + UI from the color palette available in the UI Color Picker dialog window. +

+

+ To insert a CKEditor instance with the uicolor plugin enabled, + use the following JavaScript call: +

+
CKEDITOR.replace( 'textarea_id',
+	{
+		extraPlugins : 'uicolor',
+		toolbar : [ [ 'Bold', 'Italic' ], [ 'UIColor' ] ]
+	});
+

- Click the UI Color Picker button to test your color preferences at runtime.

+ Click the UI Color Picker button to test your color preferences at runtime. +

+

+ The first editor instance includes the UI Color Picker toolbar button, + but the default UI color is not defined, so the editor uses the skin color. +

@@ -49,6 +87,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license

+ The second editor instance includes the UI Color Picker toolbar button. The + default UI color was defined, so the skin color is not used. +

+