Skip to content

Commit 40134a6

Browse files
committed
Fix missing escape less calc
up update up
1 parent c0f3dfb commit 40134a6

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_payment-shipping.less

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99

1010
.admin__payment-method-wrapper {
1111
margin: 0;
12-
width: calc(50% - @indent__l);
12+
width: ~'calc(50% - @{indent__l})';
13+
1314
.admin__field {
1415
margin-left: 0;
1516
&:first-child {
1617
margin-top: 1.5rem;
1718
}
1819
}
20+
1921
.admin__payment-methods {
2022
margin: 0;
2123
}
@@ -62,6 +64,7 @@
6264
position: absolute;
6365
right: 0;
6466
top: 0;
67+
6568
span {
6669
background-color: @color-white;
6770
display: block;
@@ -71,6 +74,7 @@
7174
position: absolute;
7275
top: 43px;
7376
}
77+
7478
.order-shipping-address & {
7579
span {
7680
top: 0;
@@ -102,6 +106,7 @@
102106
+ .order-payment-currency {
103107
margin-top: @indent__s;
104108
}
109+
105110
.admin__table-secondary {
106111
margin-top: @indent__s;
107112
&:extend(.abs-admin__table-secondary-edit-order all);

app/design/adminhtml/Magento/backend/web/css/source/forms/_fields.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
.admin__field-control {
164164
padding-top: 7px;
165165
}
166+
166167
.admin__field-option {
167168
padding-top: 0;
168169
}
@@ -361,6 +362,7 @@
361362
cursor: inherit;
362363
opacity: 1;
363364
outline: inherit;
365+
364366
.admin__action-multiselect-wrap {
365367
.admin__action-multiselect {
366368
.__form-control-pattern__disabled();
@@ -433,7 +435,7 @@
433435
font-size: 1.7rem;
434436
font-weight: @font-weight__bold;
435437
padding: 1.7rem 0;
436-
width: calc(100% - @indent__l);
438+
width: ~'calc(100% - @{indent__l})';
437439
}
438440

439441
.admin__field-option {
@@ -704,6 +706,7 @@
704706
width: 100%;
705707
}
706708
}
709+
707710
& > .admin__field-label {
708711
text-align: left;
709712
}
@@ -819,4 +822,3 @@
819822
overflow: hidden;
820823
}
821824
}
822-

app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_module.less

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@
210210

211211
.items-qty {
212212
&:extend(.abs-reset-list all);
213+
213214
.item {
214215
white-space: nowrap;
215216
}
@@ -347,13 +348,15 @@
347348

348349
.product-item-name {
349350
float: left;
350-
width: calc(100% - 20px);
351+
width: calc(~'100% - 20px');
351352
}
353+
352354
.product-item::after {
353355
clear: both;
354356
content: '';
355357
display: table;
356358
}
359+
357360
.product-item {
358361
.label {
359362
&:extend(.abs-visually-hidden all);
@@ -491,6 +494,7 @@
491494

492495
.data.table .col.options {
493496
padding: 0 10px 15px;
497+
494498
&:before {
495499
display: none;
496500
}

0 commit comments

Comments
 (0)