Style Moodle H5P admin upgrade form.
parent
b9a1e5f404
commit
467a8c49ed
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
// Add "go" button
|
// Add "go" button
|
||||||
$('<button/>', {
|
$('<button/>', {
|
||||||
class: 'h5p-admin-upgrade-button',
|
class: 'h5p-admin-upgrade-button btn btn-primary ml-1',
|
||||||
text: info.buttonLabel,
|
text: info.buttonLabel,
|
||||||
click: function () {
|
click: function () {
|
||||||
// Start new content upgrade
|
// Start new content upgrade
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
html += '<option value="' + id + '">' + versions[id] + '</option>';
|
html += '<option value="' + id + '">' + versions[id] + '</option>';
|
||||||
}
|
}
|
||||||
if (html !== '') {
|
if (html !== '') {
|
||||||
html = '<select>' + html + '</select>';
|
html = '<select class="form-control form-inline custom-select">' + html + '</select>';
|
||||||
return html;
|
return html;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue