Skip to content

Commit 597dbbe

Browse files
author
Stanislav Idolov
authored
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - #16226: Navigation dropdown caret icon. (by @tejash-wagento) - #16294: Removed duplicate line and added comment on variable (by @vgelani) - #16255: #15255 unlock customer after password reset (by @vgelani) - #15727: [Backport] Feature space between category page (by @sanjay-wagento) Fixed GitHub Issues: - #15255: Customer who exceeded max login failures not able to login even after reset password (reported by @tizzyguy87) has been fixed in #16255 by @vgelani in 2.1-develop branch Related commits: 1. be0f9bc - #12601: A space between the category page and the main footer when applying specific settings (reported by @wd7080) has been fixed in #15727 by @sanjay-wagento in 2.1-develop branch Related commits: 1. 5e6abd5
2 parents d3c6e06 + 78d58f2 commit 597dbbe

File tree

5 files changed

+60
-2
lines changed

5 files changed

+60
-2
lines changed

app/code/Magento/Customer/Model/AccountManagement.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@ public function resetPassword($email, $resetToken, $newPassword)
586586
$customerSecure->setRpToken(null);
587587
$customerSecure->setRpTokenCreatedAt(null);
588588
$customerSecure->setPasswordHash($this->createPasswordHash($newPassword));
589+
$this->getAuthentication()->unlock($customer->getId());
589590
$this->sessionManager->destroy();
590591
$this->destroyCustomerSessions($customer->getId());
591592
$this->customerRepository->save($customer);

app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
*/
1616
class Discount extends \Magento\Sales\Block\Adminhtml\Order\Create\Totals\DefaultTotals
1717
{
18-
//protected $_template = 'tax/checkout/subtotal.phtml';
19-
2018
/**
2119
* Tax config
2220
*

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,16 @@
494494
}
495495
}
496496

497+
//
498+
// Category page 1 column layout
499+
// ---------------------------------------------
500+
501+
.catalog-category-view.page-layout-1column {
502+
.column.main {
503+
min-height: inherit;
504+
}
505+
}
506+
497507
}
498508

499509
//

app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/_module.less

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,16 @@
562562
}
563563
}
564564
}
565+
566+
//
567+
// Category page 1 column layout
568+
// ---------------------------------------------
569+
570+
.catalog-category-view.page-layout-1column {
571+
.column.main {
572+
min-height: inherit;
573+
}
574+
}
565575
}
566576

567577
//

lib/web/css/source/lib/_navigation.less

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,25 @@
355355
overflow: visible !important;
356356
}
357357

358+
&.parent {
359+
> .level-top {
360+
padding-right: 20px;
361+
362+
> .ui-menu-icon {
363+
position: absolute;
364+
right: 0;
365+
366+
.lib-icon-font(
367+
@icon-down,
368+
@_icon-font-size: 12px,
369+
@_icon-font-line-height: 20px,
370+
@_icon-font-text-hide: true,
371+
@_icon-font-position: after
372+
);
373+
}
374+
}
375+
}
376+
358377
.submenu {
359378
.lib-css(background, @_submenu-background-color);
360379
.lib-css(border, @_submenu-border-width @_submenu-border-style @_submenu-border-color);
@@ -414,6 +433,26 @@
414433
left: auto !important;
415434
right: 100%;
416435
}
436+
437+
li {
438+
margin: 0;
439+
&.parent {
440+
> a {
441+
> .ui-menu-icon {
442+
position: absolute;
443+
right: 3px;
444+
445+
.lib-icon-font(
446+
@icon-next,
447+
@_icon-font-size: 12px,
448+
@_icon-font-line-height: 20px,
449+
@_icon-font-text-hide: true,
450+
@_icon-font-position: after
451+
);
452+
}
453+
}
454+
}
455+
}
417456
}
418457

419458
&.more {

0 commit comments

Comments
 (0)