Skip to content

Commit f1b43ab

Browse files
author
Nikita Chubukov
committed
MAGETWO-58226: Calendar Custom Options are displayed broken on Storefront
- Preventing error messages below each select field for Customizable Options
1 parent 10f900e commit f1b43ab

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,16 @@
101101
.lib-form-validation-note();
102102
}
103103

104+
.product-options-wrapper {
105+
.date {
106+
&.required {
107+
div[for*='options'] {
108+
display: none !important;
109+
}
110+
}
111+
}
112+
}
113+
104114
.field .tooltip {
105115
.lib-tooltip(right);
106116
.tooltip-content {

app/design/frontend/Magento/luma/web/css/source/_forms.less

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,16 @@
113113
.lib-form-validation-note();
114114
}
115115

116+
.product-options-wrapper {
117+
.required {
118+
div[for*='options'] {
119+
&.mage-error {
120+
display: none !important;
121+
}
122+
}
123+
}
124+
}
125+
116126
// TEMP
117127

118128
.field .tooltip {

0 commit comments

Comments
 (0)