File tree 1 file changed +5
-9
lines changed
app/code/Magento/Config/view/adminhtml/templates/system/config 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change 19
19
?>
20
20
<style>
21
21
.highlighted {
22
- background-color: rgb(255, 255, 153) !important;
22
+ background-color: #DFF7FF !important;
23
23
}
24
24
</style>
25
25
<form action="<?= /* @escapeNotVerified */ $ block ->getSaveUrl () ?> " method="post" id="config-edit-form" enctype="multipart/form-data">
@@ -58,18 +58,14 @@ require([
58
58
var groupElement = jQuery('#' + section + '_' + group);
59
59
60
60
var parentSection = groupElement.parents('.section-config');
61
+ parentSection.addClass('highlighted');
62
+ setTimeout(function() {
63
+ parentSection.removeClass('highlighted', 2000, "easeInBack");
64
+ }, 3000);
61
65
if (!parentSection.hasClass('active')) {
62
66
Fieldset.toggleCollapse(section + '_' + group);
63
67
}
64
68
}
65
- if ((typeof group !== 'undefined') && (typeof field !== 'undefined')) {
66
- var fieldElement = jQuery('#' + section + '_' + group + '_' + field);
67
- fieldElement.focus();
68
- fieldElement.addClass('highlighted');
69
- setTimeout(function() {
70
- fieldElement.removeClass('highlighted', 2000, "easeInBack");
71
- }, 3000);
72
- }
73
69
},
74
70
getUp: function (element, tag) {
75
71
var $element = Element.extend(element);
You can’t perform that action at this time.
0 commit comments