This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Bootstrap 3 inline form *full width* for CF7 | |
* | |
* In the shortcode, you must use html_id="my-id" | |
* or html_class="my-class" to target a specific form | |
* | |
* Actual form sample: | |
* <label for="your-email">Email:</label> | |
* [email* your-email 0/ placeholder "enter your email"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Bootstrap 3 inline form for Contact Form 7 | |
* | |
* In the shortcode, you must use html_id="my-id" | |
* or html_class="my-class" to target a specific form | |
* | |
* Actual form sample: | |
* <label for="your-email">Email:</label> | |
* [email* your-email 0/ placeholder "enter your email"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Bootstrap 3 input group form for Contact Form 7 | |
* | |
* In the shortcode, you must use html_id="my-id" | |
* or html_class="my-class" to target a specific form | |
* | |
* Actual form sample: | |
* <label for="your-email">Email:</label> | |
* [email* your-email 0/ placeholder "enter your email"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Bootstrap 3 reset for CF7 | |
* | |
*/ | |
input, textarea { | |
&.wpcf7-form-control { | |
&:extend(.form-control all); | |
&.wpcf7-validates-as-required.wpcf7-not-valid { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Bootstrap 3 reset for Gravity Forms | |
* | |
*/ | |
.gform_wrapper { | |
ul { | |
&:extend(.list-unstyled all); | |
margin: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Bootstrap 3 input group form for Gravity Forms | |
* | |
* Use with a class assigned to the form | |
* or on .gform to affect all Gravity forms | |
* | |
* Example 1 (affects targeted form class only): .my-form-class { &:extend(.gravity_form_input_group all); } | |
* | |
* Example 2 (affects all Gravity Forms): .gform { &:extend(.gravity_form_input_group all); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Bootstrap 3 inline form for Gravity Forms | |
* | |
* Use with a class assigned to the form | |
* or on .gform to affect all Gravity forms | |
* | |
* Example 1 (affects targeted form class only): .my-form-class { &:extend(.gravity_form_inline all); } | |
* | |
* Example 2 (affects all Gravity Forms): .gform { &:extend(.gravity_form_inline all); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.full-width { | |
& .input-group-btn:last-child > .btn { | |
margin-left: 5px; | |
.border-left-radius(@border-radius-base); | |
} | |
& .form-control:first-child { | |
.border-right-radius(@border-radius-base); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install wordpress | |
wp core download && wp core config --dbname=wordpress_test_db --dbuser=root && wp core install --url=http://localhost/wp-cli/ --title=Wordpress --admin_user=admin --admin_password=admin [email protected] | |
# Install and activate Plugins | |
wp plugin install wordpress-importer --activate && wp plugin install contact-form-7 --activate | |
# Generate Posts | |
curl http://loripsum.wpwolf.com | wp post generate --post_content --count=10 | |
# Activate a theme |