=== GravityWP - CSS Selector === Contributors: gravitywp Donate link: http://gravitywp.com/support/ Tags: gravity forms, css ready classes, form, forms, gravity form Requires at least: 3.0.1 Tested up to: 5.2 Stable tag: 1.0.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Easily select CSS Ready Classes for your fields within Gravity Forms == Description == > This plugin is an add-on for the amazing Gravity Forms Plugin. Special thanks to [Brad Vincent](https://profiles.wordpress.org/bradvin/) and [Bryan Willis](https://github.com/bryanwillis) for developing the first and revised version of this plugin. Gravity Forms has CSS Ready Classes to style your form fields. Using these classes, you can easily create more advanced layouts for the fields in your forms. Excellent idea, however, the problem is you always need to remember what the exact class name is. Now with this CSS Ready Classes selector, you don’t need to remember. Simply click on a button to launch the pop-up and choose the class you want to add. = Features = * Convenient button added under the advanced tab next to the CSS Class field * Clean and simple pop-up that lists all the CSS Ready Classes * Add more than one CSS Ready Class * Double-click a CSS Ready Class to add it and auto-close the popup * Also 4 columns supported == Installation == 1. Upload the plugin folder to your `/wp-content/plugins/` folder 2. Activate the plugin through the 'Plugins' menu in WordPress 3. Make sure you also have Gravity Forms activated. == Screenshots == 1. The button that gets added in the advanced tab 2. The pop-up modal that is displayed 3. Add custom css == Changelog == = 1.0.1 = * Updated url to official Gravity Forms CSS Ready Classes documentation (https://docs.gravityforms.com/css-ready-classes/) = 1.0 = * Add gwp_css_selector_add_custom_css filter to add custom css * Updated translation files = 0.2.2 = * Adjusted the Gravity PDF pagebreak CSS * Added gf_invisible CSS class * Combined list columns and list heights to Radio Buttons & Checkboxes * Changed links to documentation = 0.2.1 = * Added pagebreak support for Gravity PDF * Updated translation file * Updated Dutch translation = 0.2 = * Added CSS classes for Gravity PDF (exclude) and Gravity Wiz (Copy Cat) * Updated layout (documentation available on click) = 0.1 = * Initial Release * Added localisation == Frequently Asked Questions == = Does this plugin rely on anything? = Yes, you need to install the [Gravity Forms Plugin](http://www.gravityforms.com/) for this plugin to work. And it needs to be at least v1.5. = How to add custom CSS buttons? = You can add your own CSS to the CSS Selector easily in your functions.php file. Just add the following example code there. It adds quick buttons and an accordion on top of the modal. That way you can put easily your own CSS in the layout you want. `// Add custom css: quick buttons and accordion at the top of the GravityWP - CSS Selector modal function my_custom_gwp_css_selector_add_css() { $html .= "
  • Custom CSS
    Custom css 2nd custom css
  • "; return $html; } add_filter( 'gwp_css_selector_add_custom_css', 'my_custom_gwp_css_selector_add_css' );`