File tree Expand file tree Collapse file tree 8 files changed +622
-582
lines changed
Backend/view/adminhtml/templates/admin
design/adminhtml/Magento/backend
Magento_Ui/web/css/source
internal/Magento/Framework/Stdlib/DateTime/Filter Expand file tree Collapse file tree 8 files changed +622
-582
lines changed Original file line number Diff line number Diff line change 27
27
value=""
28
28
data-validate="{required:true}"
29
29
placeholder="<?php /* @escapeNotVerified */ echo __ ('user name ' ) ?> "
30
- autocomplete="username "
30
+ autocomplete="off "
31
31
/>
32
32
</div>
33
33
</div>
43
43
data-validate="{required:true}"
44
44
value=""
45
45
placeholder="<?php /* @escapeNotVerified */ echo __ ('password ' ) ?> "
46
- autocomplete="current-password "
46
+ autocomplete="off "
47
47
/>
48
48
</div>
49
49
</div>
Original file line number Diff line number Diff line change @@ -278,7 +278,11 @@ public function getEntityIdField()
278
278
*/
279
279
public function getEntityTable ()
280
280
{
281
- return isset ($ this ->_data ['entity_table ' ]) ? $ this ->_data ['entity_table ' ] : null ;
281
+ if (isset ($ this ->_data ['entity_table ' ])) {
282
+ return $ this ->getResource ()->getTable ($ this ->_data ['entity_table ' ]);
283
+ }
284
+
285
+ return null ;
282
286
}
283
287
284
288
/**
Original file line number Diff line number Diff line change 7
7
-->
8
8
<page xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" urn:magento:framework:View/Layout/etc/page_configuration.xsd" >
9
9
<head >
10
+ <css src =" jquery/jstree/themes/default/style.css" />
10
11
<css src =" css/styles-old.css" />
11
12
<css src =" css/styles.css" />
12
13
</head >
Original file line number Diff line number Diff line change 320
320
cursor : not-allowed ;
321
321
}
322
322
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
+
323
349
.field .control input [type= ' text' ][disabled ] ~ .addafter strong ,
324
350
.field .control select [disabled ] ~ .addafter strong {
325
351
background-color : #e9e9e9 ;
Original file line number Diff line number Diff line change @@ -241,6 +241,8 @@ option:empty {
241
241
}
242
242
243
243
.admin__control-text {
244
+ margin : .1rem ;
245
+ padding : @field-control__padding-top - .1rem @field-control__padding-horizontal - .1rem @field-control__padding-bottom - .1rem ;
244
246
width : 100% ;
245
247
}
246
248
Original file line number Diff line number Diff line change 887
887
background-color : #e9e9e9 ;
888
888
border-color : #adadad ;
889
889
opacity : .5 ;
890
+
890
891
& .admin__control-checkbox ,
891
892
& .admin__control-radio {
892
893
opacity : 0.01 ;
1387
1388
line-height : 1.33 ;
1388
1389
vertical-align : middle ;
1389
1390
white-space : normal ;
1391
+ word-break : break-all ;
1390
1392
1391
1393
& [data- config- scope] {
1392
1394
position : relative ;
Original file line number Diff line number Diff line change @@ -52,6 +52,11 @@ public function __construct(TimezoneInterface $localeDate)
52
52
*/
53
53
public function filter ($ value )
54
54
{
55
- return $ this ->_normalToLocalFilter ->filter ($ this ->_localToNormalFilter ->filter ($ value ));
55
+ $ value = $ this ->_normalToLocalFilter ->filter ($ this ->_localToNormalFilter ->filter ($ value ));
56
+
57
+ /**
58
+ * @todo MAGETWO-51391
59
+ */
60
+ return str_replace ("\xc2\xa0" , '' , $ value );
56
61
}
57
62
}
You can’t perform that action at this time.
0 commit comments