Skip to content

Commit 5ca736b

Browse files
committed
Merge branch 'develop' of github.corp.magento.com:magento2/magento2ce into bugfixes
2 parents e20b690 + 6ea7d2d commit 5ca736b

File tree

6 files changed

+611
-580
lines changed

6 files changed

+611
-580
lines changed

app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
value=""
2828
data-validate="{required:true}"
2929
placeholder="<?php /* @escapeNotVerified */ echo __('user name') ?>"
30-
autocomplete="username"
30+
autocomplete="off"
3131
/>
3232
</div>
3333
</div>
@@ -43,7 +43,7 @@
4343
data-validate="{required:true}"
4444
value=""
4545
placeholder="<?php /* @escapeNotVerified */ echo __('password') ?>"
46-
autocomplete="current-password"
46+
autocomplete="off"
4747
/>
4848
</div>
4949
</div>

app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
-->
88
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
99
<head>
10+
<css src="jquery/jstree/themes/default/style.css"/>
1011
<css src="css/styles-old.css"/>
1112
<css src="css/styles.css"/>
1213
</head>

app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module-old.less

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,32 @@
320320
cursor: not-allowed;
321321
}
322322

323+
// ToDo: remove after "Product Attributes Mass update" implementation
324+
.attributes-edit-form {
325+
.field {
326+
.control {
327+
input[type='text'][disabled] ~ .addafter,
328+
select[disabled] ~ .addafter,
329+
.attribute-change-checkbox {
330+
background: none;
331+
color: #676056;
332+
cursor: inherit;
333+
opacity: 1;
334+
335+
strong {
336+
background: none;
337+
}
338+
}
339+
}
340+
}
341+
342+
.weight-switcher {
343+
.addafter {
344+
margin-top: 30px;
345+
}
346+
}
347+
}
348+
323349
.field .control input[type='text'][disabled] ~ .addafter strong,
324350
.field .control select[disabled] ~ .addafter strong {
325351
background-color: #e9e9e9;

app/design/adminhtml/Magento/backend/web/css/source/forms/_controls.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,8 @@ option:empty {
241241
}
242242

243243
.admin__control-text {
244+
margin: .1rem;
245+
padding: @field-control__padding-top - .1rem @field-control__padding-horizontal - .1rem @field-control__padding-bottom - .1rem;
244246
width: 100%;
245247
}
246248

app/design/adminhtml/Magento/backend/web/css/styles-old.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -887,6 +887,7 @@
887887
background-color: #e9e9e9;
888888
border-color: #adadad;
889889
opacity: .5;
890+
890891
&.admin__control-checkbox,
891892
&.admin__control-radio {
892893
opacity: 0.01;
@@ -1387,6 +1388,7 @@
13871388
line-height: 1.33;
13881389
vertical-align: middle;
13891390
white-space: normal;
1391+
word-break: break-all;
13901392

13911393
&[data-config-scope] {
13921394
position: relative;

0 commit comments

Comments
 (0)