Skip to content

Commit f8b9214

Browse files
authored
🔃 [Magento Community Engineering] Community Contributions - 2.4.1-develop latest changes
Accepted Community Pull Requests: - #28083: Fix issue button used action-primary class changed color if click outside (by @mrtuvn) - #28039: StorefrontLoginWithIncorrectCredentialsTest refactored (by @ajithkumar-maragathavel) - #28084: Fix inconsistent visual labels form login in theme blank (by @mrtuvn) - #28032: Fix icon advance attributes properties not change (by @mrtuvn) - #27670: [MFTF] remove redundunt ActionGroup (by @Usik2203) Fixed GitHub Issues: - #27095: In Floating cart delete pop-up, When user click on out side of OK button than button color is changed. (reported by @dipeshrangani) has been fixed in #28083 by @mrtuvn in 2.4.1-develop branch Related commits: 1. d7cf188 2. 77a4e8c 3. 6b8fc4c 4. facbe37 5. 1ef8a51 6. 6e81906 7. 03a2908 8. 8c0eff0 9. 0e84ed4 10. 63550be 11. e3975c6 12. b285342 13. 1b8199a 14. b8e26ce 15. cc3f6a0 16. 628f7d5 - #28059: Missaligned fields on the Customer Login form (reported by @gjportegies) has been fixed in #28084 by @mrtuvn in 2.4.1-develop branch Related commits: 1. d7cf188 2. 77a4e8c 3. 6b8fc4c 4. facbe37 5. 1ef8a51 6. 6e81906 7. 03a2908 8. 8c0eff0 9. 0e84ed4 10. 63550be 11. e3975c6 12. d68fa5d 13. 63552f8 14. 80c6ba7 - #22702: Toggle icon not working in create configuration Product creation Page (reported by @nehaguptacedcoss) has been fixed in #28032 by @mrtuvn in 2.4.1-develop branch Related commits: 1. d7cf188 2. 77a4e8c 3. 6b8fc4c 4. facbe37 5. 1ef8a51 6. 6e81906 7. 03a2908 8. 8c0eff0 9. 0e84ed4 10. 63550be 11. 321f5c1 12. 13fe206 13. aae2b7f 14. 2c88396 15. cfec001 - #26022: Admin attributes Advanced Attribute Properties icon doesn't change while collapsing block (reported by @speedy008) has been fixed in #28032 by @mrtuvn in 2.4.1-develop branch Related commits: 1. d7cf188 2. 77a4e8c 3. 6b8fc4c 4. facbe37 5. 1ef8a51 6. 6e81906 7. 03a2908 8. 8c0eff0 9. 0e84ed4 10. 63550be 11. 321f5c1 12. 13fe206 13. aae2b7f 14. 2c88396 15. cfec001
2 parents 56ae4d5 + 540f8cd commit f8b9214

File tree

7 files changed

+17
-45
lines changed

7 files changed

+17
-45
lines changed

app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
*/
66
-->
77

8-
<div class="admin__collapsible-block-wrapper opened">
9-
<div class="fieldset-wrapper-title">
8+
<div class="fieldset-wrapper admin__collapsible-block-wrapper opened" data-bind="mageInit: {'collapsible':{'active':true,'openedState':'opened'}}">
9+
<div class="fieldset-wrapper-title toggle" data-role="title">
1010
<strong class="admin__collapsible-title" data-toggle="collapse" data-bind="attr:{'data-target': '#'+id}">
1111
<span data-bind="text: title"></span>
1212
</strong>
1313
</div>
1414

15-
<div class="fieldset-wrapper-content in collapse" data-collapsed="true" data-bind="attr: {id: id}">
15+
<div class="fieldset-wrapper-content in collapse" data-role="content" data-collapsed="true" data-bind="attr: {id: id}">
1616
<!-- ko template: {
1717
name: "ui/grid/paging/paging", data: paging
1818
} -->

