Plugin Directory

Changeset 3439787


Ignore:
Timestamp:
01/14/2026 06:47:30 PM (3 months ago)
Author:
rankauthority
Message:

Dashicon color

Location:
rank-authority
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • rank-authority/trunk/rank-authority.php

    r3439785 r3439787  
    44 * Plugin URI: https://rankauthority.com/plugins/rankauthority
    55 * Description: Secure API connector to publish posts / overwrite posts from the RA Dashboard to WordPress.
    6  * Version: 1.0.7
     6 * Version: 1.0.8
    77 * Author: Rank Authority
    88 * Author URI: https://rankauthority.com
     
    8383        <style type="text/css">
    8484            #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;
    8995                width: 20px;
    9096                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;
    9499            }
    95100            /* Hover state - light blue color */
     
    661666        $website_id = get_option($this->option_website_id);
    662667        $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';
    664669
    665670        ?>
  • rank-authority/trunk/readme.txt

    r3439785 r3439787  
    88Tested up to: 6.9
    99Requires PHP: 7.4
    10 Stable tag: 1.0.7
     10Stable tag: 1.0.8
    1111License: GPLv2 or later
    1212License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    139139== Changelog ==
    140140
     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
    141146= 1.0.7 =
    142147* Improved Reset button form styling with CSS classes instead of inline styles
     
    191196== Upgrade Notice ==
    192197
     198= 1.0.8 =
     199Updated default admin menu icon color to #9BA2A6 for better visual consistency.
     200
    193201= 1.0.7 =
    194202Improved 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.