Skip to content

Commit 8b38e63

Browse files
committed
Merge remote-tracking branch 'mainline/2.4.1-develop' into 2.4.1-develop
2 parents b3f4f94 + f8b9214 commit 8b38e63

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)