0.0.06 form poster

This commit is contained in:
SBD
2025-01-10 21:18:43 +03:00
parent 0ac84ed6e0
commit 0ad3f2eb9a
4 changed files with 23 additions and 4 deletions

View File

@@ -19,6 +19,10 @@
--textarea-height: unset;
--textarea-resize: none;
--error-margin: 5px 0 0 0;
--error-font-size: 12px;
--error-color: #FF0000;
box-sizing: border-box;
&.line{
@@ -95,6 +99,12 @@
.checkbox_label{
font-size: var(--checkbox-label-font-size);
}
.error_container{
margin: var(--error-margin);
font-size: var(--error-font-size);
color: var(--error-color);
}
}
.form_line{

View File

@@ -10,7 +10,13 @@ function makePosterOrder(form) {
data_type: 'formData',
success: function (res) {
}, error: function (res) {
if (res.JSON) return;
let $parent = form.closest('.b_make_poster_order')
let $title = $parent.querySelector(".make_poster_order_title")
}
})