Changeset 3439787
- Timestamp:
- 01/14/2026 06:47:30 PM (3 months ago)
- Location:
- rank-authority
- Files:
-
- 6 added
- 2 edited
-
tags/1.0.8 (added)
-
tags/1.0.8/assets (added)
-
tags/1.0.8/assets/icon.svg (added)
-
tags/1.0.8/rank-authority.php (added)
-
tags/1.0.8/readme.txt (added)
-
tags/1.0.8/uninstall.php (added)
-
trunk/rank-authority.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rank-authority/trunk/rank-authority.php
r3439785 r3439787 4 4 * Plugin URI: https://rankauthority.com/plugins/rankauthority 5 5 * Description: Secure API connector to publish posts / overwrite posts from the RA Dashboard to WordPress. 6 * Version: 1.0. 76 * Version: 1.0.8 7 7 * Author: Rank Authority 8 8 * Author URI: https://rankauthority.com … … 83 83 <style type="text/css"> 84 84 #toplevel_page_rank-authority .wp-menu-image { 85 background-image: url('<?php echo esc_url($icon_url); ?>') !important; 86 background-size: 20px 20px; 87 background-repeat: no-repeat; 88 background-position: center; 85 background-image: none !important; 86 background-color: #9BA2A6; 87 mask-image: url('<?php echo esc_url($icon_url); ?>') !important; 88 mask-size: 20px 20px !important; 89 mask-repeat: no-repeat !important; 90 mask-position: center !important; 91 -webkit-mask-image: url('<?php echo esc_url($icon_url); ?>') !important; 92 -webkit-mask-size: 20px 20px !important; 93 -webkit-mask-repeat: no-repeat !important; 94 -webkit-mask-position: center !important; 89 95 width: 20px; 90 96 height: 20px; 91 /* Make SVG gray like Dashicons - default gray color */ 92 filter: grayscale(100%) brightness(0.5); 93 opacity: 0.9; 97 filter: none !important; 98 opacity: 1; 94 99 } 95 100 /* Hover state - light blue color */ … … 661 666 $website_id = get_option($this->option_website_id); 662 667 $token = get_option($this->option_token); 663 $plugin_version = get_file_data(__FILE__, array('Version' => 'Version'), false)['Version'] ?? '1.0. 7';668 $plugin_version = get_file_data(__FILE__, array('Version' => 'Version'), false)['Version'] ?? '1.0.8'; 664 669 665 670 ?> -
rank-authority/trunk/readme.txt
r3439785 r3439787 8 8 Tested up to: 6.9 9 9 Requires PHP: 7.4 10 Stable tag: 1.0. 710 Stable tag: 1.0.8 11 11 License: GPLv2 or later 12 12 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 139 139 == Changelog == 140 140 141 = 1.0.8 = 142 * Changed default admin menu icon color to #9BA2A6 (light gray-blue) 143 * Improved icon color consistency using CSS mask instead of filters 144 * Enhanced icon visibility with better color contrast 145 141 146 = 1.0.7 = 142 147 * Improved Reset button form styling with CSS classes instead of inline styles … … 191 196 == Upgrade Notice == 192 197 198 = 1.0.8 = 199 Updated default admin menu icon color to #9BA2A6 for better visual consistency. 200 193 201 = 1.0.7 = 194 202 Improved button styling and card layout. Reset button form now uses CSS classes for better maintainability.
Note: See TracChangeset
for help on using the changeset viewer.