File tree Expand file tree Collapse file tree 3 files changed +37
-4
lines changed
app/code/Magento/PageBuilder
Plugin/Catalog/Ui/DataProvider/Product/Form/Modifier Expand file tree Collapse file tree 3 files changed +37
-4
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public function afterSetupAttributeContainerMeta(
90
90
[
91
91
'additionalFieldsetClasses' => [
92
92
'admin__field-wide' => true,
93
- 'admin__field -page-builder' => true
93
+ 'admin__fieldset -page-builder' => true
94
94
],
95
95
'template' => 'Magento_PageBuilder/form/components/group/group'
96
96
]
Original file line number Diff line number Diff line change 51
51
// _____________________________________________
52
52
53
53
.admin__fieldset {
54
- > .admin__field.admin__field-wide.admin__field-page-builder[class]:not(.admin__field-option) {
54
+ > .admin__field.admin__field-wide.admin__field-page-builder[class]:not(.admin__field-option),
55
+ .admin__field.admin__field-wide.admin__fieldset-page-builder .admin__field-page-builder {
55
56
> .admin__field-label {
56
57
margin-bottom: @indent__xs;
57
58
margin-top: @indent__xs;
65
66
}
66
67
}
67
68
68
- /* Product */
69
+ // Product page
69
70
> fieldset.admin__field-page-builder {
70
71
.admin__field-label {
71
72
text-align: left;
72
73
73
74
span[data-config-scope] {
74
75
&:before {
75
- right: unset;
76
+ right: auto;
77
+ }
78
+ }
79
+ }
80
+ }
81
+
82
+ .admin__field.admin__field-wide.admin__fieldset-page-builder {
83
+ > .admin__field-control {
84
+ width: calc(~'100% - 30px');
85
+
86
+ .admin__field.admin__field-wide.admin__field-page-builder {
87
+ position: relative;
88
+
89
+ .admin__field-control {
90
+ clear: left;
91
+ }
92
+ }
93
+ }
94
+ }
95
+
96
+ .admin__field.admin__field-wide.admin__fieldset-page-builder .admin__field-page-builder {
97
+ > .admin__field-label {
98
+ display: block;
99
+ line-height: @field-label__font-size;
100
+ margin-left: 0;
101
+ position: relative;
102
+ text-align: left;
103
+ width: auto;
104
+
105
+ span[data-config-scope] {
106
+ &:before {
107
+ right: auto;
76
108
}
77
109
}
78
110
}
Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ define([
180
180
if (event.which === 13 || event.keyCode === 13) {
181
181
this.pageBuilderEditButtonClick(context, event);
182
182
}
183
+
183
184
return true;
184
185
},
185
186
You can’t perform that action at this time.
0 commit comments