diff --git a/lib/WeBWorK/ContentGenerator/Instructor/FileManager.pm b/lib/WeBWorK/ContentGenerator/Instructor/FileManager.pm index 0e415647e7..845f23324e 100644 --- a/lib/WeBWorK/ContentGenerator/Instructor/FileManager.pm +++ b/lib/WeBWorK/ContentGenerator/Instructor/FileManager.pm @@ -314,6 +314,7 @@ EOF values => $dirs, labels => $dirlabels, class => 'form-select', + dir => 'ltr', onChange => "doForm('Go')" }) ) @@ -346,6 +347,7 @@ EOF name => "files", id => "files", class => 'form-select font-monospace h-100', + dir => 'ltr', size => 17, multiple => 1, values => $files, diff --git a/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetList.pm b/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetList.pm index 02270ee569..b4b30b970f 100644 --- a/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetList.pm +++ b/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetList.pm @@ -1301,6 +1301,7 @@ sub import_form { ? $actionParams{'action.import.source'} : '', class => 'form-select form-select-sm', + dir => 'ltr', size => $actionParams{'action.import.number'}[0] || '1', defined($actionParams{'action.import.number'}[0]) && $actionParams{'action.import.number'}[0] ne '1' ? (multiple => undef) : () diff --git a/lib/WeBWorK/ContentGenerator/Instructor/UserList.pm b/lib/WeBWorK/ContentGenerator/Instructor/UserList.pm index abf011b980..aafa297adb 100644 --- a/lib/WeBWorK/ContentGenerator/Instructor/UserList.pm +++ b/lib/WeBWorK/ContentGenerator/Instructor/UserList.pm @@ -1144,6 +1144,7 @@ sub import_form { values => [ $self->getCSVList() ], default => $actionParams{'action.import.source'}[0] || '', class => 'form-select form-select-sm', + dir => 'ltr', }) ) ), diff --git a/lib/WeBWorK/ContentGenerator/Options.pm b/lib/WeBWorK/ContentGenerator/Options.pm index 842ec0f326..a8a869d495 100644 --- a/lib/WeBWorK/ContentGenerator/Options.pm +++ b/lib/WeBWorK/ContentGenerator/Options.pm @@ -141,7 +141,8 @@ sub body { name => 'currPassword', id => 'currPassword', (defined $Password) ? () : (disabled => 1), - class => 'form-control' + class => 'form-control', + dir => 'ltr' }) ), ), @@ -153,7 +154,7 @@ sub body { ), CGI::div( { class => 'col-sm-6' }, - CGI::password_field({ name => 'newPassword', id => 'newPassword', class => 'form-control' }) + CGI::password_field({ name => 'newPassword', id => 'newPassword', class => 'form-control', dir => 'ltr' }) ) ), CGI::div( @@ -167,7 +168,8 @@ sub body { CGI::password_field({ name => 'confirmPassword', id => 'confirmPassword', - class => 'form-control' + class => 'form-control', + dir => 'ltr' }) ) ) @@ -211,7 +213,8 @@ sub body { id => 'currAddress', name => 'currAddress', value => $EUser->email_address, - class => 'form-control' + class => 'form-control', + dir => 'ltr' }) ) ), @@ -223,7 +226,7 @@ sub body { ), CGI::div( { class => 'col-sm-6' }, - CGI::textfield({ name => 'newAddress', id => 'newAddress', class => 'form-control' }) + CGI::textfield({ name => 'newAddress', id => 'newAddress', class => 'form-control', dir => 'ltr' }) ) ) )