Skip to content

Commit 720a10f

Browse files
author
Stanislav Idolov
authored
ENGCOM-2016: Fixed syntax for before-after operators in less files. #16181
2 parents 596a9d2 + 6bd60b6 commit 720a10f

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

app/code/Magento/Catalog/etc/adminhtml/menu.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<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"/>
1313
<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"/>
1414
<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"/>
15-
1615
<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"/>
1716
</menu>
1817
</config>

app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_checkbox-radio.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
.form-el-checkbox {
8888
&:checked {
8989
+ .form-label {
90-
&::before {
90+
&:before {
9191
content: @checkbox-icon__content;
9292
font-family: @icons__font-family;
9393
}

app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_data-grid.less

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
vertical-align: middle;
2323
width: @component-indicator__size;
2424

25-
&::before,
26-
&::after {
25+
&:before,
26+
&:after {
2727
background: @color-white;
2828
display: block;
2929
opacity: 0;
@@ -32,7 +32,7 @@
3232
visibility: hidden;
3333
}
3434

35-
&::before {
35+
&:before {
3636
border: 1px solid @color-gray68;
3737
border-radius: 1px;
3838
box-shadow: 0 0 2px rgba(0,0,0,.4);
@@ -43,7 +43,7 @@
4343
padding: 4px 5px;
4444
}
4545

46-
&::after {
46+
&:after {
4747
border-color: darken(@color-gray68, 8);
4848
border-style: solid;
4949
border-width: 1px 0 0 1px;
@@ -56,8 +56,8 @@
5656
}
5757

5858
&:hover {
59-
&::before,
60-
&::after {
59+
&:before,
60+
&:after {
6161
opacity: 1;
6262
transition: opacity .2s linear;
6363
visibility: visible;

app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_authentication.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
padding-top: @indent__xl;
9696
position: relative;
9797

98-
&::before {
98+
&:before {
9999
.lib-css(height, @block-auth__or-label__size);
100100
.lib-css(line-height, @block-auth__or-label__size - 2px);
101101
.lib-css(margin, -(@block-auth__or-label__size/2 + 1px) 0 0 -(@block-auth__or-label__size / 2));
@@ -213,7 +213,7 @@
213213
margin: 0;
214214
padding: @indent__s 0 0 @indent__xl;
215215

216-
&::before {
216+
&:before {
217217
left: 0;
218218
top: 50%;
219219
}

0 commit comments

Comments
 (0)