Index: editors/css/fckeditor.css =================================================================== RCS file: editors/css/fckeditor.css diff -N editors/css/fckeditor.css --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ editors/css/fckeditor.css 30 Jan 2009 18:53:45 -0000 @@ -0,0 +1,25 @@ +/* $Id: tinymce-3.css,v 1.3 2008/10/29 00:35:11 sun Exp $ */ + +/** + * @file + * FCKeditor 2.x. Loaded by fckeditor.config.js. + */ + +/** + * Align all buttons in a single row, so they wrap into multiple rows if required. + */ +#xToolbar .TB_Toolbar { + display: block; + height: auto; + margin-bottom: 1px; +} +#xToolbar .TB_Toolbar td { + display: inline; + float: left; + height: 22px; +} +#xToolbar .TB_Toolbar td td { + display: table-cell; + float: none; + height: auto; +} Index: editors/js/fckeditor.config.js =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/js/fckeditor.config.js,v retrieving revision 1.1.2.3 diff -u -p -r1.1.2.3 fckeditor.config.js --- editors/js/fckeditor.config.js 1 Feb 2009 05:58:25 -0000 1.1.2.3 +++ editors/js/fckeditor.config.js 1 Feb 2009 06:01:44 -0000 @@ -15,3 +15,8 @@ var wysiwygSettings = window.parent.Drup */ FCKConfig.ToolbarSets['Wysiwyg'] = wysiwygSettings.buttons; +/** + * Apply custom editor UI stylesheet. + */ +FCKTools.AppendStyleSheet(document, FCKConfig.FullBasePath.replace(/fckeditor\/editor\//, 'editors/css/fckeditor.css')); +