Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | 17x | @import '../../ui/Base';
// Static Shipping Option
// ---------------------------------------------------
.shippingOption {
display: inline-block;
min-height: 0;
width: 100%;
}
.shippingOption-figure,
.shippingOption-desc,
.shippingOption-price {
display: inline-block;
font-size: fontSize("base");
}
.shippingOption-img {
padding-right: spacing("half");
}
.shippingOption-price {
font-weight: fontWeight("bold");
padding-left: spacing("half");
}
.shippingOption-transitTime {
display: block;
font-size: fontSize("base");
font-weight: fontWeight("normal");
}
// ShippingOption Label
// ---------------------------------------------------
.shippingOptionLabel {
.shippingOption {
align-items: center;
display: flex;
min-height: remCalc(35px);
}
.shippingOption-figure,
.shippingOption-desc,
.shippingOption-price {
font-size: inherit;
line-height: lineHeight("base");
vertical-align: middle;
}
.shippingOption-figure,
.shippingOption-desc {
flex: 1;
}
.shippingOption-figure {
max-width: remCalc(50px);
min-width: remCalc(50px);
}
.shippingOption-additionalDescription--container {
display: flex;
flex-direction: row;
line-height: 1.5rem;
.shippingOption-additionalDescription {
font-size: fontSize("smaller");
font-weight: fontWeight("normal");
text-overflow: ellipsis;
}
.shippingOption-additionalDescription--collapsed {
height: 2.2rem;
overflow: hidden;
white-space: nowrap;
width: 80%;
}
.shippingOption-additionalDescription--expanded {
height: auto;
overflow: visible;
white-space: initial;
width: 100%;
}
.shippingOption-readMore {
font-weight: normal;
}
}
}
|