mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
MDL-56773 atto_equation: The equation editor should always be rtl
Also re-applied the border that was added to the preview area as part of MDL-44778. The class name that's used no longer exists.
This commit is contained in:
parent
206023c15f
commit
d4dfd44491
@ -9,7 +9,3 @@
|
||||
padding: 5px;
|
||||
min-width: 206px;
|
||||
}
|
||||
|
||||
.atto_form .atto_equation_preview {
|
||||
margin-bottom: 0; /* Turn off the margin-bottom from the class "well" */
|
||||
}
|
||||
|
@ -13,6 +13,7 @@ Feature: Atto equation editor
|
||||
And I select the text in the "Description" Atto editor
|
||||
And I click on "Show more buttons" "button"
|
||||
And I click on "Equation editor" "button"
|
||||
And the "class" attribute of "Edit equation using" "field" should contain "text-ltr"
|
||||
And I set the field "Edit equation using" to " = 1 \div 0"
|
||||
And I click on "\infty" "button"
|
||||
And I click on "Save equation" "button"
|
||||
@ -31,6 +32,7 @@ Feature: Atto equation editor
|
||||
And I select the text in the "Description" Atto editor
|
||||
And I click on "Show more buttons" "button"
|
||||
And I click on "Equation editor" "button"
|
||||
And the "class" attribute of "Edit equation using" "field" should contain "text-ltr"
|
||||
Then the field "Edit equation using" matches value " \pi "
|
||||
And I click on "Save equation" "button"
|
||||
And the field "Description" matches value "<p>\( \pi \)</p>"
|
||||
|
@ -59,10 +59,11 @@ var COMPONENTNAME = 'atto_equation',
|
||||
'<form class="atto_form">' +
|
||||
'{{{library}}}' +
|
||||
'<label for="{{elementid}}_{{CSS.EQUATION_TEXT}}">{{{get_string "editequation" component texdocsurl}}}</label>' +
|
||||
'<textarea class="fullwidth {{CSS.EQUATION_TEXT}}" ' +
|
||||
'<textarea class="fullwidth text-ltr {{CSS.EQUATION_TEXT}}" ' +
|
||||
'id="{{elementid}}_{{CSS.EQUATION_TEXT}}" rows="8"></textarea><br/>' +
|
||||
'<label for="{{elementid}}_{{CSS.EQUATION_PREVIEW}}">{{get_string "preview" component}}</label>' +
|
||||
'<div describedby="{{elementid}}_cursorinfo" class="well well-small p-1 fullwidth {{CSS.EQUATION_PREVIEW}}" ' +
|
||||
'<div describedby="{{elementid}}_cursorinfo" ' +
|
||||
'class="border rounded bg-light p-1 fullwidth {{CSS.EQUATION_PREVIEW}}" ' +
|
||||
'id="{{elementid}}_{{CSS.EQUATION_PREVIEW}}"></div>' +
|
||||
'<div id="{{elementid}}_cursorinfo">{{get_string "cursorinfo" component}}</div>' +
|
||||
'<div class="mdl-align">' +
|
||||
|
File diff suppressed because one or more lines are too long
@ -59,10 +59,11 @@ var COMPONENTNAME = 'atto_equation',
|
||||
'<form class="atto_form">' +
|
||||
'{{{library}}}' +
|
||||
'<label for="{{elementid}}_{{CSS.EQUATION_TEXT}}">{{{get_string "editequation" component texdocsurl}}}</label>' +
|
||||
'<textarea class="fullwidth {{CSS.EQUATION_TEXT}}" ' +
|
||||
'<textarea class="fullwidth text-ltr {{CSS.EQUATION_TEXT}}" ' +
|
||||
'id="{{elementid}}_{{CSS.EQUATION_TEXT}}" rows="8"></textarea><br/>' +
|
||||
'<label for="{{elementid}}_{{CSS.EQUATION_PREVIEW}}">{{get_string "preview" component}}</label>' +
|
||||
'<div describedby="{{elementid}}_cursorinfo" class="well well-small p-1 fullwidth {{CSS.EQUATION_PREVIEW}}" ' +
|
||||
'<div describedby="{{elementid}}_cursorinfo" ' +
|
||||
'class="border rounded bg-light p-1 fullwidth {{CSS.EQUATION_PREVIEW}}" ' +
|
||||
'id="{{elementid}}_{{CSS.EQUATION_PREVIEW}}"></div>' +
|
||||
'<div id="{{elementid}}_cursorinfo">{{get_string "cursorinfo" component}}</div>' +
|
||||
'<div class="mdl-align">' +
|
||||
|
@ -57,10 +57,11 @@ var COMPONENTNAME = 'atto_equation',
|
||||
'<form class="atto_form">' +
|
||||
'{{{library}}}' +
|
||||
'<label for="{{elementid}}_{{CSS.EQUATION_TEXT}}">{{{get_string "editequation" component texdocsurl}}}</label>' +
|
||||
'<textarea class="fullwidth {{CSS.EQUATION_TEXT}}" ' +
|
||||
'<textarea class="fullwidth text-ltr {{CSS.EQUATION_TEXT}}" ' +
|
||||
'id="{{elementid}}_{{CSS.EQUATION_TEXT}}" rows="8"></textarea><br/>' +
|
||||
'<label for="{{elementid}}_{{CSS.EQUATION_PREVIEW}}">{{get_string "preview" component}}</label>' +
|
||||
'<div describedby="{{elementid}}_cursorinfo" class="well well-small p-1 fullwidth {{CSS.EQUATION_PREVIEW}}" ' +
|
||||
'<div describedby="{{elementid}}_cursorinfo" ' +
|
||||
'class="border rounded bg-light p-1 fullwidth {{CSS.EQUATION_PREVIEW}}" ' +
|
||||
'id="{{elementid}}_{{CSS.EQUATION_PREVIEW}}"></div>' +
|
||||
'<div id="{{elementid}}_cursorinfo">{{get_string "cursorinfo" component}}</div>' +
|
||||
'<div class="mdl-align">' +
|
||||
|
Loading…
x
Reference in New Issue
Block a user