upgrading to tinymce 2.0.6.1
This commit is contained in:
parent
0534118f8d
commit
533bf292d3
79 changed files with 28030 additions and 0 deletions
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/_template/lang/ja_euc-jp.js
vendored
Executable file
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/_template/lang/ja_euc-jp.js
vendored
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
// ja-euc-jp language pack
|
||||
|
||||
/* Remember to namespace the language parameters lang_<your plugin>_<some name> */
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
template_title : 'テンプレートのポップアップ',
|
||||
template_desc : 'テンプレートのボタン'
|
||||
});
|
||||
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/_template/lang/ja_shift_jis.js
vendored
Executable file
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/_template/lang/ja_shift_jis.js
vendored
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
// ja-シフトJIS language pack
|
||||
|
||||
/* Remember to namespace the language parameters lang_<your plugin>_<some name> */
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
template_title : 'テンプレートのポップアップ',
|
||||
template_desc : 'テンプレートのボタン'
|
||||
});
|
||||
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/_template/lang/ja_utf-8.js
vendored
Executable file
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/_template/lang/ja_utf-8.js
vendored
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
// ja-utf-8 language pack
|
||||
|
||||
/* Remember to namespace the language parameters lang_<your plugin>_<some name> */
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
template_title : 'テンプレートのポップアップ',
|
||||
template_desc : 'テンプレートのボタン'
|
||||
});
|
||||
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/editor_plugin.js
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/editor_plugin.js
vendored
Normal file
File diff suppressed because one or more lines are too long
252
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js
vendored
Normal file
252
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js
vendored
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
/**
|
||||
* $RCSfile: editor_plugin_src.js,v $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2006/05/03 14:12:12 $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
/* Import plugin specific language pack */
|
||||
tinyMCE.importPluginLanguagePack('layer', 'en');
|
||||
|
||||
var TinyMCE_LayerPlugin = {
|
||||
getInfo : function() {
|
||||
return {
|
||||
longname : 'Layer',
|
||||
author : 'Moxiecode Systems',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_layer.html',
|
||||
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
|
||||
};
|
||||
},
|
||||
|
||||
initInstance : function(inst) {
|
||||
if (tinyMCE.isMSIE && !tinyMCE.isOpera)
|
||||
inst.getDoc().execCommand('2D-Position');
|
||||
},
|
||||
|
||||
handleEvent : function(e) {
|
||||
var inst = tinyMCE.selectedInstance, self = TinyMCE_LayerPlugin;
|
||||
var w = inst.getWin(), le = inst._lastStyleElm, e;
|
||||
|
||||
if (tinyMCE.isGecko) {
|
||||
e = self._getParentLayer(inst.getFocusElement());
|
||||
|
||||
if (e) {
|
||||
if (!inst._lastStyleElm) {
|
||||
e.style.overflow = 'auto';
|
||||
inst._lastStyleElm = e;
|
||||
}
|
||||
} else if (le) {
|
||||
le = inst._lastStyleElm;
|
||||
le.style.width = le.scrollWidth + 'px';
|
||||
le.style.height = le.scrollHeight + 'px';
|
||||
le.style.overflow = '';
|
||||
inst._lastStyleElm = null;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
|
||||
handleVisualAid : function(el, deep, state, inst) {
|
||||
var nl = inst.getDoc().getElementsByTagName("div"), i;
|
||||
|
||||
for (i=0; i<nl.length; i++) {
|
||||
if (new RegExp('absolute|relative|static', 'gi').test(nl[i].style.position)) {
|
||||
if (state)
|
||||
tinyMCE.addCSSClass(nl[i], 'mceVisualAid');
|
||||
else
|
||||
tinyMCE.removeCSSClass(nl[i], 'mceVisualAid');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
getControlHTML : function(cn) {
|
||||
switch (cn) {
|
||||
case "moveforward":
|
||||
return tinyMCE.getButtonHTML(cn, 'lang_layer_forward_desc', '{$pluginurl}/images/forward.gif', 'mceMoveForward', true);
|
||||
|
||||
case "movebackward":
|
||||
return tinyMCE.getButtonHTML(cn, 'lang_layer_backward_desc', '{$pluginurl}/images/backward.gif', 'mceMoveBackward', true);
|
||||
|
||||
case "absolute":
|
||||
return tinyMCE.getButtonHTML(cn, 'lang_layer_absolute_desc', '{$pluginurl}/images/absolute.gif', 'mceMakeAbsolute', true);
|
||||
|
||||
case "insertlayer":
|
||||
return tinyMCE.getButtonHTML(cn, 'lang_layer_insertlayer_desc', '{$pluginurl}/images/insert_layer.gif', 'mceInsertLayer', true);
|
||||
}
|
||||
|
||||
return "";
|
||||
},
|
||||
|
||||
execCommand : function(editor_id, element, command, user_interface, value) {
|
||||
var self = TinyMCE_LayerPlugin;
|
||||
|
||||
// Handle commands
|
||||
switch (command) {
|
||||
case "mceInsertLayer":
|
||||
self._insertLayer();
|
||||
return true;
|
||||
|
||||
case "mceMoveForward":
|
||||
self._move(1);
|
||||
return true;
|
||||
|
||||
case "mceMoveBackward":
|
||||
self._move(-1);
|
||||
return true;
|
||||
|
||||
case "mceMakeAbsolute":
|
||||
self._toggleAbsolute();
|
||||
return true;
|
||||
}
|
||||
|
||||
// Pass to next handler in chain
|
||||
return false;
|
||||
},
|
||||
|
||||
handleNodeChange : function(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
|
||||
var inst = tinyMCE.getInstanceById(editor_id), self = TinyMCE_LayerPlugin;
|
||||
var le = self._getParentLayer(inst.getFocusElement());
|
||||
var p = tinyMCE.getParentElement(inst.getFocusElement(), 'div,p,img');
|
||||
|
||||
tinyMCE.switchClass(editor_id + '_absolute', 'mceButtonDisabled');
|
||||
tinyMCE.switchClass(editor_id + '_moveforward', 'mceButtonDisabled');
|
||||
tinyMCE.switchClass(editor_id + '_movebackward', 'mceButtonDisabled');
|
||||
|
||||
if (p)
|
||||
tinyMCE.switchClass(editor_id + '_absolute', 'mceButtonNormal');
|
||||
|
||||
if (le && le.style.position.toLowerCase() == "absolute") {
|
||||
tinyMCE.switchClass(editor_id + '_absolute', 'mceButtonSelected');
|
||||
tinyMCE.switchClass(editor_id + '_moveforward', 'mceButtonNormal');
|
||||
tinyMCE.switchClass(editor_id + '_movebackward', 'mceButtonNormal');
|
||||
}
|
||||
},
|
||||
|
||||
// Private plugin specific methods
|
||||
|
||||
_move : function(d) {
|
||||
var inst = tinyMCE.selectedInstance, self = TinyMCE_LayerPlugin, i, z = new Array();
|
||||
var le = self._getParentLayer(inst.getFocusElement()), ci = -1, fi = -1;
|
||||
var nl = tinyMCE.selectNodes(inst.getBody(), function(n) {
|
||||
return n.nodeType == 1 && new RegExp('absolute|relative|static', 'gi').test(n.style.position);
|
||||
});
|
||||
|
||||
// Find z-indexes
|
||||
for (i=0; i<nl.length; i++) {
|
||||
z[i] = nl[i].style.zIndex ? parseInt(nl[i].style.zIndex) : 0;
|
||||
|
||||
if (ci < 0 && nl[i] == le)
|
||||
ci = i;
|
||||
}
|
||||
|
||||
if (d < 0) {
|
||||
// Move back
|
||||
|
||||
// Try find a lower one
|
||||
for (i=0; i<z.length; i++) {
|
||||
if (z[i] < z[ci]) {
|
||||
fi = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (fi > -1) {
|
||||
nl[ci].style.zIndex = z[fi];
|
||||
nl[fi].style.zIndex = z[ci];
|
||||
} else {
|
||||
if (z[ci] > 0)
|
||||
nl[ci].style.zIndex = z[ci] - 1;
|
||||
}
|
||||
} else {
|
||||
// Move forward
|
||||
|
||||
// Try find a higher one
|
||||
for (i=0; i<z.length; i++) {
|
||||
if (z[i] > z[ci]) {
|
||||
fi = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (fi > -1) {
|
||||
nl[ci].style.zIndex = z[fi];
|
||||
nl[fi].style.zIndex = z[ci];
|
||||
} else
|
||||
nl[ci].style.zIndex = z[ci] + 1;
|
||||
}
|
||||
|
||||
inst.repaint();
|
||||
},
|
||||
|
||||
_getParentLayer : function(n) {
|
||||
return tinyMCE.getParentNode(n, function(n) {
|
||||
return n.nodeType == 1 && new RegExp('absolute|relative|static', 'gi').test(n.style.position);
|
||||
});
|
||||
},
|
||||
|
||||
_insertLayer : function() {
|
||||
var inst = tinyMCE.selectedInstance;
|
||||
var e = tinyMCE.getParentElement(inst.getFocusElement());
|
||||
var p = tinyMCE.getAbsPosition(e);
|
||||
var d = inst.getDoc();
|
||||
var ne = d.createElement('div');
|
||||
var h = inst.selection.getSelectedHTML();
|
||||
|
||||
// Move div
|
||||
ne.style.position = 'absolute';
|
||||
ne.style.left = p.absLeft + 'px';
|
||||
ne.style.top = (p.absTop > 20 ? p.absTop : 20) + 'px';
|
||||
ne.style.width = '100px';
|
||||
ne.style.height = '100px';
|
||||
ne.className = 'mceVisualAid';
|
||||
|
||||
if (!h)
|
||||
h = tinyMCE.getLang('lang_layer_content');
|
||||
|
||||
ne.innerHTML = h;
|
||||
|
||||
// Add it
|
||||
d.body.appendChild(ne);
|
||||
},
|
||||
|
||||
_toggleAbsolute : function() {
|
||||
var inst = tinyMCE.selectedInstance, self = TinyMCE_LayerPlugin;
|
||||
var le = self._getParentLayer(inst.getFocusElement());
|
||||
|
||||
if (le == null)
|
||||
le = tinyMCE.getParentElement(inst.getFocusElement(), 'div,p,img');
|
||||
|
||||
if (le) {
|
||||
if (le.style.position.toLowerCase() == "absolute") {
|
||||
le.style.position = "";
|
||||
le.style.left = "";
|
||||
le.style.top = "";
|
||||
} else {
|
||||
le.style.position = "absolute";
|
||||
|
||||
if (le.style.left == "")
|
||||
le.style.left = 20 + 'px';
|
||||
|
||||
if (le.style.top == "")
|
||||
le.style.top = 20 + 'px';
|
||||
|
||||
if (le.style.width == "")
|
||||
le.style.width = le.width ? (le.width + 'px') : '100px';
|
||||
|
||||
if (le.style.height == "")
|
||||
le.style.height = le.height ? (le.height + 'px') : '100px';
|
||||
|
||||
tinyMCE.handleVisualAid(inst.getBody(), true, inst.visualAid, inst);
|
||||
}
|
||||
|
||||
inst.repaint();
|
||||
tinyMCE.triggerNodeChange();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCE.addPlugin("layer", TinyMCE_LayerPlugin);
|
||||
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/absolute.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/absolute.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 209 B |
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/backward.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/backward.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 360 B |
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/forward.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/forward.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 358 B |
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/insert_layer.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/images/insert_layer.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 264 B |
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/en.js
vendored
Executable file
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/en.js
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('layer',{
|
||||
insertlayer_desc : 'Insert new layer',
|
||||
forward_desc : 'Move forward',
|
||||
backward_desc : 'Move backward',
|
||||
absolute_desc : 'Toggle absolute positioning',
|
||||
content : 'New layer...'
|
||||
});
|
||||
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/fi.js
vendored
Executable file
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/fi.js
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
// FI lang variables
|
||||
|
||||
tinyMCE.addToLang('layer',{
|
||||
insertlayer_desc : 'Lisää uusi taso',
|
||||
forward_desc : 'Liiku eteenpäin',
|
||||
backward_desc : 'Liiku taaksepäin',
|
||||
absolute_desc : 'Kytke absoluuttinen asettelu päälle/pois',
|
||||
content : 'Uusi taso...'
|
||||
});
|
||||
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/fr.js
vendored
Executable file
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/fr.js
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('layer',{
|
||||
insertlayer_desc : 'Insérer un nouveau calque',
|
||||
forward_desc : 'Avancer',
|
||||
backward_desc : 'Reculer',
|
||||
absolute_desc : 'Passer en positionnement absolu',
|
||||
content : 'Nouveau calque...'
|
||||
});
|
||||
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/it.js
vendored
Executable file
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/langs/it.js
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
// IT lang variables
|
||||
|
||||
tinyMCE.addToLang('layer',{
|
||||
insertlayer_desc : 'Inserisci nuovo layer',
|
||||
forward_desc : 'Sposta verso l\'alto',
|
||||
backward_desc : 'Sposta verso il basso',
|
||||
absolute_desc : 'Abilita o disabilita posizionamento assoluto',
|
||||
content : 'Nuovo livello...'
|
||||
});
|
||||
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/readme.txt
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/layer/readme.txt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Check the TinyMCE documentation for details on this plugin.
|
||||
63
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/css/props.css
vendored
Normal file
63
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/css/props.css
vendored
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
#text_font {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
#text_size {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.mceAddSelectValue {
|
||||
background-color: #DDDDDD;
|
||||
}
|
||||
|
||||
select, #block_text_indent, #box_width, #box_height, #box_padding_top, #box_padding_right, #box_padding_bottom, #box_padding_left {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
#box_margin_top, #box_margin_right, #box_margin_bottom, #box_margin_left, #positioning_width, #positioning_height, #positioning_zindex {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
#positioning_placement_top, #positioning_placement_right, #positioning_placement_bottom, #positioning_placement_left {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
#positioning_clip_top, #positioning_clip_right, #positioning_clip_bottom, #positioning_clip_left {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.panel_wrapper div.current {
|
||||
padding-top: 10px;
|
||||
height: 230px;
|
||||
}
|
||||
|
||||
.delim {
|
||||
b2ackground-color: #DDDDDD;
|
||||
border-left: 1px solid gray;
|
||||
}
|
||||
|
||||
.tdelim {
|
||||
border-bottom: 1px solid gray;
|
||||
}
|
||||
|
||||
#block_display {
|
||||
width: 145px;
|
||||
}
|
||||
|
||||
#list_type {
|
||||
width: 115px;
|
||||
}
|
||||
|
||||
.disabled {
|
||||
background-color: #EEEEEE;
|
||||
}
|
||||
|
||||
#apply {
|
||||
font-weight: bold;
|
||||
width: 78px;
|
||||
height: 21px;
|
||||
border: 0;
|
||||
background-image: url('../images/apply_button_bg.gif');
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/editor_plugin.js
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/editor_plugin.js
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
tinyMCE.importPluginLanguagePack('style','en');var TinyMCE_StylePlugin={getInfo:function(){return{longname:'Style',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymce.moxiecode.com/tinymce/docs/plugin_style.html',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};},getControlHTML:function(cn){switch(cn){case"styleprops":return tinyMCE.getButtonHTML(cn,'lang_style_styleinfo_desc','{$pluginurl}/images/style_info.gif','mceStyleProps',true);}return"";},execCommand:function(editor_id,element,command,user_interface,value){var e,inst;switch(command){case"mceStyleProps":TinyMCE_StylePlugin._styleProps();return true;case"mceSetElementStyle":inst=tinyMCE.getInstanceById(editor_id);e=inst.selection.getFocusElement();if(e){e.style.cssText=value;inst.repaint();}return true;}return false;},handleNodeChange:function(editor_id,node,undo_index,undo_levels,visual_aid,any_selection){},_styleProps:function(){var e=tinyMCE.selectedInstance.selection.getFocusElement();if(!e)return;tinyMCE.openWindow({file:'../../plugins/style/props.htm',width:480+tinyMCE.getLang('lang_style_props_delta_width',0),height:320+tinyMCE.getLang('lang_style_props_delta_height',0)},{editor_id:tinyMCE.selectedInstance.editorId,inline:"yes",style_text:e.style.cssText});}};tinyMCE.addPlugin("style",TinyMCE_StylePlugin);
|
||||
81
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/editor_plugin_src.js
vendored
Normal file
81
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/editor_plugin_src.js
vendored
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
/**
|
||||
* $RCSfile: editor_plugin_src.js,v $
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2006/05/03 10:46:42 $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
/* Import plugin specific language pack */
|
||||
tinyMCE.importPluginLanguagePack('style', 'en');
|
||||
|
||||
var TinyMCE_StylePlugin = {
|
||||
getInfo : function() {
|
||||
return {
|
||||
longname : 'Style',
|
||||
author : 'Moxiecode Systems',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_style.html',
|
||||
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
|
||||
};
|
||||
},
|
||||
|
||||
getControlHTML : function(cn) {
|
||||
switch (cn) {
|
||||
case "styleprops":
|
||||
return tinyMCE.getButtonHTML(cn, 'lang_style_styleinfo_desc', '{$pluginurl}/images/style_info.gif', 'mceStyleProps', true);
|
||||
}
|
||||
|
||||
return "";
|
||||
},
|
||||
|
||||
execCommand : function(editor_id, element, command, user_interface, value) {
|
||||
var e, inst;
|
||||
|
||||
// Handle commands
|
||||
switch (command) {
|
||||
case "mceStyleProps":
|
||||
TinyMCE_StylePlugin._styleProps();
|
||||
return true;
|
||||
|
||||
case "mceSetElementStyle":
|
||||
inst = tinyMCE.getInstanceById(editor_id);
|
||||
e = inst.selection.getFocusElement();
|
||||
|
||||
if (e) {
|
||||
e.style.cssText = value;
|
||||
inst.repaint();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// Pass to next handler in chain
|
||||
return false;
|
||||
},
|
||||
|
||||
handleNodeChange : function(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
|
||||
},
|
||||
|
||||
// Private plugin specific methods
|
||||
|
||||
_styleProps : function() {
|
||||
var e = tinyMCE.selectedInstance.selection.getFocusElement();
|
||||
|
||||
if (!e)
|
||||
return;
|
||||
|
||||
tinyMCE.openWindow({
|
||||
file : '../../plugins/style/props.htm',
|
||||
width : 480 + tinyMCE.getLang('lang_style_props_delta_width', 0),
|
||||
height : 320 + tinyMCE.getLang('lang_style_props_delta_height', 0)
|
||||
}, {
|
||||
editor_id : tinyMCE.selectedInstance.editorId,
|
||||
inline : "yes",
|
||||
style_text : e.style.cssText
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCE.addPlugin("style", TinyMCE_StylePlugin);
|
||||
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/images/apply_button_bg.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/images/apply_button_bg.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/images/style_info.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/images/style_info.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 562 B |
630
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/jscripts/props.js
vendored
Normal file
630
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/jscripts/props.js
vendored
Normal file
|
|
@ -0,0 +1,630 @@
|
|||
var defaultFonts = "" +
|
||||
"Arial, Helvetica, sans-serif=Arial, Helvetica, sans-serif;" +
|
||||
"Times New Roman, Times, serif=Times New Roman, Times, serif;" +
|
||||
"Courier New, Courier, mono=Courier New, Courier, mono;" +
|
||||
"Times New Roman, Times, serif=Times New Roman, Times, serif;" +
|
||||
"Georgia, Times New Roman, Times, serif=Georgia, Times New Roman, Times, serif;" +
|
||||
"Verdana, Arial, Helvetica, sans-serif=Verdana, Arial, Helvetica, sans-serif;" +
|
||||
"Geneva, Arial, Helvetica, sans-serif=Geneva, Arial, Helvetica, sans-serif";
|
||||
|
||||
var defaultSizes = "9;10;12;14;16;18;24;xx-small;x-small;small;medium;large;x-large;xx-large;smaller;larger";
|
||||
var defaultMeasurement = "+pixels=px;points=pt;in;cm;mm;picas;ems;exs;%";
|
||||
var defaultSpacingMeasurement = "pixels=px;points=pt;in;cm;mm;picas;+ems;exs;%";
|
||||
var defaultIndentMeasurement = "pixels=px;+points=pt;in;cm;mm;picas;ems;exs;%";
|
||||
var defaultWeight = "normal;bold;bolder;lighter;100;200;300;400;500;600;700;800;900";
|
||||
var defaultTextStyle = "normal;italic;oblique";
|
||||
var defaultVariant = "normal;small-caps";
|
||||
var defaultLineHeight = "normal";
|
||||
var defaultAttachment = "fixed;scroll";
|
||||
var defaultRepeat = "no-repeat;repeat;repeat-x;repeat-y";
|
||||
var defaultPosH = "left;center;right";
|
||||
var defaultPosV = "top;center;bottom";
|
||||
var defaultVAlign = "baseline;sub;super;top;text-top;middle;bottom;text-bottom";
|
||||
var defaultDisplay = "inline;block;list-item;run-in;compact;marker;table;inline-table;table-row-group;table-header-group;table-footer-group;table-row;table-column-group;table-column;table-cell;table-caption;none";
|
||||
var defaultBorderStyle = "none;solid;dashed;dotted;double;groove;ridge;inset;outset";
|
||||
var defaultBorderWidth = "thin;medium;thick";
|
||||
var defaultListType = "disc;circle;square;decimal;lower-roman;upper-roman;lower-alpha;upper-alpha;none";
|
||||
|
||||
function init() {
|
||||
var ce = document.getElementById('container');
|
||||
|
||||
ce.style.cssText = tinyMCEPopup.getWindowArg('style_text');
|
||||
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
document.getElementById('text_color_pickcontainer').innerHTML = getColorPickerHTML('text_color_pick','text_color');
|
||||
document.getElementById('background_color_pickcontainer').innerHTML = getColorPickerHTML('background_color_pick','background_color');
|
||||
document.getElementById('border_color_top_pickcontainer').innerHTML = getColorPickerHTML('border_color_top_pick','border_color_top');
|
||||
document.getElementById('border_color_right_pickcontainer').innerHTML = getColorPickerHTML('border_color_right_pick','border_color_right');
|
||||
document.getElementById('border_color_bottom_pickcontainer').innerHTML = getColorPickerHTML('border_color_bottom_pick','border_color_bottom');
|
||||
document.getElementById('border_color_left_pickcontainer').innerHTML = getColorPickerHTML('border_color_left_pick','border_color_left');
|
||||
|
||||
fillSelect(0, 'text_font', 'style_font', defaultFonts, ';', true);
|
||||
fillSelect(0, 'text_size', 'style_font_size', defaultSizes, ';', true);
|
||||
fillSelect(0, 'text_size_measurement', 'style_font_size_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'text_case', 'style_text_case', "capitalize;uppercase;lowercase", ';', true);
|
||||
fillSelect(0, 'text_weight', 'style_font_weight', defaultWeight, ';', true);
|
||||
fillSelect(0, 'text_style', 'style_font_style', defaultTextStyle, ';', true);
|
||||
fillSelect(0, 'text_variant', 'style_font_variant', defaultVariant, ';', true);
|
||||
fillSelect(0, 'text_lineheight', 'style_font_line_height', defaultLineHeight, ';', true);
|
||||
fillSelect(0, 'text_lineheight_measurement', 'style_font_line_height_measurement', defaultMeasurement, ';', true);
|
||||
|
||||
fillSelect(0, 'background_attachment', 'style_background_attachment', defaultAttachment, ';', true);
|
||||
fillSelect(0, 'background_repeat', 'style_background_repeat', defaultRepeat, ';', true);
|
||||
|
||||
fillSelect(0, 'background_hpos_measurement', 'style_background_hpos_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'background_vpos_measurement', 'style_background_vpos_measurement', defaultMeasurement, ';', true);
|
||||
|
||||
fillSelect(0, 'background_hpos', 'style_background_hpos', defaultPosH, ';', true);
|
||||
fillSelect(0, 'background_vpos', 'style_background_vpos', defaultPosV, ';', true);
|
||||
|
||||
fillSelect(0, 'block_wordspacing', 'style_wordspacing', 'normal', ';', true);
|
||||
fillSelect(0, 'block_wordspacing_measurement', 'style_wordspacing_measurement', defaultSpacingMeasurement, ';', true);
|
||||
fillSelect(0, 'block_letterspacing', 'style_letterspacing', 'normal', ';', true);
|
||||
fillSelect(0, 'block_letterspacing_measurement', 'style_letterspacing_measurement', defaultSpacingMeasurement, ';', true);
|
||||
fillSelect(0, 'block_vertical_alignment', 'style_vertical_alignment', defaultVAlign, ';', true);
|
||||
fillSelect(0, 'block_text_align', 'style_text_align', "left;right;center;justify", ';', true);
|
||||
fillSelect(0, 'block_whitespace', 'style_whitespace', "normal;pre;nowrap", ';', true);
|
||||
fillSelect(0, 'block_display', 'style_display', defaultDisplay, ';', true);
|
||||
fillSelect(0, 'block_text_indent_measurement', 'style_text_indent_measurement', defaultIndentMeasurement, ';', true);
|
||||
|
||||
fillSelect(0, 'box_width_measurement', 'style_box_width_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_height_measurement', 'style_box_height_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_float', 'style_float', 'left;right;none', ';', true);
|
||||
fillSelect(0, 'box_clear', 'style_clear', 'left;right;both;none', ';', true);
|
||||
fillSelect(0, 'box_padding_left_measurement', 'style_padding_left_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_padding_top_measurement', 'style_padding_top_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_padding_bottom_measurement', 'style_padding_bottom_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_padding_right_measurement', 'style_padding_right_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_margin_left_measurement', 'style_margin_left_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_margin_top_measurement', 'style_margin_top_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_margin_bottom_measurement', 'style_margin_bottom_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'box_margin_right_measurement', 'style_margin_right_measurement', defaultMeasurement, ';', true);
|
||||
|
||||
fillSelect(0, 'border_style_top', 'style_border_style_top', defaultBorderStyle, ';', true);
|
||||
fillSelect(0, 'border_style_right', 'style_border_style_right', defaultBorderStyle, ';', true);
|
||||
fillSelect(0, 'border_style_bottom', 'style_border_style_bottom', defaultBorderStyle, ';', true);
|
||||
fillSelect(0, 'border_style_left', 'style_border_style_left', defaultBorderStyle, ';', true);
|
||||
|
||||
fillSelect(0, 'border_width_top', 'style_border_width_top', defaultBorderWidth, ';', true);
|
||||
fillSelect(0, 'border_width_right', 'style_border_width_right', defaultBorderWidth, ';', true);
|
||||
fillSelect(0, 'border_width_bottom', 'style_border_width_bottom', defaultBorderWidth, ';', true);
|
||||
fillSelect(0, 'border_width_left', 'style_border_width_left', defaultBorderWidth, ';', true);
|
||||
|
||||
fillSelect(0, 'border_width_top_measurement', 'style_border_width_top_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'border_width_right_measurement', 'style_border_width_right_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'border_width_bottom_measurement', 'style_border_width_bottom_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'border_width_left_measurement', 'style_border_width_left_measurement', defaultMeasurement, ';', true);
|
||||
|
||||
fillSelect(0, 'list_type', 'style_list_type', defaultListType, ';', true);
|
||||
fillSelect(0, 'list_position', 'style_list_position', "inside;outside", ';', true);
|
||||
|
||||
fillSelect(0, 'positioning_type', 'style_positioning_type', "absolute;relative;static", ';', true);
|
||||
fillSelect(0, 'positioning_visibility', 'style_positioning_visibility', "inherit;visible;hidden", ';', true);
|
||||
|
||||
fillSelect(0, 'positioning_width_measurement', 'style_positioning_width_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_height_measurement', 'style_positioning_height_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_overflow', 'style_positioning_overflow', "visible;hidden;scroll;auto", ';', true);
|
||||
|
||||
fillSelect(0, 'positioning_placement_top_measurement', 'style_positioning_placement_top_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_placement_right_measurement', 'style_positioning_placement_right_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_placement_bottom_measurement', 'style_positioning_placement_bottom_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_placement_left_measurement', 'style_positioning_placement_left_measurement', defaultMeasurement, ';', true);
|
||||
|
||||
fillSelect(0, 'positioning_clip_top_measurement', 'style_positioning_clip_top_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_clip_right_measurement', 'style_positioning_clip_right_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_clip_bottom_measurement', 'style_positioning_clip_bottom_measurement', defaultMeasurement, ';', true);
|
||||
fillSelect(0, 'positioning_clip_left_measurement', 'style_positioning_clip_left_measurement', defaultMeasurement, ';', true);
|
||||
|
||||
TinyMCE_EditableSelects.init();
|
||||
setupFormData();
|
||||
showDisabledControls();
|
||||
}
|
||||
|
||||
function setupFormData() {
|
||||
var ce = document.getElementById('container'), f = document.forms[0], s, b, i;
|
||||
|
||||
// Setup text fields
|
||||
|
||||
selectByValue(f, 'text_font', ce.style.fontFamily, true, true);
|
||||
selectByValue(f, 'text_size', getNum(ce.style.fontSize), true, true);
|
||||
selectByValue(f, 'text_size_measurement', getMeasurement(ce.style.fontSize));
|
||||
selectByValue(f, 'text_weight', ce.style.fontWeight, true, true);
|
||||
selectByValue(f, 'text_style', ce.style.fontStyle, true, true);
|
||||
selectByValue(f, 'text_lineheight', getNum(ce.style.lineHeight), true, true);
|
||||
selectByValue(f, 'text_lineheight_measurement', getMeasurement(ce.style.lineHeight));
|
||||
selectByValue(f, 'text_case', ce.style.textTransform, true, true);
|
||||
selectByValue(f, 'text_variant', ce.style.fontVariant, true, true);
|
||||
f.text_color.value = ce.style.color;
|
||||
updateColor('text_color_pick', 'text_color');
|
||||
f.text_underline.checked = inStr(ce.style.textDecoration, 'underline');
|
||||
f.text_overline.checked = inStr(ce.style.textDecoration, 'overline');
|
||||
f.text_linethrough.checked = inStr(ce.style.textDecoration, 'line-through');
|
||||
f.text_blink.checked = inStr(ce.style.textDecoration, 'blink');
|
||||
|
||||
// Setup background fields
|
||||
|
||||
f.background_color.value = ce.style.backgroundColor;
|
||||
updateColor('background_color_pick', 'background_color');
|
||||
f.background_image.value = ce.style.backgroundImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1");
|
||||
selectByValue(f, 'background_repeat', ce.style.backgroundRepeat, true, true);
|
||||
selectByValue(f, 'background_attachment', ce.style.backgroundAttachment, true, true);
|
||||
selectByValue(f, 'background_hpos', getNum(getVal(ce.style.backgroundPosition, 0)), true, true);
|
||||
selectByValue(f, 'background_hpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 0)));
|
||||
selectByValue(f, 'background_vpos', getNum(getVal(ce.style.backgroundPosition, 1)), true, true);
|
||||
selectByValue(f, 'background_vpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 1)));
|
||||
|
||||
// Setup block fields
|
||||
|
||||
selectByValue(f, 'block_wordspacing', getNum(ce.style.wordSpacing), true, true);
|
||||
selectByValue(f, 'block_wordspacing_measurement', getMeasurement(ce.style.wordSpacing));
|
||||
selectByValue(f, 'block_letterspacing', getNum(ce.style.letterSpacing), true, true);
|
||||
selectByValue(f, 'block_letterspacing_measurement', getMeasurement(ce.style.letterSpacing));
|
||||
selectByValue(f, 'block_vertical_alignment', ce.style.verticalAlign, true, true);
|
||||
selectByValue(f, 'block_text_align', ce.style.textAlign, true, true);
|
||||
f.block_text_indent.value = getNum(ce.style.textIndent);
|
||||
selectByValue(f, 'block_text_indent_measurement', getMeasurement(ce.style.textIndent));
|
||||
selectByValue(f, 'block_whitespace', ce.style.whiteSpace, true, true);
|
||||
selectByValue(f, 'block_display', ce.style.display, true, true);
|
||||
|
||||
// Setup box fields
|
||||
|
||||
f.box_width.value = getNum(ce.style.width);
|
||||
selectByValue(f, 'box_width_measurement', getMeasurement(ce.style.width));
|
||||
|
||||
f.box_height.value = getNum(ce.style.height);
|
||||
selectByValue(f, 'box_height_measurement', getMeasurement(ce.style.height));
|
||||
|
||||
if (tinyMCE.isGecko)
|
||||
selectByValue(f, 'box_float', ce.style.cssFloat, true, true);
|
||||
else
|
||||
selectByValue(f, 'box_float', ce.style.styleFloat, true, true);
|
||||
|
||||
selectByValue(f, 'box_clear', ce.style.clear, true, true);
|
||||
|
||||
setupBox(f, ce, 'box_padding', 'padding', '');
|
||||
setupBox(f, ce, 'box_margin', 'margin', '');
|
||||
|
||||
// Setup border fields
|
||||
|
||||
setupBox(f, ce, 'border_style', 'border', 'Style');
|
||||
setupBox(f, ce, 'border_width', 'border', 'Width');
|
||||
setupBox(f, ce, 'border_color', 'border', 'Color');
|
||||
|
||||
updateColor('border_color_top_pick', 'border_color_top');
|
||||
updateColor('border_color_right_pick', 'border_color_right');
|
||||
updateColor('border_color_bottom_pick', 'border_color_bottom');
|
||||
updateColor('border_color_left_pick', 'border_color_left');
|
||||
|
||||
// Setup list fields
|
||||
|
||||
selectByValue(f, 'list_type', ce.style.listStyleType, true, true);
|
||||
selectByValue(f, 'list_position', ce.style.listStylePosition, true, true);
|
||||
f.list_bullet_image.value = ce.style.listStyleImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1");
|
||||
|
||||
// Setup box fields
|
||||
|
||||
selectByValue(f, 'positioning_type', ce.style.position, true, true);
|
||||
selectByValue(f, 'positioning_visibility', ce.style.visibility, true, true);
|
||||
selectByValue(f, 'positioning_overflow', ce.style.overflow, true, true);
|
||||
f.positioning_zindex.value = ce.style.zIndex ? ce.style.zIndex : "";
|
||||
|
||||
f.positioning_width.value = getNum(ce.style.width);
|
||||
selectByValue(f, 'positioning_width_measurement', getMeasurement(ce.style.width));
|
||||
|
||||
f.positioning_height.value = getNum(ce.style.height);
|
||||
selectByValue(f, 'positioning_height_measurement', getMeasurement(ce.style.height));
|
||||
|
||||
setupBox(f, ce, 'positioning_placement', '', '', new Array('top', 'right', 'bottom', 'left'));
|
||||
|
||||
s = ce.style.clip.replace(new RegExp("rect\\('?([^']*)'?\\)", 'gi'), "$1");
|
||||
s = s.replace(/,/g, ' ');
|
||||
|
||||
if (!hasEqualValues(new Array(getVal(s, 0), getVal(s, 1), getVal(s, 2), getVal(s, 3)))) {
|
||||
f.positioning_clip_top.value = getNum(getVal(s, 0));
|
||||
selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0)));
|
||||
f.positioning_clip_right.value = getNum(getVal(s, 1));
|
||||
selectByValue(f, 'positioning_clip_right_measurement', getMeasurement(getVal(s, 1)));
|
||||
f.positioning_clip_bottom.value = getNum(getVal(s, 2));
|
||||
selectByValue(f, 'positioning_clip_bottom_measurement', getMeasurement(getVal(s, 2)));
|
||||
f.positioning_clip_left.value = getNum(getVal(s, 3));
|
||||
selectByValue(f, 'positioning_clip_left_measurement', getMeasurement(getVal(s, 3)));
|
||||
} else {
|
||||
f.positioning_clip_top.value = getNum(getVal(s, 0));
|
||||
selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0)));
|
||||
f.positioning_clip_right.value = f.positioning_clip_bottom.value = f.positioning_clip_left.value;
|
||||
}
|
||||
|
||||
// setupBox(f, ce, '', 'border', 'Color');
|
||||
}
|
||||
|
||||
function getMeasurement(s) {
|
||||
return s.replace(/^([0-9]+)(.*)$/, "$2");
|
||||
}
|
||||
|
||||
function getNum(s) {
|
||||
if (new RegExp('^[0-9]+[a-z%]+$', 'gi').test(s))
|
||||
return s.replace(/[^0-9]/g, '');
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
function inStr(s, n) {
|
||||
return new RegExp(n, 'gi').test(s);
|
||||
}
|
||||
|
||||
function getVal(s, i) {
|
||||
var a = tinyMCE.explode(' ', s);
|
||||
|
||||
if (a.length > 1)
|
||||
return a[i];
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
function setValue(f, n, v) {
|
||||
if (f.elements[n].type == "text")
|
||||
f.elements[n].value = v;
|
||||
else
|
||||
selectByValue(f, n, v, true, true);
|
||||
}
|
||||
|
||||
function setupBox(f, ce, fp, pr, sf, b) {
|
||||
if (typeof(b) == "undefined")
|
||||
b = new Array('Top', 'Right', 'Bottom', 'Left');
|
||||
|
||||
if (isSame(ce, pr, sf, b)) {
|
||||
f.elements[fp + "_same"].checked = true;
|
||||
|
||||
setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf]));
|
||||
f.elements[fp + "_top"].disabled = false;
|
||||
|
||||
f.elements[fp + "_right"].value = "";
|
||||
f.elements[fp + "_right"].disabled = true;
|
||||
f.elements[fp + "_bottom"].value = "";
|
||||
f.elements[fp + "_bottom"].disabled = true;
|
||||
f.elements[fp + "_left"].value = "";
|
||||
f.elements[fp + "_left"].disabled = true;
|
||||
|
||||
if (f.elements[fp + "_top_measurement"]) {
|
||||
selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf]));
|
||||
f.elements[fp + "_left_measurement"].disabled = true;
|
||||
f.elements[fp + "_bottom_measurement"].disabled = true;
|
||||
f.elements[fp + "_right_measurement"].disabled = true;
|
||||
}
|
||||
} else {
|
||||
f.elements[fp + "_same"].checked = false;
|
||||
|
||||
setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf]));
|
||||
f.elements[fp + "_top"].disabled = false;
|
||||
|
||||
setValue(f, fp + "_right", getNum(ce.style[pr + b[1] + sf]));
|
||||
f.elements[fp + "_right"].disabled = false;
|
||||
|
||||
setValue(f, fp + "_bottom", getNum(ce.style[pr + b[2] + sf]));
|
||||
f.elements[fp + "_bottom"].disabled = false;
|
||||
|
||||
setValue(f, fp + "_left", getNum(ce.style[pr + b[3] + sf]));
|
||||
f.elements[fp + "_left"].disabled = false;
|
||||
|
||||
if (f.elements[fp + "_top_measurement"]) {
|
||||
selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf]));
|
||||
selectByValue(f, fp + '_right_measurement', getMeasurement(ce.style[pr + b[1] + sf]));
|
||||
selectByValue(f, fp + '_bottom_measurement', getMeasurement(ce.style[pr + b[2] + sf]));
|
||||
selectByValue(f, fp + '_left_measurement', getMeasurement(ce.style[pr + b[3] + sf]));
|
||||
f.elements[fp + "_left_measurement"].disabled = false;
|
||||
f.elements[fp + "_bottom_measurement"].disabled = false;
|
||||
f.elements[fp + "_right_measurement"].disabled = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function isSame(e, pr, sf, b) {
|
||||
var a = new Array(), i, x;
|
||||
|
||||
if (typeof(b) == "undefined")
|
||||
b = new Array('Top', 'Right', 'Bottom', 'Left');
|
||||
|
||||
if (typeof(sf) == "undefined" || sf == null)
|
||||
sf = "";
|
||||
|
||||
a[0] = e.style[pr + b[0] + sf];
|
||||
a[1] = e.style[pr + b[1] + sf];
|
||||
a[2] = e.style[pr + b[2] + sf];
|
||||
a[3] = e.style[pr + b[3] + sf];
|
||||
|
||||
for (i=0; i<a.length; i++) {
|
||||
if (a[i] == null)
|
||||
return false;
|
||||
|
||||
for (x=0; x<a.length; x++) {
|
||||
if (a[x] != a[i])
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
function hasEqualValues(a) {
|
||||
var i, x;
|
||||
|
||||
for (i=0; i<a.length; i++) {
|
||||
if (a[i] == null)
|
||||
return false;
|
||||
|
||||
for (x=0; x<a.length; x++) {
|
||||
if (a[x] != a[i])
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function applyAction() {
|
||||
var ce = document.getElementById('container');
|
||||
|
||||
generateCSS();
|
||||
|
||||
tinyMCEPopup.execCommand('mceSetElementStyle', false, tinyMCE.serializeStyle(tinyMCE.parseStyle(ce.style.cssText)));
|
||||
}
|
||||
|
||||
function updateAction() {
|
||||
applyAction();
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function generateCSS() {
|
||||
var ce = document.getElementById('container'), f = document.forms[0], num = new RegExp('[0-9]+', 'g'), s, t;
|
||||
|
||||
ce.style.cssText = "";
|
||||
|
||||
// Build text styles
|
||||
ce.style.fontFamily = f.text_font.value;
|
||||
ce.style.fontSize = f.text_size.value + (isNum(f.text_size.value) ? f.text_size_measurement.value : "");
|
||||
ce.style.fontStyle = f.text_style.value;
|
||||
ce.style.lineHeight = f.text_lineheight.value + (isNum(f.text_lineheight.value) ? f.text_lineheight_measurement.value : "");
|
||||
ce.style.textTransform = f.text_case.value;
|
||||
ce.style.fontWeight = f.text_weight.value;
|
||||
ce.style.fontVariant = f.text_variant.value;
|
||||
ce.style.color = f.text_color.value;
|
||||
|
||||
s = "";
|
||||
s += f.text_underline.checked ? " underline" : "";
|
||||
s += f.text_overline.checked ? " overline" : "";
|
||||
s += f.text_linethrough.checked ? " line-through" : "";
|
||||
s += f.text_blink.checked ? " blink" : "";
|
||||
s = s.length > 0 ? s.substring(1) : s;
|
||||
|
||||
if (f.text_none.checked)
|
||||
s = "none";
|
||||
|
||||
ce.style.textDecoration = s;
|
||||
|
||||
// Build background styles
|
||||
|
||||
ce.style.backgroundColor = f.background_color.value;
|
||||
ce.style.backgroundImage = f.background_image.value != "" ? "url(" + f.background_image.value + ")" : "";
|
||||
ce.style.backgroundRepeat = f.background_repeat.value;
|
||||
ce.style.backgroundAttachment = f.background_attachment.value;
|
||||
|
||||
if (f.background_hpos.value != "") {
|
||||
s = "";
|
||||
s += f.background_hpos.value + (isNum(f.background_hpos.value) ? f.background_hpos_measurement.value : "") + " ";
|
||||
s += f.background_vpos.value + (isNum(f.background_vpos.value) ? f.background_vpos_measurement.value : "");
|
||||
ce.style.backgroundPosition = s;
|
||||
}
|
||||
|
||||
// Build block styles
|
||||
|
||||
ce.style.wordSpacing = f.block_wordspacing.value + (isNum(f.block_wordspacing.value) ? f.block_wordspacing_measurement.value : "");
|
||||
ce.style.letterSpacing = f.block_letterspacing.value + (isNum(f.block_letterspacing.value) ? f.block_letterspacing_measurement.value : "");
|
||||
ce.style.verticalAlign = f.block_vertical_alignment.value;
|
||||
ce.style.textAlign = f.block_text_align.value;
|
||||
ce.style.textIndent = f.block_text_indent.value + (isNum(f.block_text_indent.value) ? f.block_text_indent_measurement.value : "");
|
||||
ce.style.whiteSpace = f.block_whitespace.value;
|
||||
ce.style.display = f.block_display.value;
|
||||
|
||||
// Build box styles
|
||||
|
||||
ce.style.width = f.box_width.value + (isNum(f.box_width.value) ? f.box_width_measurement.value : "");
|
||||
ce.style.height = f.box_height.value + (isNum(f.box_height.value) ? f.box_height_measurement.value : "");
|
||||
ce.style.styleFloat = f.box_float.value;
|
||||
|
||||
if (tinyMCE.isGecko)
|
||||
ce.style.cssFloat = f.box_float.value;
|
||||
|
||||
ce.style.clear = f.box_clear.value;
|
||||
|
||||
if (!f.box_padding_same.checked) {
|
||||
ce.style.paddingTop = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : "");
|
||||
ce.style.paddingRight = f.box_padding_right.value + (isNum(f.box_padding_right.value) ? f.box_padding_right_measurement.value : "");
|
||||
ce.style.paddingBottom = f.box_padding_bottom.value + (isNum(f.box_padding_bottom.value) ? f.box_padding_bottom_measurement.value : "");
|
||||
ce.style.paddingLeft = f.box_padding_left.value + (isNum(f.box_padding_left.value) ? f.box_padding_left_measurement.value : "");
|
||||
} else
|
||||
ce.style.padding = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : "");
|
||||
|
||||
if (!f.box_margin_same.checked) {
|
||||
ce.style.marginTop = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : "");
|
||||
ce.style.marginRight = f.box_margin_right.value + (isNum(f.box_margin_right.value) ? f.box_margin_right_measurement.value : "");
|
||||
ce.style.marginBottom = f.box_margin_bottom.value + (isNum(f.box_margin_bottom.value) ? f.box_margin_bottom_measurement.value : "");
|
||||
ce.style.marginLeft = f.box_margin_left.value + (isNum(f.box_margin_left.value) ? f.box_margin_left_measurement.value : "");
|
||||
} else
|
||||
ce.style.margin = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : "");
|
||||
|
||||
// Build border styles
|
||||
|
||||
if (!f.border_style_same.checked) {
|
||||
ce.style.borderTopStyle = f.border_style_top.value;
|
||||
ce.style.borderRightStyle = f.border_style_right.value;
|
||||
ce.style.borderBottomStyle = f.border_style_bottom.value;
|
||||
ce.style.borderLeftStyle = f.border_style_left.value;
|
||||
} else
|
||||
ce.style.borderStyle = f.border_style_top.value;
|
||||
|
||||
if (!f.border_width_same.checked) {
|
||||
ce.style.borderTopWidth = f.border_width_top.value + (isNum(f.border_width_top.value) ? f.border_width_top_measurement.value : "");
|
||||
ce.style.borderRightWidth = f.border_width_right.value + (isNum(f.border_width_right.value) ? f.border_width_right_measurement.value : "");
|
||||
ce.style.borderBottomWidth = f.border_width_bottom.value + (isNum(f.border_width_bottom.value) ? f.border_width_bottom_measurement.value : "");
|
||||
ce.style.borderLeftWidth = f.border_width_left.value + (isNum(f.border_width_left.value) ? f.border_width_left_measurement.value : "");
|
||||
} else
|
||||
ce.style.borderWidth = f.border_width_top.value;
|
||||
|
||||
if (!f.border_color_same.checked) {
|
||||
ce.style.borderTopColor = f.border_color_top.value;
|
||||
ce.style.borderRightColor = f.border_color_right.value;
|
||||
ce.style.borderBottomColor = f.border_color_bottom.value;
|
||||
ce.style.borderLeftColor = f.border_color_left.value;
|
||||
} else
|
||||
ce.style.borderColor = f.border_color_top.value;
|
||||
|
||||
// Build list styles
|
||||
|
||||
ce.style.listStyleType = f.list_type.value;
|
||||
ce.style.listStylePosition = f.list_position.value;
|
||||
ce.style.listStyleImage = f.list_bullet_image.value != "" ? "url(" + f.list_bullet_image.value + ")" : "";
|
||||
|
||||
// Build positioning styles
|
||||
|
||||
ce.style.position = f.positioning_type.value;
|
||||
ce.style.visibility = f.positioning_visibility.value;
|
||||
|
||||
if (ce.style.width == "")
|
||||
ce.style.width = f.positioning_width.value + (isNum(f.positioning_width.value) ? f.positioning_width_measurement.value : "");
|
||||
|
||||
if (ce.style.height == "")
|
||||
ce.style.height = f.positioning_height.value + (isNum(f.positioning_height.value) ? f.positioning_height_measurement.value : "");
|
||||
|
||||
ce.style.zIndex = f.positioning_zindex.value;
|
||||
ce.style.overflow = f.positioning_overflow.value;
|
||||
|
||||
if (!f.positioning_placement_same.checked) {
|
||||
ce.style.top = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : "");
|
||||
ce.style.right = f.positioning_placement_right.value + (isNum(f.positioning_placement_right.value) ? f.positioning_placement_right_measurement.value : "");
|
||||
ce.style.bottom = f.positioning_placement_bottom.value + (isNum(f.positioning_placement_bottom.value) ? f.positioning_placement_bottom_measurement.value : "");
|
||||
ce.style.left = f.positioning_placement_left.value + (isNum(f.positioning_placement_left.value) ? f.positioning_placement_left_measurement.value : "");
|
||||
} else {
|
||||
s = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : "");
|
||||
ce.style.top = s;
|
||||
ce.style.right = s;
|
||||
ce.style.bottom = s;
|
||||
ce.style.left = s;
|
||||
}
|
||||
|
||||
if (!f.positioning_clip_same.checked) {
|
||||
s = "rect(";
|
||||
s += (isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto") + " ";
|
||||
s += (isNum(f.positioning_clip_right.value) ? f.positioning_clip_right.value + f.positioning_clip_right_measurement.value : "auto") + " ";
|
||||
s += (isNum(f.positioning_clip_bottom.value) ? f.positioning_clip_bottom.value + f.positioning_clip_bottom_measurement.value : "auto") + " ";
|
||||
s += (isNum(f.positioning_clip_left.value) ? f.positioning_clip_left.value + f.positioning_clip_left_measurement.value : "auto");
|
||||
s += ")";
|
||||
|
||||
if (s != "rect(auto auto auto auto)")
|
||||
ce.style.clip = s;
|
||||
} else {
|
||||
s = "rect(";
|
||||
t = isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto";
|
||||
s += t + " ";
|
||||
s += t + " ";
|
||||
s += t + " ";
|
||||
s += t + ")";
|
||||
|
||||
if (s != "rect(auto auto auto auto)")
|
||||
ce.style.clip = s;
|
||||
}
|
||||
|
||||
ce.style.cssText = tinyMCE.serializeStyle(tinyMCE.parseStyle(ce.style.cssText));
|
||||
}
|
||||
|
||||
function isNum(s) {
|
||||
return new RegExp('[0-9]+', 'g').test(s);
|
||||
}
|
||||
|
||||
function showDisabledControls() {
|
||||
var f = document.forms, i, a;
|
||||
|
||||
for (i=0; i<f.length; i++) {
|
||||
for (a=0; a<f[i].elements.length; a++) {
|
||||
if (f[i].elements[a].disabled)
|
||||
tinyMCE.addCSSClass(f[i].elements[a], "disabled");
|
||||
else
|
||||
tinyMCE.removeCSSClass(f[i].elements[a], "disabled");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function fillSelect(f, s, param, dval, sep, em) {
|
||||
var i, ar, p, se;
|
||||
|
||||
f = document.forms[f];
|
||||
sep = typeof(sep) == "undefined" ? ";" : sep;
|
||||
|
||||
if (em)
|
||||
addSelectValue(f, s, "", "");
|
||||
|
||||
ar = tinyMCE.getParam(param, dval).split(sep);
|
||||
for (i=0; i<ar.length; i++) {
|
||||
se = false;
|
||||
|
||||
if (ar[i].charAt(0) == '+') {
|
||||
ar[i] = ar[i].substring(1);
|
||||
se = true;
|
||||
}
|
||||
|
||||
p = ar[i].split('=');
|
||||
|
||||
if (p.length > 1) {
|
||||
addSelectValue(f, s, p[0], p[1]);
|
||||
|
||||
if (se)
|
||||
selectByValue(f, s, p[1]);
|
||||
} else {
|
||||
addSelectValue(f, s, p[0], p[0]);
|
||||
|
||||
if (se)
|
||||
selectByValue(f, s, p[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function toggleSame(ce, pre) {
|
||||
var el = document.forms[0].elements, i;
|
||||
|
||||
if (ce.checked) {
|
||||
el[pre + "_top"].disabled = false;
|
||||
el[pre + "_right"].disabled = true;
|
||||
el[pre + "_bottom"].disabled = true;
|
||||
el[pre + "_left"].disabled = true;
|
||||
|
||||
if (el[pre + "_top_measurement"]) {
|
||||
el[pre + "_top_measurement"].disabled = false;
|
||||
el[pre + "_right_measurement"].disabled = true;
|
||||
el[pre + "_bottom_measurement"].disabled = true;
|
||||
el[pre + "_left_measurement"].disabled = true;
|
||||
}
|
||||
} else {
|
||||
el[pre + "_top"].disabled = false;
|
||||
el[pre + "_right"].disabled = false;
|
||||
el[pre + "_bottom"].disabled = false;
|
||||
el[pre + "_left"].disabled = false;
|
||||
|
||||
if (el[pre + "_top_measurement"]) {
|
||||
el[pre + "_top_measurement"].disabled = false;
|
||||
el[pre + "_right_measurement"].disabled = false;
|
||||
el[pre + "_bottom_measurement"].disabled = false;
|
||||
el[pre + "_left_measurement"].disabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
showDisabledControls();
|
||||
}
|
||||
|
||||
function synch(fr, to) {
|
||||
var f = document.forms[0];
|
||||
|
||||
f.elements[to].value = f.elements[fr].value;
|
||||
|
||||
if (f.elements[fr + "_measurement"])
|
||||
selectByValue(f, to + "_measurement", f.elements[fr + "_measurement"].value);
|
||||
}
|
||||
60
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/de.js
vendored
Executable file
60
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/de.js
vendored
Executable file
|
|
@ -0,0 +1,60 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'CSS Stil editieren',
|
||||
styleinfo_desc : 'CSS Stil editieren',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Hintergrund',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Rahmen',
|
||||
list_tab : 'Liste',
|
||||
positioning_tab : 'Positionierung',
|
||||
text_props : 'Text',
|
||||
text_font : 'Schriftart',
|
||||
text_size : 'Grösse',
|
||||
text_weight : 'Dicke',
|
||||
text_style : 'Stil',
|
||||
text_variant : 'Variante',
|
||||
text_lineheight : 'Linienhöhe',
|
||||
text_case : 'Gross-/Kleinbuchstaben',
|
||||
text_color : 'Farbe',
|
||||
text_decoration : 'Dekoration',
|
||||
background_color : 'Hintergrundfarbe',
|
||||
background_image : 'Hintergrundfoto',
|
||||
background_repeat : 'Wiederholen',
|
||||
background_attachment : 'Anhang',
|
||||
background_hpos : 'Horizontale Position',
|
||||
background_vpos : 'Vertikale Position',
|
||||
block_wordspacing : 'Wortabstand',
|
||||
block_letterspacing : 'Zeichenabstand',
|
||||
block_vertical_alignment : 'Vertikale Ausrichtung',
|
||||
block_text_align : 'Horizontale Ausrichtung',
|
||||
block_text_indent : 'Texteinrückung',
|
||||
block_whitespace : 'Textumbruch',
|
||||
block_display : 'Anzeigeart',
|
||||
box_width : 'Breite',
|
||||
box_height : 'Höhe',
|
||||
box_float : 'Text umfliessen',
|
||||
box_clear : 'Text umfliessen beenden',
|
||||
padding : 'Innenabstand',
|
||||
same : 'Das gleiche für alle',
|
||||
top : 'Oben',
|
||||
right : 'Rechts',
|
||||
bottom : 'Unten',
|
||||
left : 'Links',
|
||||
margin : 'Aussenabstand',
|
||||
style : 'Stil',
|
||||
width : 'Breite',
|
||||
height : 'Höhe',
|
||||
color : 'Farbe',
|
||||
list_type : 'Listentyp',
|
||||
bullet_image : 'Grafik',
|
||||
position : 'Position',
|
||||
positioning_type : 'Typ',
|
||||
visibility : 'Sichtbarkeit',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Überfluss',
|
||||
placement : 'Plazierung',
|
||||
clip : 'Abschneiden'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/en.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/en.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fi.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fi.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// FI lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Muokkaa CSS tyyliä',
|
||||
styleinfo_desc : 'Muokkaa CSS tyyliä',
|
||||
apply : 'Päivitä',
|
||||
text_tab : 'Teksti',
|
||||
background_tab : 'Tausta',
|
||||
block_tab : 'Lohko',
|
||||
box_tab : 'Laatikko',
|
||||
border_tab : 'Reunaviiva',
|
||||
list_tab : 'Lista',
|
||||
positioning_tab : 'Asettelu',
|
||||
text_props : 'Teksti',
|
||||
text_font : 'Kirjasin',
|
||||
text_size : 'Koko',
|
||||
text_weight : 'Lihavointi',
|
||||
text_style : 'Tyyli',
|
||||
text_variant : 'Variantti',
|
||||
text_lineheight : 'Rivikorkeus',
|
||||
text_case : 'Isot/pienet kirjaimet',
|
||||
text_color : 'Väri',
|
||||
text_decoration : 'Koristelu',
|
||||
text_overline : 'ylleviivaus',
|
||||
text_underline : 'alleviivaus',
|
||||
text_striketrough : 'yliviivaus',
|
||||
text_blink : 'vilkkuva',
|
||||
text_none : 'ei mitään',
|
||||
background_color : 'Taustaväri',
|
||||
background_image : 'Taustakuva',
|
||||
background_repeat : 'Toisto',
|
||||
background_attachment : 'Kiinnitys',
|
||||
background_hpos : 'Vaakasijoitus',
|
||||
background_vpos : 'Pystysijoitus',
|
||||
block_wordspacing : 'Sanavälitys',
|
||||
block_letterspacing : 'Kirjainvälitys',
|
||||
block_vertical_alignment : 'Pystyasettelu',
|
||||
block_text_align : 'Tekstin tasaus',
|
||||
block_text_indent : 'Tekstin sisennys',
|
||||
block_whitespace : 'Rivitys',
|
||||
block_display : 'Näyttötapa',
|
||||
box_width : 'Leveys',
|
||||
box_height : 'Korkeus',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Täyte',
|
||||
same : 'Sama kaikille',
|
||||
top : 'Ylä',
|
||||
right : 'Oikea',
|
||||
bottom : 'Ala',
|
||||
left : 'Vasen',
|
||||
margin : 'Marginaali',
|
||||
style : 'Tyyli',
|
||||
width : 'Leveys',
|
||||
height : 'Korkeus',
|
||||
color : 'Väri',
|
||||
list_type : 'Tyyppi',
|
||||
bullet_image : 'Luettelokuva',
|
||||
position : 'Paikka',
|
||||
positioning_type : 'Tyyppi',
|
||||
visibility : 'Näkyvyys',
|
||||
zindex : 'Z-indeksi',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Asettelu',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fr.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fr.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// FR lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edtiteur de style CSS',
|
||||
styleinfo_desc : 'Edtiteur de style CSS',
|
||||
apply : 'Appliquer',
|
||||
text_tab : 'Texte',
|
||||
background_tab : 'Fond',
|
||||
block_tab : 'Bloc',
|
||||
box_tab : 'Boite',
|
||||
border_tab : 'Bord',
|
||||
list_tab : 'Liste',
|
||||
positioning_tab : 'Positionnement',
|
||||
text_props : 'Texte',
|
||||
text_font : 'Fonte',
|
||||
text_size : 'Taille',
|
||||
text_weight : 'Poid',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Hauteur de ligne',
|
||||
text_case : 'Casse',
|
||||
text_color : 'Couleur',
|
||||
text_decoration : 'Décoration',
|
||||
text_overline : 'surligné',
|
||||
text_underline : 'souligné',
|
||||
text_striketrough : 'barré',
|
||||
text_blink : 'clignotant',
|
||||
text_none : 'aucun',
|
||||
background_color : 'Couleur de fond',
|
||||
background_image : 'Image de fond',
|
||||
background_repeat : 'Répéter',
|
||||
background_attachment : 'Attacher',
|
||||
background_hpos : 'Position horizontal',
|
||||
background_vpos : 'Position vertical',
|
||||
block_wordspacing : 'Espace entre les mots',
|
||||
block_letterspacing : 'Espace entre les lettres',
|
||||
block_vertical_alignment : 'Aligenement vertical',
|
||||
block_text_align : 'Aligement du texte',
|
||||
block_text_indent : 'Indentation du texte',
|
||||
block_whitespace : 'Espace',
|
||||
block_display : 'Afficher',
|
||||
box_width : 'Largeur',
|
||||
box_height : 'Hauteur',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Identique pour tous',
|
||||
top : 'Haut',
|
||||
right : 'Droite',
|
||||
bottom : 'Bas',
|
||||
left : 'Gauche',
|
||||
margin : 'Marge',
|
||||
style : 'Style',
|
||||
width : 'Largeur',
|
||||
height : 'Hauteur',
|
||||
color : 'Couleur',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibilité',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
60
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/it.js
vendored
Executable file
60
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/it.js
vendored
Executable file
|
|
@ -0,0 +1,60 @@
|
|||
// IT lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Modifica stile CSS',
|
||||
styleinfo_desc : 'Modifica stile CSS',
|
||||
text_tab : 'Testo',
|
||||
background_tab : 'Sfondo',
|
||||
block_tab : 'Blocco',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Bordo',
|
||||
list_tab : 'Lista',
|
||||
positioning_tab : 'Posizionamento',
|
||||
text_props : 'Testo',
|
||||
text_font : 'Font',
|
||||
text_size : 'Dimensione',
|
||||
text_weight : 'Peso',
|
||||
text_style : 'Stile',
|
||||
text_variant : 'Variante',
|
||||
text_lineheight : 'Altezza linea',
|
||||
text_case : 'Caso',
|
||||
text_color : 'Colore',
|
||||
text_decoration : 'Decorazione',
|
||||
background_color : 'Colore di sfondo',
|
||||
background_image : 'Immagine di sfondo',
|
||||
background_repeat : 'Ripeti',
|
||||
background_attachment : 'Ancoraggio',
|
||||
background_hpos : 'Posizione orizzontale',
|
||||
background_vpos : 'Posizione verticale',
|
||||
block_wordspacing : 'Spaziatura parole',
|
||||
block_letterspacing : 'Spaziatura lettere',
|
||||
block_vertical_alignment : 'Allineamento verticale',
|
||||
block_text_align : 'Allineamento del testo',
|
||||
block_text_indent : 'Indentazione del testo',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Larghezza',
|
||||
box_height : 'Altezza',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Spaziatura interna',
|
||||
same : 'Uguale per tutti',
|
||||
top : 'Alto',
|
||||
right : 'Destra',
|
||||
bottom : 'Basso',
|
||||
left : 'Sinistra',
|
||||
margin : 'Margine esterno',
|
||||
style : 'Stile',
|
||||
width : 'Larghezza',
|
||||
height : 'Altezza',
|
||||
color : 'Colore',
|
||||
list_type : 'Tipo',
|
||||
bullet_image : 'Immagine punto elenco',
|
||||
position : 'Posizionamento',
|
||||
positioning_type : 'Tipo',
|
||||
visibility : 'Visibilità',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Piazzamento',
|
||||
clip : 'Clip'
|
||||
});
|
||||
580
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/props.htm
vendored
Normal file
580
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/props.htm
vendored
Normal file
|
|
@ -0,0 +1,580 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{$lang_style_title}</title>
|
||||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="../../utils/mctabs.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="../../utils/editable_selects.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="../../utils/form_utils.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="jscripts/props.js"></script>
|
||||
<link href="css/props.css" rel="stylesheet" type="text/css" />
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body id="styleprops" onload="tinyMCEPopup.executeOnLoad('init();');" style="display: none">
|
||||
<form onsubmit="updateAction();return false;" action="#">
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="text_tab" class="current"><span><a href="javascript:mcTabs.displayTab('text_tab','text_panel');" onmousedown="return false;">{$lang_style_text_tab}</a></span></li>
|
||||
<li id="background_tab"><span><a href="javascript:mcTabs.displayTab('background_tab','background_panel');" onmousedown="return false;">{$lang_style_background_tab}</a></span></li>
|
||||
<li id="block_tab"><span><a href="javascript:mcTabs.displayTab('block_tab','block_panel');" onmousedown="return false;">{$lang_style_block_tab}</a></span></li>
|
||||
<li id="box_tab"><span><a href="javascript:mcTabs.displayTab('box_tab','box_panel');" onmousedown="return false;">{$lang_style_box_tab}</a></span></li>
|
||||
<li id="border_tab"><span><a href="javascript:mcTabs.displayTab('border_tab','border_panel');" onmousedown="return false;">{$lang_style_border_tab}</a></span></li>
|
||||
<li id="list_tab"><span><a href="javascript:mcTabs.displayTab('list_tab','list_panel');" onmousedown="return false;">{$lang_style_list_tab}</a></span></li>
|
||||
<li id="positioning_tab"><span><a href="javascript:mcTabs.displayTab('positioning_tab','positioning_panel');" onmousedown="return false;">{$lang_style_positioning_tab}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="text_panel" class="panel current">
|
||||
<table border="0" width="100%">
|
||||
<tr>
|
||||
<td><label for="text_font">{$lang_style_text_font}</label></td>
|
||||
<td colspan="3">
|
||||
<select id="text_font" name="text_font" class="mceEditableSelect" onchange="alert(this.options[this.selectedIndex].value);"></select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="text_size">{$lang_style_text_size}</label></td>
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="text_size" name="text_size" class="mceEditableSelect"></select></td>
|
||||
<td> <select id="text_size_measurement" name="text_size_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td><label for="text_weight">{$lang_style_text_weight}</label></td>
|
||||
<td>
|
||||
<select id="text_weight" name="text_weight"></select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="text_style">{$lang_style_text_style}</label></td>
|
||||
<td>
|
||||
<select id="text_style" name="text_style" class="mceEditableSelect"></select>
|
||||
</td>
|
||||
<td><label for="text_variant">{$lang_style_text_variant}</label></td>
|
||||
<td>
|
||||
<select id="text_variant" name="text_variant"></select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="text_lineheight">{$lang_style_text_lineheight}</label></td>
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0"><tr><td>
|
||||
<select id="text_lineheight" name="text_lineheight" class="mceEditableSelect"></select>
|
||||
</td><td> <select id="text_lineheight_measurement" name="text_lineheight_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td><label for="text_case">{$lang_style_text_case}</label></td>
|
||||
<td>
|
||||
<select id="text_case" name="text_case"></select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="text_color">{$lang_style_text_color}</label></td>
|
||||
<td colspan="2">
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="text_color" name="text_color" type="text" value="" size="9" onchange="updateColor('text_color_pick','text_color');" /></td>
|
||||
<td id="text_color_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_text_decoration}</td>
|
||||
<td colspan="2">
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td><input id="text_underline" name="text_underline" class="checkbox" type="checkbox" /></td><td><label for="text_underline">underline</label></td></tr>
|
||||
<tr><td><input id="text_overline" name="text_overline" class="checkbox" type="checkbox" /></td><td><label for="text_overline">overline</label></td></tr>
|
||||
<tr><td><input id="text_linethrough" name="text_linethrough" class="checkbox" type="checkbox" /></td><td><label for="text_linethrough">line-through</label></td></tr>
|
||||
<tr><td><input id="text_blink" name="text_blink" class="checkbox" type="checkbox" /></td><td><label for="text_blink">blink</label></td></tr>
|
||||
<tr><td><input id="text_none" name="text_none" class="checkbox" type="checkbox" /></td><td><label for="text_none">none</label></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="background_panel" class="panel">
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td><label for="background_color">{$lang_style_background_color}</label></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="background_color" name="background_color" type="text" value="" size="9" onchange="updateColor('background_color_pick','background_color');" /></td>
|
||||
<td id="background_color_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="background_image">{$lang_style_background_image}</label></td>
|
||||
<td><input id="background_image" name="background_image" type="text" /></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="background_repeat">{$lang_style_background_repeat}</label></td>
|
||||
<td><select id="background_repeat" name="background_repeat" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="background_attachment">{$lang_style_background_attachment}</label></td>
|
||||
<td><select id="background_attachment" name="background_attachment" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="background_hpos">{$lang_style_background_hpos}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="background_hpos" name="background_hpos" class="mceEditableSelect"></select></td>
|
||||
<td> <select id="background_hpos_measurement" name="background_hpos_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="background_vpos">{$lang_style_background_vpos}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="background_vpos" name="background_vpos" class="mceEditableSelect"></select></td>
|
||||
<td> <select id="background_vpos_measurement" name="background_vpos_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="block_panel" class="panel">
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td><label for="block_wordspacing">{$lang_style_block_wordspacing}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="block_wordspacing" name="block_wordspacing" class="mceEditableSelect"></select></td>
|
||||
<td> <select id="block_wordspacing_measurement" name="block_wordspacing_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="block_letterspacing">{$lang_style_block_letterspacing}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="block_letterspacing" name="block_letterspacing" class="mceEditableSelect"></select></td>
|
||||
<td> <select id="block_letterspacing_measurement" name="block_letterspacing_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="block_vertical_alignment">{$lang_style_block_vertical_alignment}</label></td>
|
||||
<td><select id="block_vertical_alignment" name="block_vertical_alignment" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="block_text_align">{$lang_style_block_text_align}</label></td>
|
||||
<td><select id="block_text_align" name="block_text_align" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="block_text_indent">{$lang_style_block_text_indent}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="block_text_indent" name="block_text_indent" /></td>
|
||||
<td> <select id="block_text_indent_measurement" name="block_text_indent_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="block_whitespace">{$lang_style_block_whitespace}</label></td>
|
||||
<td><select id="block_whitespace" name="block_whitespace" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="block_display">{$lang_style_block_display}</label></td>
|
||||
<td><select id="block_display" name="block_display" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="box_panel" class="panel">
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td><label for="box_width">{$lang_style_box_width}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_width" name="box_width" class="mceEditableSelect" onchange="synch('box_width','positioning_width');" /></td>
|
||||
<td> <select id="box_width_measurement" name="box_width_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td> <label for="box_float">{$lang_style_box_float}</label></td>
|
||||
<td><select id="box_float" name="box_float" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="box_height">{$lang_style_box_height}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_height" name="box_height" class="mceEditableSelect" onchange="synch('box_height','positioning_height');" /></td>
|
||||
<td> <select id="box_height_measurement" name="box_height_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td> <label for="box_clear">{$lang_style_box_clear}</label></td>
|
||||
<td><select id="box_clear" name="box_clear" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div style="float: left; width: 49%">
|
||||
<fieldset>
|
||||
<legend>{$lang_style_padding}</legend>
|
||||
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td><input type="checkbox" id="box_padding_same" name="box_padding_same" class="checkbox" checked="checked" onclick="toggleSame(this,'box_padding');" /> <label for="box_padding_same">{$lang_style_same}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_padding_top">{$lang_style_top}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_padding_top" name="box_padding_top" class="mceEditableSelect" /></td>
|
||||
<td> <select id="box_padding_top_measurement" name="box_padding_top_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_padding_right">{$lang_style_right}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_padding_right" name="box_padding_right" class="mceEditableSelect" disabled="disabled" /></td>
|
||||
<td> <select id="box_padding_right_measurement" name="box_padding_right_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_padding_bottom">{$lang_style_bottom}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_padding_bottom" name="box_padding_bottom" class="mceEditableSelect" disabled="disabled" /></td>
|
||||
<td> <select id="box_padding_bottom_measurement" name="box_padding_bottom_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_padding_left">{$lang_style_left}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_padding_left" name="box_padding_left" class="mceEditableSelect" disabled="disabled" /></td>
|
||||
<td> <select id="box_padding_left_measurement" name="box_padding_left_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
<div style="float: right; width: 49%">
|
||||
<fieldset>
|
||||
<legend>{$lang_style_margin}</legend>
|
||||
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td><input type="checkbox" id="box_margin_same" name="box_margin_same" class="checkbox" checked="checked" onclick="toggleSame(this,'box_margin');" /> <label for="box_margin_same">{$lang_style_same}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_margin_top">{$lang_style_top}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_margin_top" name="box_margin_top" class="mceEditableSelect" /></td>
|
||||
<td> <select id="box_margin_top_measurement" name="box_margin_top_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_margin_right">{$lang_style_right}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_margin_right" name="box_margin_right" class="mceEditableSelect" disabled="disabled" /></td>
|
||||
<td> <select id="box_margin_right_measurement" name="box_margin_right_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_margin_bottom">{$lang_style_bottom}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_margin_bottom" name="box_margin_bottom" class="mceEditableSelect" disabled="disabled" /></td>
|
||||
<td> <select id="box_margin_bottom_measurement" name="box_margin_bottom_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="box_margin_left">{$lang_style_left}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="box_margin_left" name="box_margin_left" class="mceEditableSelect" disabled="disabled" /></td>
|
||||
<td> <select id="box_margin_left_measurement" name="box_margin_left_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
<br style="clear: both" />
|
||||
</div>
|
||||
|
||||
<div id="border_panel" class="panel">
|
||||
<table border="0" cellspacing="0" cellp2adding="0" width="100%">
|
||||
<tr>
|
||||
<td class="tdelim"> </td>
|
||||
<td class="tdelim delim"> </td>
|
||||
<td class="tdelim">{$lang_style_style}</td>
|
||||
<td class="tdelim delim"> </td>
|
||||
<td class="tdelim">{$lang_style_width}</td>
|
||||
<td class="tdelim delim"> </td>
|
||||
<td class="tdelim">{$lang_style_color}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td class="delim"> </td>
|
||||
<td><input type="checkbox" id="border_style_same" name="border_style_same" class="checkbox" checked="checked" onclick="toggleSame(this,'border_style');" /> <label for="border_style_same">{$lang_style_same}</label></td>
|
||||
<td class="delim"> </td>
|
||||
<td><input type="checkbox" id="border_width_same" name="border_width_same" class="checkbox" checked="checked" onclick="toggleSame(this,'border_width');" /> <label for="border_width_same">{$lang_style_same}</label></td>
|
||||
<td class="delim"> </td>
|
||||
<td><input type="checkbox" id="border_color_same" name="border_color_same" class="checkbox" checked="checked" onclick="toggleSame(this,'border_color');" /> <label for="border_color_same">{$lang_style_same}</label></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>{$lang_style_top}</td>
|
||||
<td class="delim"> </td>
|
||||
<td><select id="border_style_top" name="border_style_top" class="mceEditableSelect"></select></td>
|
||||
<td class="delim"> </td>
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="border_width_top" name="border_width_top" class="mceEditableSelect"></select></td>
|
||||
<td> <select id="border_width_top_measurement" name="border_width_top_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td class="delim"> </td>
|
||||
<td><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="border_color_top" name="border_color_top" type="text" value="" size="9" onchange="updateColor('border_color_top_pick','border_color_top');" /></td>
|
||||
<td id="border_color_top_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>{$lang_style_right}</td>
|
||||
<td class="delim"> </td>
|
||||
<td><select id="border_style_right" name="border_style_right" class="mceEditableSelect" disabled="disabled"></select></td>
|
||||
<td class="delim"> </td>
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="border_width_right" name="border_width_right" class="mceEditableSelect" disabled="disabled"></select></td>
|
||||
<td> <select id="border_width_right_measurement" name="border_width_right_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td class="delim"> </td>
|
||||
<td><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="border_color_right" name="border_color_right" type="text" value="" size="9" onchange="updateColor('border_color_right_pick','border_color_right');" disabled="disabled" /></td>
|
||||
<td id="border_color_right_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>{$lang_style_bottom}</td>
|
||||
<td class="delim"> </td>
|
||||
<td><select id="border_style_bottom" name="border_style_bottom" class="mceEditableSelect" disabled="disabled"></select></td>
|
||||
<td class="delim"> </td>
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="border_width_bottom" name="border_width_bottom" class="mceEditableSelect" disabled="disabled"></select></td>
|
||||
<td> <select id="border_width_bottom_measurement" name="border_width_bottom_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td class="delim"> </td>
|
||||
<td><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="border_color_bottom" name="border_color_bottom" type="text" value="" size="9" onchange="updateColor('border_color_bottom_pick','border_color_bottom');" disabled="disabled" /></td>
|
||||
<td id="border_color_bottom_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>{$lang_style_left}</td>
|
||||
<td class="delim"> </td>
|
||||
<td><select id="border_style_left" name="border_style_left" class="mceEditableSelect" disabled="disabled"></select></td>
|
||||
<td class="delim"> </td>
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><select id="border_width_left" name="border_width_left" class="mceEditableSelect" disabled="disabled"></select></td>
|
||||
<td> <select id="border_width_left_measurement" name="border_width_left_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td class="delim"> </td>
|
||||
<td><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="border_color_left" name="border_color_left" type="text" value="" size="9" onchange="updateColor('border_color_left_pick','border_color_left');" disabled="disabled" /></td>
|
||||
<td id="border_color_left_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="list_panel" class="panel">
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td><label for="list_type">{$lang_style_list_type}</label></td>
|
||||
<td><select id="list_type" name="list_type" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="list_bullet_image">{$lang_style_bullet_image}</label></td>
|
||||
<td><input id="list_bullet_image" name="list_bullet_image" type="text" /></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="list_position">{$lang_style_position}</label></td>
|
||||
<td><select id="list_position" name="list_position" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="positioning_panel" class="panel">
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td><label for="positioning_type">{$lang_style_positioning_type}</label></td>
|
||||
<td><select id="positioning_type" name="positioning_type" class="mceEditableSelect"></select></td>
|
||||
<td> <label for="positioning_visibility">{$lang_style_visibility}</label></td>
|
||||
<td><select id="positioning_visibility" name="positioning_visibility" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="positioning_width">{$lang_style_width}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_width" name="positioning_width" onchange="synch('positioning_width','box_width');" /></td>
|
||||
<td> <select id="positioning_width_measurement" name="positioning_width_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td> <label for="positioning_zindex">{$lang_style_zindex}</label></td>
|
||||
<td><input type="text" id="positioning_zindex" name="positioning_zindex" /></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><label for="positioning_height">{$lang_style_height}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_height" name="positioning_height" onchange="synch('positioning_height','box_height');" /></td>
|
||||
<td> <select id="positioning_height_measurement" name="positioning_height_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
<td> <label for="positioning_overflow">{$lang_style_overflow}</label></td>
|
||||
<td><select id="positioning_overflow" name="positioning_overflow" class="mceEditableSelect"></select></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div style="float: left; width: 49%">
|
||||
<fieldset>
|
||||
<legend>{$lang_style_placement}</legend>
|
||||
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td><input type="checkbox" id="positioning_placement_same" name="positioning_placement_same" class="checkbox" checked="checked" onclick="toggleSame(this,'positioning_placement');" /> <label for="positioning_placement_same">{$lang_style_same}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_top}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_placement_top" name="positioning_placement_top" /></td>
|
||||
<td> <select id="positioning_placement_top_measurement" name="positioning_placement_top_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_right}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_placement_right" name="positioning_placement_right" disabled="disabled" /></td>
|
||||
<td> <select id="positioning_placement_right_measurement" name="positioning_placement_right_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_bottom}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_placement_bottom" name="positioning_placement_bottom" disabled="disabled" /></td>
|
||||
<td> <select id="positioning_placement_bottom_measurement" name="positioning_placement_bottom_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_left}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_placement_left" name="positioning_placement_left" disabled="disabled" /></td>
|
||||
<td> <select id="positioning_placement_left_measurement" name="positioning_placement_left_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
<div style="float: right; width: 49%">
|
||||
<fieldset>
|
||||
<legend>{$lang_style_clip}</legend>
|
||||
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td><input type="checkbox" id="positioning_clip_same" name="positioning_clip_same" class="checkbox" checked="checked" onclick="toggleSame(this,'positioning_clip');" /> <label for="positioning_clip_same">{$lang_style_same}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_top}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_clip_top" name="positioning_clip_top" /></td>
|
||||
<td> <select id="positioning_clip_top_measurement" name="positioning_clip_top_measurement"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_right}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_clip_right" name="positioning_clip_right" disabled="disabled" /></td>
|
||||
<td> <select id="positioning_clip_right_measurement" name="positioning_clip_right_measurement" disabled="disabled" ></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_bottom}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_clip_bottom" name="positioning_clip_bottom" disabled="disabled" /></td>
|
||||
<td> <select id="positioning_clip_bottom_measurement" name="positioning_clip_bottom_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_style_left}</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
<td><input type="text" id="positioning_clip_left" name="positioning_clip_left" disabled="disabled" /></td>
|
||||
<td> <select id="positioning_clip_left_measurement" name="positioning_clip_left_measurement" disabled="disabled"></select>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
<br style="clear: both" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<div style="float: left">
|
||||
<div style="float: left"><input type="button" id="insert" name="insert" value="{$lang_update}" onclick="updateAction();" /></div>
|
||||
<div style="float: left"> <input type="button" id="apply" name="apply" value="Apply" onclick="applyAction();" class="updateButton" /></div>
|
||||
<br style="clear: both" />
|
||||
</div>
|
||||
|
||||
<div style="float: right">
|
||||
<input type="button" id="cancel" name="cancel" value="{$lang_cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div style="display: none">
|
||||
<div id="container"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/readme.txt
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/readme.txt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Check the TinyMCE documentation for details on this plugin.
|
||||
Loading…
Add table
Add a link
Reference in a new issue