app/code/Magento/Customer/Test/Mftf/Test/StorefrontLoginWithIncorrectCredentialsTest.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,14 @@
2626
<deleteData stepKey="deleteCustomer" createDataKey="customer" />
2727
</after>
2828

29-
<amOnPage stepKey="amOnSignInPage" url="{{StorefrontCustomerSignInPage.url}}"/>
30-
<fillField stepKey="fillEmail" userInput="$$customer.email$$" selector="{{StorefrontCustomerSignInFormSection.emailField}}"/>
31-
<fillField stepKey="fillPassword" userInput="$$customer.password$$INVALID" selector="{{StorefrontCustomerSignInFormSection.passwordField}}"/>
32-
<click stepKey="clickSignInAccountButton" selector="{{StorefrontCustomerSignInFormSection.signInAccountButton}}"/>
33-
<see stepKey="seeErrorMessage" selector="{{StorefrontCustomerLoginMessagesSection.errorMessage}}" userInput="The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later."/>
29+
<actionGroup ref="StorefrontOpenCustomerLoginPageActionGroup" stepKey="goToSignInPage"/>
30+
<actionGroup ref="StorefrontFillCustomerLoginFormWithWrongPasswordActionGroup" stepKey="fillLoginFormWithCustomerData">
31+
<argument name="customer" value="$$customer$$"/>
32+
</actionGroup>
33+
<actionGroup ref="StorefrontClickSignOnCustomerLoginFormActionGroup" stepKey="clickSignInAccountButtonFirstAttempt"/>
34+
<actionGroup ref="AssertMessageCustomerLoginActionGroup" stepKey="seeErrorMessageAfterFirstAttempt">
35+
<argument name="messageType" value="error"/>
36+
<argument name="message" value="The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later"/>
37+
</actionGroup>
3438
</test>
3539
</tests>

app/code/Magento/SalesRule/Test/Mftf/ActionGroup/StorefrontClickOnMiniCartActionGroup.xml

Lines changed: 0 additions & 16 deletions
This file was deleted.

app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_collapsible-blocks.less

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,6 @@
122122
&:before {
123123
content: @icon-expand-close__content;
124124
}
125-
&.active {
126-
&:before {
127-
content: @icon-expand-open__content;
128-
}
129-
}
130125
}
131126
}
132127

app/design/frontend/Magento/blank/Magento_Customer/web/css/source/_module.less

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,6 @@
414414
&:extend(.abs-blocks-2columns all);
415415
.login {
416416
.actions-toolbar {
417-
margin-left: 0;
418-
419417
> .primary {
420418
margin-bottom: 0;
421419
margin-right: @indent__l;
@@ -430,19 +428,8 @@
430428

431429
.fieldset {
432430
&:after {
433-
margin-left: 0;
434431
&:extend(.abs-margin-for-forms-desktop all);
435432
}
436-
437-
> .field {
438-
> .control {
439-
width: 80%;
440-
}
441-
442-
.label {
443-
text-align: left;
444-
}
445-
}
446433
}
447434
}
448435

app/design/frontend/Magento/blank/web/css/source/_buttons.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
.lib-link-as-button();
2626
}
2727

28-
.action.primary {
28+
.action.primary,
29+
.action-primary {
2930
.lib-button-primary();
3031
}
3132
}

app/design/frontend/Magento/luma/web/css/source/_buttons.less

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
button {
1919
&:not(.primary) {
20-
.lib-css(box-shadow, @button__shadow);
20+
.lib-css(box-shadow, none);
2121

2222
&:active {
2323
.lib-css(box-shadow, @button__shadow-active);
@@ -39,7 +39,8 @@
3939
.lib-link-as-button();
4040
}
4141

42-
.action.primary {
42+
.action.primary,
43+
.action-primary {
4344
.lib-button-primary();
4445
}
4546
}

0 commit comments

Comments
 (0)