Skip to content

Commit 5406d0b

Browse files
committed
Fix missing trailing semicolon for theme blank
update
1 parent aaeadff commit 5406d0b

File tree

4 files changed

+11
-16
lines changed

4 files changed

+11
-16
lines changed

app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_payment-options.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
.lib-css(margin, 0 -(@checkout-payment-option-title-mobile__padding));
181181

182182
.payment-option-title {
183-
.lib-css(padding, @checkout-payment-option-title-mobile__padding)
183+
.lib-css(padding, @checkout-payment-option-title-mobile__padding);
184184
}
185185

186186
.payment-option-content {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@
164164

165165
.step-title {
166166
.lib-css(padding-left, @checkout-payment-method-title-mobile__padding);
167-
.lib-css(padding-right, @checkout-payment-method-title-mobile__padding)
167+
.lib-css(padding-right, @checkout-payment-method-title-mobile__padding);
168168
}
169169

170170
.payment-method-title {
171-
.lib-css(padding, @checkout-payment-method-title-mobile__padding)
171+
.lib-css(padding, @checkout-payment-method-title-mobile__padding);
172172
}
173173

174174
.payment-method-content {
@@ -209,7 +209,7 @@
209209
.fieldset {
210210
> .field {
211211
margin: 0 0 @indent__base;
212-
212+
213213
&.choice {
214214
&:before {
215215
padding: 0;

app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_email.less

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,6 @@
6767
}
6868
}
6969

70-
// Remove address and phone number link color on iOS
71-
.email-non-inline() {
72-
.address-details a {
73-
&:extend(.no-link a);
74-
}
75-
}
76-
7770
.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__xs) {
7871
// Stack columns
7972
.order-details {
@@ -131,7 +124,7 @@
131124
> tr {
132125
> th,
133126
> td {
134-
background-color: @color-gray95
127+
background-color: @color-gray95;
135128
}
136129
}
137130
}
@@ -244,4 +237,9 @@
244237
.email-items {
245238
.lib-table-overflow();
246239
}
240+
241+
// Remove address and phone number link color on iOS
242+
.address-details a {
243+
&:extend(.no-link a);
244+
}
247245
}

app/design/frontend/Magento/blank/web/css/source/_layout.less

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,11 @@
125125
}
126126

127127
.page-layout-2columns-left {
128-
.main {
129-
padding-left: @layout-column__additional-sidebar-offset
130-
}
131-
132128
.sidebar-additional {
133129
clear: left;
134130
float: left;
135131
padding-left: 0;
132+
padding-right: @layout-column__additional-sidebar-offset;
136133
}
137134
}
138135

0 commit comments

Comments
 (0)