Skip to content

Commit dc3aee6

Browse files
author
Korshenko, Olexii(okorshenko)
committed
Merge pull request #66 from magento-webdev/PR-4
[WebDev] Bugfixes
2 parents 3e1f5a4 + c9ed1b9 commit dc3aee6

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

app/code/Magento/Catalog/view/adminhtml/web/product/product.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,13 @@
207207
}
208208

209209
/* action in fieldset wrapper */
210-
.admin__scope-old #group-fields-product-details-wrapper .attribute-selector {
210+
.admin__scope-old .admin__collapsible-block-wrapper .attribute-selector {
211+
height: 0;
211212
visibility: hidden;
212213
}
213214

214-
.admin__scope-old #group-fields-product-details-wrapper.opened .attribute-selector {
215+
.admin__scope-old .admin__collapsible-block-wrapper.opened .attribute-selector {
216+
height: auto;
215217
visibility: visible;
216218
}
217219

app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@
7777
.category-name {
7878
display: inline-block;
7979
.lib-font-size(18);
80-
padding-top: 15px;
80+
padding: 15px 5px 0;
81+
word-break: break-all;
8182
}
8283
.ticker {
8384
.lib-list-reset-styles();

lib/web/mage/gallery/gallery.less

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1137,20 +1137,28 @@
11371137
z-index: @z-index-10;
11381138
cursor: pointer;
11391139
.fotorama__thumb__arr {
1140-
width: 100%;
11411140
.fotorama-abs-center();
1141+
width: 100%;
1142+
1143+
.ie9 & {
1144+
margin: (-@fotorama-thumb-arrow/2) 0 0 (-@fotorama-thumb-arrow/2);
1145+
}
11421146
}
11431147
}
11441148
.fotorama__thumb__arr--left {
11451149
.fotorama-arrow-gradient(left);
1150+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
11461151
left: 0;
1152+
11471153
.fotorama__thumb__arr {
11481154
background-position: (-@fotorama-thumb-arrow) (-@fotorama-thumb-arrow);
11491155
}
11501156
}
11511157
.fotorama__thumb__arr--right {
11521158
.fotorama-arrow-gradient(right);
1159+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
11531160
right: 0;
1161+
11541162
.fotorama__thumb__arr {
11551163
background-position: (-@fotorama-thumb-arrow*2) (-@fotorama-thumb-arrow);
11561164
}

0 commit comments

Comments
 (0)