Skip to content
This repository was archived by the owner on May 20, 2019. It is now read-only.

Commit b01a948

Browse files
Fixed syntax for before-after operators in less files.
1 parent f4912a2 commit b01a948

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

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
@@ -94,7 +94,7 @@
9494
padding-top: @indent__xl;
9595
position: relative;
9696

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

215-
&::before {
215+
&:before {
216216
left: 0;
217217
top: 50%;
218218
}

0 commit comments

Comments
 (0)