Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/code/Magento/Catalog/etc/adminhtml/menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<add id="Magento_Catalog::catalog_categories" title="Categories" translate="title" module="Magento_Catalog" sortOrder="20" parent="Magento_Catalog::inventory" action="catalog/category/" resource="Magento_Catalog::categories"/>
<add id="Magento_Catalog::catalog_attributes_attributes" title="Product" translate="title" module="Magento_Catalog" sortOrder="30" parent="Magento_Backend::stores_attributes" action="catalog/product_attribute/" resource="Magento_Catalog::attributes_attributes"/>
<add id="Magento_Catalog::catalog_attributes_sets" title="Attribute Set" translate="title" module="Magento_Catalog" sortOrder="40" parent="Magento_Backend::stores_attributes" action="catalog/product_set/" resource="Magento_Catalog::sets"/>

<add id="Magento_Catalog::inventory" title="Inventory" translate="title" module="Magento_Catalog" sortOrder="10" parent="Magento_Catalog::catalog" dependsOnModule="Magento_Catalog" resource="Magento_Catalog::catalog"/>
</menu>
</config>
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
.form-el-checkbox {
&:checked {
+ .form-label {
&::before {
&:before {
content: @checkbox-icon__content;
font-family: @icons__font-family;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
vertical-align: middle;
width: @component-indicator__size;

&::before,
&::after {
&:before,
&:after {
background: @color-white;
display: block;
opacity: 0;
Expand All @@ -32,7 +32,7 @@
visibility: hidden;
}

&::before {
&:before {
border: 1px solid @color-gray68;
border-radius: 1px;
box-shadow: 0 0 2px rgba(0,0,0,.4);
Expand All @@ -43,7 +43,7 @@
padding: 4px 5px;
}

&::after {
&:after {
border-color: darken(@color-gray68, 8);
border-style: solid;
border-width: 1px 0 0 1px;
Expand All @@ -56,8 +56,8 @@
}

&:hover {
&::before,
&::after {
&:before,
&:after {
opacity: 1;
transition: opacity .2s linear;
visibility: visible;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
padding-top: @indent__xl;
position: relative;

&::before {
&:before {
.lib-css(height, @block-auth__or-label__size);
.lib-css(line-height, @block-auth__or-label__size - 2px);
.lib-css(margin, -(@block-auth__or-label__size/2 + 1px) 0 0 -(@block-auth__or-label__size / 2));
Expand Down Expand Up @@ -212,7 +212,7 @@
margin: 0;
padding: @indent__s 0 0 @indent__xl;

&::before {
&:before {
left: 0;
top: 50%;
}
Expand Down
2 changes: 1 addition & 1 deletion setup/src/Magento/Setup/Fixtures/OrdersFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Optionally generates inactive quotes for generated orders.
*
* Support the following format:
* <!-- Is is nescessary to enable quotes for orders -->
* <!-- It is necessary to enable quotes for orders -->
* <order_quotes_enable>{bool}</order_quotes_enable>
*
* <!-- Min number of simple products per each order -->
Expand Down