5

基本的なTinyMCEセットアップがあり、ツールバーが小さすぎる場合に次の行にドロップダウンするボタンを備えた「流動的な」ツールバーを作成しようとしています。1つのテーブル行にすべてのボタンがあります。

tinyMCE.init({
    mode : "textareas",
    theme : "advanced",
    plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager",
    theme_advanced_buttons1 : "bold,italic,justifyleft,justifycenter,justifyright,justifyfull,"
        +"styleselect,formatselect,fontselect,fontsizeselect,bullist,numlist,link,unlink,image,pdw_toggle,"
        +"pastetext,pasteword,search,replace,outdent,indent,blockquote,undo,redo,code,forecolor,backcolor,"
        +"tablecontrols,hr,removeformat,visualaid,sub,sup,charmap,emotions,media,advhr,print,ltr,rtl,fullscreen,"
        +"cite,abbr,acronym,del,ins,attribs,visualchars,nonbreaking,template,blockquote,insertfile,insertimage,underline,strikethrough",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_buttons4 : "",
    theme_advanced_toolbar_location : "top",
    width: "100%",
    height: "400"
});

私はこれを達成するためにあらゆる種類のCSSを試しましたが、なぜこれが機能しないのかわかりません。

.mceToolbar tr {
    display:block !important;
    width:100% !important;
}
.mceToolbar td {
    clear:none !important;
    display:block !important;
    float:left !important;
}

私が探しているのは次のようなものです(出力ペインのサイズを変更します):http://jsfiddle.net/vKTcq/

ここで私のTinyMCEデモを試すことができます:http://fiddle.tinymce.com/aecaab/1

私は以前にCSSだけでこれを行ったことがあるので、それが可能であると確信しています-私はそれを理解できないようです。何か案は?

4

1 に答える 1

6

ああ、それが見つかりました。white-spaceプロパティはnowrap、ツールバーのすべて、デフォルトのスキン、および他のほとんどのスキンでに設定されています。この CSS を使用してオーバーライドします。

.mceToolbar * {
    white-space: normal !important;
}
.mceToolbar tr,
.mceToolbar td {
    float:left !important;
}

本当に修正が必要な特定の要素はわかりませんwhite-spaceが、これは完全に機能します。

デモ: http://fiddle.tinymce.com/becaab

小さいツールバーを使用した出力例 (ボタンは画面から消える代わりにスタックされます):

ここに画像の説明を入力

于 2012-09-13T06:39:31.493 に答える