Skip to content

Commit 67dd858

Browse files
committed
MAGETWO-94021: Problems with adding products in wish list
- extending span to display as block to occupy the whole li element so users can block anywhere and the click event can be trigered properly, before it was too small and you had to click on the span text itself
1 parent 5084541 commit 67dd858

File tree

2 files changed

+17
-0
lines changed
  • app/design/frontend/Magento

2 files changed

+17
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,19 @@
3535
.items {
3636
text-align: left;
3737
.item {
38+
> span {
39+
display: block;
40+
padding: 5px 5px 5px 23px;
41+
}
3842
&:last-child {
3943
&:hover {
4044
.lib-css(background, @dropdown-list-item__hover);
4145
}
4246
}
4347
}
48+
li {
49+
padding: 0;
50+
}
4451
}
4552

4653
.table-comparison &,

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,16 @@
4040
.items {
4141
padding: 6px 0;
4242
text-align: left;
43+
.item {
44+
> span {
45+
display: block;
46+
padding: 5px 5px 5px 23px;
47+
}
48+
49+
}
50+
li {
51+
padding: 0;
52+
}
4353
}
4454

4555
> .action {

0 commit comments

Comments
 (0)