diff --git a/lib/editor/tinymce/readme_moodle.txt b/lib/editor/tinymce/readme_moodle.txt index 58dbde79a9e..55e3e57b023 100644 --- a/lib/editor/tinymce/readme_moodle.txt +++ b/lib/editor/tinymce/readme_moodle.txt @@ -18,6 +18,8 @@ Upgrade procedure: Changes: lib/editor/tinymce/tiny_mce/3.5.10/plugins/fullscreen/editor_plugin_src.js:31-33 - Added checks to see if required functions exist. There is a javascript error in IE where maximising the tinyMCE editor window with an image in it. +lib/editor/tinymce/tiny_mce/3.5.10/theme/advanced/skins/moodle/content.css:50-53 - Added CSS to allow bullet points to be displayed +in rtl languages. TODO: * create some new automated script that sends other languages from upstream into AMOS diff --git a/lib/editor/tinymce/tiny_mce/3.5.10/themes/advanced/skins/moodle/content.css b/lib/editor/tinymce/tiny_mce/3.5.10/themes/advanced/skins/moodle/content.css index a1a8f9bd325..561cec4c5a6 100644 --- a/lib/editor/tinymce/tiny_mce/3.5.10/themes/advanced/skins/moodle/content.css +++ b/lib/editor/tinymce/tiny_mce/3.5.10/themes/advanced/skins/moodle/content.css @@ -46,3 +46,8 @@ font[face=mceinline] {font-family:inherit !important} .mceItemAudio {background-image:url(../../img/video.gif)} .mceItemIframe {background-image:url(../../img/iframe.gif)} .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;} + +#tinymce[dir=rtl] ul, +#tinymce[dir=rtl] ol { + margin: 0 25px 10px 0; +} \ No newline at end of file diff --git a/lib/editor/tinymce/version.php b/lib/editor/tinymce/version.php index f6c178b965e..e1c973f0310 100644 --- a/lib/editor/tinymce/version.php +++ b/lib/editor/tinymce/version.php @@ -24,7 +24,7 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2013110602; // The current plugin version (Date: YYYYMMDDXX) +$plugin->version = 2013110603; // The current plugin version (Date: YYYYMMDDXX) $plugin->requires = 2013110500; // Requires this Moodle version $plugin->component = 'editor_tinymce'; // Full name of the plugin (used for diagnostics) $plugin->release = '3.5.10'; // This is NOT a directory name, see lib.php if you need to know where is the editor code!