Changeset 2709813
- Timestamp:
- 04/14/2022 02:29:56 PM (4 years ago)
- Location:
- pixi-image-gallery/trunk
- Files:
-
- 6 edited
-
includes/assets/css/common.css (modified) (1 diff)
-
includes/widgets/pixi-gallery-custom-filter.php (modified) (1 diff)
-
includes/widgets/pixi-gallery-filter.php (modified) (2 diffs)
-
includes/widgets/pixi-gallery.php (modified) (3 diffs)
-
pixi-image-gallery-lite.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pixi-image-gallery/trunk/includes/assets/css/common.css
r2707141 r2709813 172 172 transition: all .4s ease 0s; 173 173 } 174 175 176 177 /* Medium devices (tablets, 768px and up) */ 178 @media (max-width: 768px) { 179 .pixi-gallery-wrapper .gallery-columns-3 .pixi-inner-item { 180 max-width: 50%; 181 } 182 183 .pixi-gallery-wrapper .gallery-columns-4 .pixi-inner-item { 184 max-width: 50%; 185 } 186 187 .pixi-gallery-wrapper .gallery-columns-5 .pixi-inner-item { 188 max-width: 50%; 189 } 190 191 .pixi-gallery-wrapper .gallery-columns-6 .pixi-inner-item { 192 max-width: 50%; 193 } 194 } 195 196 197 /* Small devices (landscape phones, 576px and up) */ 198 @media (max-width: 576px) { 199 .pixi-gallery-wrapper .gallery-columns-3 .pixi-inner-item { 200 max-width: 100%; 201 } 202 203 .pixi-gallery-wrapper .gallery-columns-4 .pixi-inner-item { 204 max-width: 100%; 205 } 206 207 .pixi-gallery-wrapper .gallery-columns-5 .pixi-inner-item { 208 max-width: 100%; 209 } 210 211 .pixi-gallery-wrapper .gallery-columns-6 .pixi-inner-item { 212 max-width: 100%; 213 } 214 } -
pixi-image-gallery/trunk/includes/widgets/pixi-gallery-custom-filter.php
r2699613 r2709813 41 41 */ 42 42 public function get_icon() { 43 return 'eicon- code';43 return 'eicon-inner-section'; 44 44 } 45 45 -
pixi-image-gallery/trunk/includes/widgets/pixi-gallery-filter.php
r2707137 r2709813 41 41 */ 42 42 public function get_icon() { 43 return 'eicon- code';43 return 'eicon-gallery-masonry'; 44 44 } 45 45 … … 935 935 ?> 936 936 937 <div class="col-xl-<?php echo esc_attr($settings['column_option']); ?> col-lg-<?php echo esc_attr($settings['column_option']); ?> col-md- 6grid-item <?php echo esc_attr($new_str_name,'pixi-image-gallery'); ?> elementor-repeater-item-<?php echo esc_attr( $gallery_item['_id'] )?>">937 <div class="col-xl-<?php echo esc_attr($settings['column_option']); ?> col-lg-<?php echo esc_attr($settings['column_option']); ?> col-md-<?php echo esc_attr($settings['column_option']); ?> grid-item <?php echo esc_attr($new_str_name,'pixi-image-gallery'); ?> elementor-repeater-item-<?php echo esc_attr( $gallery_item['_id'] )?>"> 938 938 939 939 <div class="pixi-inner-item <?php echo esc_attr($layout_class,'pixi-image-gallery');?>"> -
pixi-image-gallery/trunk/includes/widgets/pixi-gallery.php
r2697482 r2709813 41 41 */ 42 42 public function get_icon() { 43 return 'eicon- code';43 return 'eicon-gallery-grid'; 44 44 } 45 45 … … 166 166 '{{WRAPPER}} .pixi-gallery-wrapper .gallery-inner ' => 'margin-bottom: -{{SIZE}}{{UNIT}}; margin-right: -{{SIZE}}{{UNIT}};', 167 167 '{{WRAPPER}} .pixi-gallery-wrapper .pixi-inner-item' => 'padding-right: {{SIZE}}{{UNIT}}; padding-bottom: {{SIZE}}{{UNIT}};', 168 ], 169 ] 170 ); 171 172 $this->add_responsive_control( 173 'column_display', 174 [ 175 'label' => esc_html__( 'Display', 'pixi-image-gallery' ), 176 'type' => \Elementor\Controls_Manager::SELECT, 177 'default' => 'flex', 178 'options' => [ 179 'default' => esc_html__( 'None', 'pixi-image-gallery' ), 180 'block' => esc_html__( 'Block', 'pixi-image-gallery' ), 181 'flex' => esc_html__( 'Flex', 'pixi-image-gallery' ), 182 ], 183 'selectors' => [ 184 '{{WRAPPER}} .pixi-gallery-wrapper .gallery-inner ' => 'display: {{UNIT}};', 185 ], 186 ] 187 ); 188 189 $this->add_control( 190 'column_align', 191 [ 192 'label' => esc_html__( 'Vertical Align', 'pixi-image-gallery' ), 193 'type' => \Elementor\Controls_Manager::SELECT, 194 'default' => 'center', 195 'options' => [ 196 'none' => esc_html__( 'None', 'pixi-image-gallery' ), 197 'start' => esc_html__( 'Top', 'pixi-image-gallery' ), 198 'center' => esc_html__( 'Center', 'pixi-image-gallery' ), 199 'end' => esc_html__( 'Bottom', 'pixi-image-gallery' ), 200 ], 201 'selectors' => [ 202 '{{WRAPPER}} .pixi-gallery-wrapper .gallery-inner ' => 'align-items: {{UNIT}};', 168 203 ], 169 204 ] … … 276 311 ); 277 312 313 $this->add_control( 314 'img_width', 315 [ 316 'label' => esc_html__( 'Width', 'pixi-image-gallery' ), 317 'type' => \Elementor\Controls_Manager::SLIDER, 318 'size_units' => [ 'px', '%' ], 319 'range' => [ 320 'px' => [ 321 'min' => 0, 322 'max' => 1000, 323 'step' => 5, 324 ], 325 '%' => [ 326 'min' => 0, 327 'max' => 100, 328 ], 329 ], 330 'default' => [ 331 'unit' => '%', 332 'size' => 100, 333 ], 334 'selectors' => [ 335 '{{WRAPPER}} .pixi-inner-item img' => 'width: {{SIZE}}{{UNIT}};', 336 ], 337 ] 338 ); 278 339 279 340 $this->add_control( -
pixi-image-gallery/trunk/pixi-image-gallery-lite.php
r2707139 r2709813 4 4 * Description: Creative Elementor Image Gallery, Filterable Gallery,Creative layout 5 5 * Plugin URI: # 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: Esrat Sultana 8 8 * Author URI: https://esrat.net/ … … 28 28 * Rename this for your plugin and update it as you release new versions. 29 29 */ 30 define( 'PIXI_IMAGE_GALLERY_VERSION', '1.0. 3' );30 define( 'PIXI_IMAGE_GALLERY_VERSION', '1.0.4' ); 31 31 32 32 // INitiate plugins widgets -
pixi-image-gallery/trunk/readme.txt
r2707139 r2709813 5 5 Requires at least: 4.7 6 6 Tested up to: 5.9.2 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 Requires PHP: 7.2 9 9 License: GPLv2 or later … … 64 64 65 65 == Changelog == 66 67 = 1.0.4 = 68 * Widget Responsive issue fixed. For normal gallery 69 66 70 = 1.0.3 = 67 71 * Widget Style added
Note: See TracChangeset
for help on using the changeset viewer.