| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- .contact-form .clear-form {
- clear: both;
- }
- .contact-form input::placeholder {
- transition: opacity 0.3s ease-out;
- }
- .contact-form input:hover::placeholder {
- opacity: 0.5;
- }
- .contact-form input:focus::placeholder {
- opacity: 0.3;
- }
- .contact-form input[type='text'],
- .contact-form input[type='email'],
- .contact-form input[type='tel'],
- .contact-form input[type='url'] {
- box-sizing: border-box;
- margin-bottom: 1.5em;
- width: 100%;
- padding: 14px 7px;
- }
- .contact-form select {
- margin-bottom: 1.5em;
- padding: 14px 7px;
- min-width: 150px;
- }
- .contact-form textarea {
- box-sizing: border-box;
- float: none;
- height: 200px;
- margin-bottom: 1.5em;
- width: 100%;
- padding: 7px;
- font: inherit;
- }
- .contact-form input[type='radio'],
- .contact-form input[type='checkbox'] {
- float: none;
- margin: 0 0.75rem 0 5px;
- }
- .contact-form input[type='checkbox'] {
- top: 0;
- margin-left: 0;
- }
- .contact-form label {
- margin-bottom: 0.25em;
- float: none;
- font-weight: bold;
- display: block;
- }
- .contact-form label.consent-implicit input {
- display: none;
- }
- .contact-form label.checkbox,
- .contact-form label.checkbox-multiple,
- .contact-form label.radio {
- margin-bottom: 0.25em;
- float: none;
- font-weight: normal;
- display: inline-flex;
- align-items: center;
- }
- .contact-form .grunion-field-checkbox-wrap,
- .contact-form .grunion-field-consent-wrap,
- .contact-form .grunion-field-checkbox-multiple-wrap,
- .contact-form .grunion-field-radio-wrap {
- margin-bottom: 1em;
- }
- .contact-form label span {
- font-size: 85%;
- margin-left: 0.25em;
- font-weight: normal;
- }
- .contact-form-submission {
- margin-bottom: 4em;
- padding: 1.5em 1em;
- }
- .contact-form-submission p {
- margin: 0 auto;
- word-wrap: break-word;
- }
- .form-errors .form-error-message {
- color: red;
- }
- .textwidget .contact-form input[type='text'],
- .textwidget .contact-form input[type='email'],
- .textwidget .contact-form input[type='tel'],
- .textwidget .contact-form input[type='url'],
- .textwidget .contact-form textarea,
- .wp-block-column .contact-form input[type='text'],
- .wp-block-column .contact-form input[type='email'],
- .wp-block-column .contact-form input[type='tel'],
- .wp-block-column .contact-form input[type='url'],
- .wp-block-column .contact-form textarea {
- width: 100%;
- }
- #jetpack-check-feedback-spam {
- margin: 1px 8px 0px 0px;
- }
- .jetpack-check-feedback-spam-spinner {
- display: inline-block;
- margin-top: 7px;
- }
- .wp-block-jetpack-contact-form {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- flex-direction: row;
- }
- .wp-block-jetpack-contact-form .grunion-field-wrap,
- .wp-block-jetpack-button {
- flex: 0 0 100%;
- }
- .wp-block-jetpack-button button {
- padding: 20px 30px;
- border: inherit;
- font: inherit;
- }
- .wp-block-jetpack-button.alignright button {
- float: right;
- }
- .wp-block-jetpack-contact-form .grunion-field-wrap {
- /* Use transparent border to maintain consistent
- * space between elements with flexbox */
- border-right: 15px solid transparent;
- }
- .wp-block-jetpack-contact-form .grunion-field-width-25-wrap {
- flex: 0 0 25%;
- }
- .wp-block-jetpack-contact-form .grunion-field-width-50-wrap {
- flex: 0 0 50%;
- }
- .wp-block-jetpack-contact-form .grunion-field-width-75-wrap {
- flex: 0 0 75%;
- }
- .grunion-field-checkbox-wrap,
- .grunion-field-consent-wrap {
- align-self: center;
- }
- @media only screen and ( min-width: 600px ) {
- .contact-form input[type='text'],
- .contact-form input[type='email'],
- .contact-form input[type='tel'],
- .contact-form input[type='url'] {
- width: 50%;
- }
- /****
- * Older users keep the 50% width to avoid breaking
- * designs, but newer users using the contact
- * form block get 100% width.
- */
- .wp-block-jetpack-contact-form input[type='text'],
- .wp-block-jetpack-contact-form input[type='email'],
- .wp-block-jetpack-contact-form input[type='tel'],
- .wp-block-jetpack-contact-form input[type='url'] {
- width: 100%;
- }
- }
- /** For the "Empty Spam" button on /wp-admin/edit.php?post_status=spam&post_type=feedback **/
- .jetpack-empty-spam-container {
- display: inline-block;
- }
- .jetpack-empty-spam {
- display: inline-block;
- }
- .jetpack-empty-spam-spinner {
- display: inline-block;
- margin-top: 7px;
- }
- /* Make sure the set height of the Spacer block nested inside the Contact Form block is respected */
- .wp-block-jetpack-contact-form .wp-block-spacer {
- width: 100%;
- }
|