Skip to content

Commit

Permalink
Merge pull request #66 from magento-webdev/PR-4
Browse files Browse the repository at this point in the history
[WebDev] Bugfixes
  • Loading branch information
Korshenko, Olexii(okorshenko) committed Oct 29, 2015
2 parents 3e1f5a4 + c9ed1b9 commit dc3aee6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,13 @@
}

/* action in fieldset wrapper */
.admin__scope-old #group-fields-product-details-wrapper .attribute-selector {
.admin__scope-old .admin__collapsible-block-wrapper .attribute-selector {
height: 0;
visibility: hidden;
}

.admin__scope-old #group-fields-product-details-wrapper.opened .attribute-selector {
.admin__scope-old .admin__collapsible-block-wrapper.opened .attribute-selector {
height: auto;
visibility: visible;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@
.category-name {
display: inline-block;
.lib-font-size(18);
padding-top: 15px;
padding: 15px 5px 0;
word-break: break-all;
}
.ticker {
.lib-list-reset-styles();
Expand Down
10 changes: 9 additions & 1 deletion lib/web/mage/gallery/gallery.less
Original file line number Diff line number Diff line change
Expand Up @@ -1137,20 +1137,28 @@
z-index: @z-index-10;
cursor: pointer;
.fotorama__thumb__arr {
width: 100%;
.fotorama-abs-center();
width: 100%;

.ie9 & {
margin: (-@fotorama-thumb-arrow/2) 0 0 (-@fotorama-thumb-arrow/2);
}
}
}
.fotorama__thumb__arr--left {
.fotorama-arrow-gradient(left);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
left: 0;

.fotorama__thumb__arr {
background-position: (-@fotorama-thumb-arrow) (-@fotorama-thumb-arrow);
}
}
.fotorama__thumb__arr--right {
.fotorama-arrow-gradient(right);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
right: 0;

.fotorama__thumb__arr {
background-position: (-@fotorama-thumb-arrow*2) (-@fotorama-thumb-arrow);
}
Expand Down

0 comments on commit dc3aee6

Please sign in to comment.