Add support for making new product on-the-fly during mobile ordering

let's face it, that will be necessary sometimes.  this feature still needs some
work before can be called complete though...
This commit is contained in:
Lance Edgar 2018-03-06 19:29:15 -06:00
parent 6ec0ddb94e
commit 652f51d484
7 changed files with 83 additions and 10 deletions

View file

@ -52,7 +52,7 @@ div.fieldset {
margin: 15px;
}
.field-wrapper.error {
.field-wrapper.with-error {
background-color: #ddcccc;
border: 2px solid #dd6666;
padding-bottom: 1em;
@ -71,7 +71,7 @@ div.fieldset {
white-space: nowrap;
}
.field-wrapper.error label {
.field-wrapper.with-error label {
padding-left: 1em;
}

View file

@ -21,7 +21,8 @@
}
/* error flash messages */
.error {
.error,
.error-messages {
color: red;
margin-bottom: 1em;
}
@ -35,11 +36,21 @@
display: none;
}
.field-wrapper.with-error {
background-color: #ddcccc;
border: 2px solid #dd6666;
margin-bottom: 1em;
}
.field-wrapper label {
font-weight: bold;
margin-top: 1em;
}
.field-error .error-msg {
color: Red;
}
/* make sure space comes between simple filter and "grid" list */
.simple-filter {
margin-bottom: 1.5em;