Skip to content

Commit 3ad2afd

Browse files
committed
Merge remote-tracking branch 'webdev/PR' into PR
2 parents cb6f243 + e037f13 commit 3ad2afd

File tree

7 files changed

+32
-12
lines changed

7 files changed

+32
-12
lines changed

app/code/Magento/Backend/view/adminhtml/layout/default.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="admin-1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
99
<head>
1010
<title>Magento Admin</title>
11-
<meta name="viewport" content="width=device-width"/>
11+
<meta name="viewport" content="width=1024, initial-scale=1"/>
1212
<link src="requirejs/require.js"/>
1313
<css src="extjs/resources/css/ext-all.css"/>
1414
<css src="extjs/resources/css/ytheme-magento.css"/>

app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ define([
2424
type: 'slide',
2525
buttons: [],
2626
opened: function () {
27+
$(this).parent().addClass('modal-content-new-attribute');
2728
self.iframe = $('<iframe id="create_new_attribute_container">').attr({
2829
src: self._prepareUrl(),
2930
frameborder: 0

app/code/Magento/Paypal/etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<paypal>
1111
<bncode>Magento_Cart_Community</bncode>
1212
<style>
13-
<logo>nowAccepting_150x60</logo>
13+
<logo></logo>
1414
</style>
1515
<wpp>
1616
<api_password backend_model="Magento\Config\Model\Config\Backend\Encrypted" />

app/design/adminhtml/Magento/backend/Magento_Catalog/web/css/source/_module.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ div.removed,
6969
// ---------------------------------------------
7070

7171
.catalog-product-attribute-edit {
72+
min-width: 0;
73+
7274
&.attribute-popup {
7375
.page-wrapper {
7476
width: 100%;

app/design/adminhtml/Magento/backend/web/css/source/_structure.less

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,6 @@ body {
4141
}
4242
}
4343

44-
// Scroll bar appearing compensation
45-
@media (min-width: @window__min-width) {
46-
html {
47-
width: 100vw;
48-
}
49-
body {
50-
overflow-x: hidden;
51-
}
52-
}
53-
5444
.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen__m) {
5545
.page-layout-admin-2columns-left {
5646
.page-columns {

app/design/adminhtml/Magento/backend/web/css/source/components/_modals_extend.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@
140140
}
141141

142142
.modal-slide {
143+
.modal-content-new-attribute {
144+
overflow: auto;
145+
-webkit-overflow-scrolling: touch;
146+
}
147+
143148
.modal-title {
144149
font-size: @modal-slide-title__font-size;
145150
margin-right: @modal-slide-title__font-size + @modal-slide__padding + 1rem;

app/design/adminhtml/Magento/backend/web/css/source/components/_popups.less

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,28 @@
429429
}
430430
}
431431

432+
.ie9 {
433+
.catalog-product-attribute-edit {
434+
&.attribute-popup {
435+
min-width: 0;
436+
437+
.menu-wrapper {
438+
display: none;
439+
}
440+
441+
.page-actions {
442+
button {
443+
float: none;
444+
}
445+
446+
.primary {
447+
float: right;
448+
}
449+
}
450+
}
451+
}
452+
}
453+
432454
//
433455
// Prototype popup window
434456
// _____________________________________________

0 commit comments

Comments
 (0)