accommodating contact form
This commit is contained in:
parent
b381f0fa43
commit
9f39115762
3 changed files with 23 additions and 2 deletions
|
@ -219,12 +219,31 @@ figure.wp-caption {
|
|||
|
||||
|
||||
/* forms and search */
|
||||
label {
|
||||
label,
|
||||
div.wpforms-container-full .wpforms-form .wpforms-field-label {
|
||||
@extend .form-label;
|
||||
}
|
||||
input {
|
||||
div.wpforms-container-full .wpforms-form .wpforms-required-label {
|
||||
color: $red !important;
|
||||
}
|
||||
input, textarea,
|
||||
div.wpforms-container-full .wpforms-form input[type="text"],
|
||||
div.wpforms-container-full .wpforms-form input[type="email"],
|
||||
div.wpforms-container-full .wpforms-form textarea {
|
||||
@extend .form-control;
|
||||
}
|
||||
.wpforms-submit-container {
|
||||
text-align: right;
|
||||
}
|
||||
div.wpforms-container-full .wpforms-form button[type="submit"] {
|
||||
@extend .btn;
|
||||
@extend .btn-primary;
|
||||
font-family: $font-family-handbrush;
|
||||
}
|
||||
div.wpforms-container-full div.wpforms-confirmation-container-full {
|
||||
@extend .alert;
|
||||
@extend .alert-success;
|
||||
}
|
||||
select {
|
||||
@extend .form-select;
|
||||
}
|
||||
|
|
|
@ -173,6 +173,7 @@ function getCSSWhitelistPatterns() {
|
|||
/^tag(-.*)?$/,
|
||||
/^menu(-.*)?$/,
|
||||
/^more(-.*)?$/,
|
||||
/^wpforms(-.*)?$/,
|
||||
/^tags(-.*)?$/,
|
||||
/^tax-(.*)?$/,
|
||||
/^term-(.*)?$/,
|
||||
|
@ -185,6 +186,7 @@ function getCSSWhitelistPatterns() {
|
|||
/^tsml$/,
|
||||
/^label$/,
|
||||
/^input$/,
|
||||
/^textarea$/,
|
||||
/^select$/,
|
||||
/^img$/,
|
||||
/^ul$/,
|
||||
|
|
Loading…
Reference in a new issue