Changeset 3416801
- Timestamp:
- 12/10/2025 09:24:22 PM (4 months ago)
- Location:
- pixel-clusters/trunk
- Files:
-
- 4 edited
-
content/pixel-html.php (modified) (1 diff)
-
css/admin.css (modified) (2 diffs)
-
pixel-clusters.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pixel-clusters/trunk/content/pixel-html.php
r3416780 r3416801 25 25 <p><?php esc_html_e( 'Create beautiful post clusters with shortcodes', 'pixel-cluster' ); ?></p> 26 26 </div> 27 <div class="pc-header-icon"> 28 <span class="dashicons dashicons-grid-view"></span> 27 <div class="pc-header-actions"> 28 <div class="pc-donate-box"> 29 <span class="pc-donate-label"><?php esc_html_e( 'Support this plugin', 'pixel-cluster' ); ?></span> 30 <form action="https://www.paypal.com/donate" method="post" target="_blank" class="pc-donate-form"> 31 <input type="hidden" name="hosted_button_id" value="NY5NTM46C5PS4" /> 32 <button type="submit" class="pc-donate-btn" title="<?php esc_attr_e( 'Donate with PayPal', 'pixel-cluster' ); ?>"> 33 <span class="dashicons dashicons-heart"></span> 34 <?php esc_html_e( 'Donate', 'pixel-cluster' ); ?> 35 </button> 36 </form> 37 </div> 38 <div class="pc-header-icon"> 39 <span class="dashicons dashicons-grid-view"></span> 40 </div> 29 41 </div> 30 42 </header> -
pixel-clusters/trunk/css/admin.css
r3416780 r3416801 75 75 } 76 76 77 /* Header Actions */ 78 .pc-header-actions { 79 display: flex; 80 align-items: center; 81 gap: 20px; 82 } 83 84 /* Donate Box */ 85 .pc-donate-box { 86 display: flex; 87 flex-direction: column; 88 align-items: center; 89 gap: 8px; 90 } 91 92 .pc-donate-label { 93 font-size: 11px; 94 opacity: 0.9; 95 text-transform: uppercase; 96 letter-spacing: 0.5px; 97 } 98 99 .pc-donate-form { 100 margin: 0; 101 padding: 0; 102 } 103 104 .pc-donate-btn { 105 display: inline-flex; 106 align-items: center; 107 gap: 6px; 108 background: linear-gradient(135deg, #ffc439 0%, #ffb700 100%); 109 color: #003087; 110 border: none; 111 padding: 8px 16px; 112 border-radius: 20px; 113 font-size: 13px; 114 font-weight: 600; 115 cursor: pointer; 116 transition: var(--pc-transition); 117 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); 118 } 119 120 .pc-donate-btn:hover { 121 background: linear-gradient(135deg, #ffb700 0%, #ffa500 100%); 122 transform: translateY(-2px); 123 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 124 } 125 126 .pc-donate-btn:active { 127 transform: translateY(0); 128 } 129 130 .pc-donate-btn .dashicons { 131 font-size: 16px; 132 width: 16px; 133 height: 16px; 134 color: #d63638; 135 } 136 77 137 /* Card Layout */ 78 138 .pc-card { … … 545 605 } 546 606 607 .pc-header-actions { 608 flex-direction: column; 609 margin-top: 16px; 610 } 611 547 612 .pc-header-icon { 613 display: none; 614 } 615 616 .pc-donate-label { 548 617 display: none; 549 618 } -
pixel-clusters/trunk/pixel-clusters.php
r3416780 r3416801 10 10 * Plugin URI: https://mireunion.com/ 11 11 * Description: A modern plugin for creating beautiful clusters of posts, categories, tags, and WooCommerce products with responsive design. Includes Gutenberg block support. 12 * Version: 2.1. 012 * Version: 2.1.1 13 13 * Author: Mex Avila 14 14 * Author URI: https://datakun.com/ … … 41 41 42 42 // Plugin Constants 43 define( 'PIXEL_CLUSTER_VERSION', '2.1. 0' );43 define( 'PIXEL_CLUSTER_VERSION', '2.1.1' ); 44 44 define( 'PIXEL_CLUSTER_PATH', plugin_dir_path( __FILE__ ) ); 45 45 define( 'PIXEL_CLUSTER_URL', plugin_dir_url( __FILE__ ) ); -
pixel-clusters/trunk/readme.txt
r3416780 r3416801 138 138 139 139 == Changelog == 140 141 = 2.1.1 = 142 * Minor Change 140 143 141 144 = 2.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.