0

您好朋友,我需要在 FCKEditor 4.2 中更改字体系列和大小,但我非常搜索,但在 4.2 ckeditor 版本中没有找到解决此问题的方法。最后我找到了替换 css 类的解决方案。把css类放在这里给有类似问题的朋友,我希望能帮助他们。

谢谢。

/*cke dialog label*/
.cke_dialog_ui_labeled_label {font-family: Tahoma; font-size:11px;}

/*cke dialog title*/
.cke_dialog_title {font-family: Tahoma; font-size:12px;}

/*cke dialog tab*/
.cke_dialog_tab {font-family: Tahoma; font-size:11px;}

/*cke input:text*/
.cke_dialog_ui_labeled_content {font-family: Tahoma;  margin-top:5px; margin-bottom:5px;}

/*cke dialog input text*/
.cke_dialog_ui_input_text { font-family: Tahoma; font-size:12px;}

.cke_dialog_ui_button {font-family: Tahoma; font-size:12px;}

/*cke dialog select*/
.cke_dialog_ui_input_select {font-family: Tahoma; font-size:11px; }
.cke_dialog_ui_input_select option {font-family: Tahoma; font-size:11px; margin-top:2px; }


/*cke ui button text*/
.cke_combo_text { font-family: Tahoma; font-size:11px;}
4

1 回答 1

0

http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-extraPlugins

在 config.js 中,例如更改为类,添加以下内容:显示名称/类

config.font_names = 
    'Arial/arial;' +
    'Comic Sans MS/comic_sans;' +
    'Courier New/courier_new;' +
    'Georgia/georgia;' +
    'Lucida Sans Unicode/lucida;' +
    'Tahoma/tahoma;' +
    'Times New Roman/times_new_roman;' +
    'Trebuchet MS/trebuchet;' +
    'Verdana/verdana';

config.font_style = {
    element: 'span',
    attributes: {'class': '#(family)'}
};

或者

config.font_names = 'Arial/Arial, Helvetica, sans-serif;' +
    'Comic Sans MS/Comic Sans MS, cursive;' +
    'Courier New/Courier New, Courier, monospace;' +
    'Georgia/Georgia, serif;' +
    'Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;' +
    'Tahoma/Tahoma, Geneva, sans-serif;' +
    'Times New Roman/Times New Roman, Times, serif;' +
    'Trebuchet MS/Trebuchet MS, Helvetica, sans-serif;' +
    'Verdana/Verdana, Geneva, sans-serif';

更改内联样式。

于 2014-06-05T15:25:15.833 回答