From 50c5a5b6af501e6caba65dc59a61eb52effefbc1 Mon Sep 17 00:00:00 2001 From: Olga Lytvynenko Date: Fri, 23 Oct 2015 17:23:51 +0300 Subject: [PATCH 1/6] MAGETWO-44353: [IE9]Gallery thumbnail navigation arrow displayed particularly inside thumbnails block --- lib/web/mage/gallery/gallery.less | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/web/mage/gallery/gallery.less b/lib/web/mage/gallery/gallery.less index f1a68415517b1..d9b22b2d0b433 100644 --- a/lib/web/mage/gallery/gallery.less +++ b/lib/web/mage/gallery/gallery.less @@ -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); } From 3772e35fbea8a4d9722328bfa699c7181a65617e Mon Sep 17 00:00:00 2001 From: Oleksandr Dubovyk Date: Mon, 26 Oct 2015 11:58:43 +0200 Subject: [PATCH 2/6] MAGETWO-44527: Invalid padding of collapsiple panel on "create Product" Admin page - Fixed dropdown when collapsiple panel is collapsed --- .../Magento/Catalog/view/adminhtml/web/product/product.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/product.css b/app/code/Magento/Catalog/view/adminhtml/web/product/product.css index 153a6d488fee3..e9fa2e80db8c9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/product/product.css +++ b/app/code/Magento/Catalog/view/adminhtml/web/product/product.css @@ -207,12 +207,14 @@ } /* action in fieldset wrapper */ -.admin__scope-old #group-fields-product-details-wrapper .attribute-selector { +.admin__scope-old .admin__collapsible-block-wrapper .attribute-selector { visibility: hidden; + height: 0; } -.admin__scope-old #group-fields-product-details-wrapper.opened .attribute-selector { +.admin__scope-old .admin__collapsible-block-wrapper.opened .attribute-selector { visibility: visible; + height: auto; } .admin__scope-old .action-manage-images { From 495b9b1e8e468d2e253863b50a5e4927cfc61f56 Mon Sep 17 00:00:00 2001 From: Oleksandr Dubovyk Date: Mon, 26 Oct 2015 12:07:59 +0200 Subject: [PATCH 3/6] MAGETWO-44527: Invalid padding of collapsiple panel on "create Product" Admin page --- .../Magento/Catalog/view/adminhtml/web/product/product.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/product.css b/app/code/Magento/Catalog/view/adminhtml/web/product/product.css index e9fa2e80db8c9..620c87f55b94d 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/product/product.css +++ b/app/code/Magento/Catalog/view/adminhtml/web/product/product.css @@ -208,13 +208,13 @@ /* action in fieldset wrapper */ .admin__scope-old .admin__collapsible-block-wrapper .attribute-selector { - visibility: hidden; height: 0; + visibility: hidden; } .admin__scope-old .admin__collapsible-block-wrapper.opened .attribute-selector { - visibility: visible; height: auto; + visibility: visible; } .admin__scope-old .action-manage-images { From 03d3054029f57d00a83ed7c39bbbf8fb110f2fe8 Mon Sep 17 00:00:00 2001 From: Olga Lytvynenko Date: Mon, 26 Oct 2015 12:48:07 +0200 Subject: [PATCH 4/6] MAGETWO-44353: [IE9]Gallery thumbnail navigation arrow displayed particularly inside thumbnails block - Remove unnecessary spaces. --- lib/web/mage/gallery/gallery.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/web/mage/gallery/gallery.less b/lib/web/mage/gallery/gallery.less index d9b22b2d0b433..73b98b23d5b58 100644 --- a/lib/web/mage/gallery/gallery.less +++ b/lib/web/mage/gallery/gallery.less @@ -1147,7 +1147,7 @@ } .fotorama__thumb__arr--left { .fotorama-arrow-gradient(left); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1); left: 0; .fotorama__thumb__arr { @@ -1156,7 +1156,7 @@ } .fotorama__thumb__arr--right { .fotorama-arrow-gradient(right); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1); right: 0; .fotorama__thumb__arr { From d5a48cf8b674bd8285bc00c79f8536b58b309972 Mon Sep 17 00:00:00 2001 From: Olga Lytvynenko Date: Mon, 26 Oct 2015 16:54:29 +0200 Subject: [PATCH 5/6] MAGETWO-44353: [IE9]Gallery thumbnail navigation arrow displayed particularly inside thumbnails block - Fix according code style. --- lib/web/mage/gallery/gallery.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/web/mage/gallery/gallery.less b/lib/web/mage/gallery/gallery.less index 73b98b23d5b58..b4a20fe03cd37 100644 --- a/lib/web/mage/gallery/gallery.less +++ b/lib/web/mage/gallery/gallery.less @@ -1147,7 +1147,7 @@ } .fotorama__thumb__arr--left { .fotorama-arrow-gradient(left); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1); left: 0; .fotorama__thumb__arr { @@ -1156,7 +1156,7 @@ } .fotorama__thumb__arr--right { .fotorama-arrow-gradient(right); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1); right: 0; .fotorama__thumb__arr { From c9ed1b990236468b42dcf1dcb41bd0f0b10a0ea6 Mon Sep 17 00:00:00 2001 From: Olga Matviienko Date: Thu, 29 Oct 2015 13:47:01 +0200 Subject: [PATCH 6/6] MAGETWO-42354: Widget is displayed broken on Storefront - Merge remote-tracking branch 'origin/develop' into PR-4 --- .../blank/Magento_CatalogEvent/web/css/source/_widgets.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less index 109186faad1db..6b3fb6d394804 100644 --- a/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less +++ b/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less @@ -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();