Changeset 3480321
- Timestamp:
- 03/11/2026 03:34:23 PM (3 weeks ago)
- Location:
- effortless-carousel-with-gallery/trunk
- Files:
-
- 3 edited
-
assets/css/carousel.css (modified) (4 diffs)
-
effortless-carousel-with-gallery.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
effortless-carousel-with-gallery/trunk/assets/css/carousel.css
r3480298 r3480321 13 13 padding: 0; 14 14 display: block; 15 box-sizing: border-box; 16 gap: 0 !important; /* override WordPress default gallery gap */ 15 17 } 16 18 … … 21 23 transition: transform 0.5s ease; 22 24 will-change: transform; 25 gap: 0; /* gaps handled by per-slide padding so percentage-based translateX stays accurate */ 23 26 } 24 27 … … 27 30 flex: 0 0 calc(100% / var(--slides-per-view, 1)); 28 31 width: calc(100% / var(--slides-per-view, 1)); 29 padding: 0 ;32 padding: 0 var(--elcwg-card-gap, 8px); 30 33 box-sizing: border-box; 31 34 display: flex; … … 171 174 --slides-per-view: 1; 172 175 } 173 174 .elcwg-carousel-inner .wp-block-image {175 flex: 0 0 100%;176 width: 100%;177 }178 176 } 179 177 -
effortless-carousel-with-gallery/trunk/effortless-carousel-with-gallery.php
r3480298 r3480321 3 3 * Plugin Name: Effortless Carousel with Gallery 4 4 * Description: Adds responsive carousel with animation functionality to WordPress galleries. 5 * Version: 1.1. 25 * Version: 1.1.4 6 6 * Requires at least: 5.5 7 7 * Requires PHP: 7.2 … … 21 21 22 22 /** Plugin version constant. */ 23 define( 'ELCWG_VERSION', '1.1. 2' );23 define( 'ELCWG_VERSION', '1.1.4' ); 24 24 25 25 /** -
effortless-carousel-with-gallery/trunk/readme.txt
r3480298 r3480321 4 4 Requires at least: 5.5 5 5 Tested up to: 6.9 6 Stable tag: 1.1. 26 Stable tag: 1.1.4 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 66 66 == Changelog == 67 67 68 = 1.1.4 = 69 * Fixed: Carousel now fills its container div exactly, with no extra side padding — the container's own spacing is respected. 70 71 = 1.1.3 = 72 * Fixed: Carousel slides now fit within screen width without truncation, with consistent padding between cards and screen edges. 73 * Fixed: Overrides WordPress default gallery gap to prevent slides from being pushed off-screen. 74 * Improved: Mobile view (< 480px) shows a single full-width card with proper padding. 75 68 76 = 1.1.2 = 69 77 * Added: `elcwg-no-arrows` class to hide navigation arrows.
Note: See TracChangeset
for help on using the changeset viewer.