Changeset 2379430
- Timestamp:
- 09/11/2020 12:09:13 PM (6 years ago)
- Location:
- master-elements/trunk
- Files:
-
- 4 edited
-
addons/widgets/me-forms/me-forms.php (modified) (4 diffs)
-
changelog.txt (modified) (1 diff)
-
masterelements.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
master-elements/trunk/addons/widgets/me-forms/me-forms.php
r2377834 r2379430 252 252 ] 253 253 ); 254 // Height slider control255 $repeater->add_ control(254 //height slider control 255 $repeater->add_responsive_control( 256 256 'height', 257 257 [ … … 259 259 'type' => Controls_Manager::SLIDER, 260 260 'size_units' => ['px', '%'], 261 'devices' => ['desktop'], 261 262 'range' => [ 262 263 'px' => [ 263 'min' => 1,264 'max' => 500,265 'step' => 1,264 'min' => 0, 265 'max' => 1000, 266 'step' => 5, 266 267 ], 267 268 '%' => [ … … 271 272 ], 272 273 'default' => [ 273 'unit' => 'px', 274 'unit' => '%', 275 'size' => 100, 276 ], 277 'selectors' => [ 278 '{{WRAPPER}} {{CURRENT_ITEM}} input,{{WRAPPER}} {{CURRENT_ITEM}} textarea,{{WRAPPER}} {{CURRENT_ITEM}} select' => 'height: {{SIZE}}{{UNIT}};', 279 ], 280 ] 281 ); 282 //height Mobile slider control 283 $repeater->add_responsive_control( 284 'height_table', 285 [ 286 'label' => __('Height', 'masterelements'), 287 'type' => Controls_Manager::SLIDER, 288 'size_units' => ['px', '%'], 289 'devices' => ['tablet', 'mobile'], 290 'range' => [ 291 'px' => [ 292 'min' => 0, 293 'max' => 1000, 294 'step' => 5, 295 ], 296 '%' => [ 297 'min' => 0, 298 'max' => 100, 299 ], 300 ], 301 'default' => [ 302 'unit' => '%', 274 303 'size' => 50, 275 304 ], … … 279 308 ] 280 309 ); 310 281 311 //margin control for input 282 312 $repeater->add_responsive_control( -
master-elements/trunk/changelog.txt
r2378780 r2379430 1 11/09/2020 2 3 Version 5.3 4 5 [Fix] Form Responsive 6 1 7 10/09/2020 2 8 -
master-elements/trunk/masterelements.php
r2378780 r2379430 10 10 * Plugin URI: https://akdesigner.com/ 11 11 * Author: TeamDevBunch 12 * Version: 5. 212 * Version: 5.3 13 13 * Tested up to: 5.5 14 14 * Author URI: https://devbunch.com/ -
master-elements/trunk/readme.txt
r2378780 r2379430 64 64 65 65 == Changelog == 66 = 11/09/2020 Version 5.3 = 67 * [Fix] Form Responsive 68 66 69 = 10/09/2020 Version 5.2 = 67 70 * [Fix] bootstrap issue fix
Note: See TracChangeset
for help on using the changeset viewer.