Plugin Directory

Changeset 3345782


Ignore:
Timestamp:
08/17/2025 05:04:48 AM (7 months ago)
Author:
themepure
Message:

Multiselect Fixed

Location:
pure-metafields
Files:
1 deleted
3 edited
33 copied

Legend:

Unmodified
Added
Removed
  • pure-metafields/tags/1.4.4/README.txt

    r3345488 r3345782  
    22Contributors: themepure
    33Donate link: https://help.themepure.net/support/
    4 Tags: Metabox, Metafields, Custom Post Field, Post Metafield, Page Metabox
     4Tags: Metabox, Meta fields, Post Meta, Page Meta
    55Requires PHP: 8.0
    66Requires at least: 5.6
    77Tested up to: 6.8
    8 Stable tag: 1.4.3
     8Stable tag: 1.4.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    616616* Update: Repeater issue fixed
    617617
     618= 1.4.4  =
     619* Update: Multiselect Field Fixed
     620
    618621== Upgrade Notice ==
    619622= 1.0.0 =
  • pure-metafields/tags/1.4.4/metaboxes/css/puremeta-style.css

    r3345488 r3345782  
    982982    line-height: 1;
    983983}
     984[class*="tm-meta-column-"] .tm-field-row .tm-select-field[multiple] {
     985    min-height: 150px;
     986}
     987/* Change selected option background + text color */
     988[class*="tm-meta-column-"] .tm-field-row .tm-select-field[multiple] option:checked {
     989    background-color: #5F4AFE!important; /* WP blue */
     990    color: #fff;              /* White text */
     991}
    984992.tp-metabox-repeater .tp-metabox-repeater-row {
    985993    border: none;
  • pure-metafields/tags/1.4.4/pure-metafields.php

    r3345488 r3345782  
    1010 *
    1111 * @link              https://themepure.net
    12  * @since             1.4.3
     12 * @since             1.4.4
    1313 * @package           tpmeta
    1414 *
     
    1717 * Plugin URI:        https://themepure.net/plugins/puremetafields/files/pure-metafields.zip
    1818 * Description:       Plugin For Custom Metabox To Attach To Any Post Types.
    19  * Version:           1.4.3
     19 * Version:           1.4.4
    2020 * Author:            ThemePure
    2121 * Author URI:        https://themepure.net
     
    3131}
    3232
    33 define( 'TPMETA_VERSION', '1.4.3' );
     33define( 'TPMETA_VERSION', '1.4.4' );
    3434define( 'TPMETA_PATH', plugin_dir_path(__FILE__) );
    3535define( 'TPMETA_URL', plugin_dir_url(__FILE__) );
  • pure-metafields/trunk/README.txt

    r3345488 r3345782  
    22Contributors: themepure
    33Donate link: https://help.themepure.net/support/
    4 Tags: Metabox, Metafields, Custom Post Field, Post Metafield, Page Metabox
     4Tags: Metabox, Meta fields, Post Meta, Page Meta
    55Requires PHP: 8.0
    66Requires at least: 5.6
    77Tested up to: 6.8
    8 Stable tag: 1.4.3
     8Stable tag: 1.4.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    616616* Update: Repeater issue fixed
    617617
     618= 1.4.4  =
     619* Update: Multiselect Field Fixed
     620
    618621== Upgrade Notice ==
    619622= 1.0.0 =
  • pure-metafields/trunk/metaboxes/css/puremeta-style.css

    r3345488 r3345782  
    982982    line-height: 1;
    983983}
     984[class*="tm-meta-column-"] .tm-field-row .tm-select-field[multiple] {
     985    min-height: 150px;
     986}
     987/* Change selected option background + text color */
     988[class*="tm-meta-column-"] .tm-field-row .tm-select-field[multiple] option:checked {
     989    background-color: #5F4AFE!important; /* WP blue */
     990    color: #fff;              /* White text */
     991}
    984992.tp-metabox-repeater .tp-metabox-repeater-row {
    985993    border: none;
  • pure-metafields/trunk/pure-metafields.php

    r3345488 r3345782  
    1010 *
    1111 * @link              https://themepure.net
    12  * @since             1.4.3
     12 * @since             1.4.4
    1313 * @package           tpmeta
    1414 *
     
    1717 * Plugin URI:        https://themepure.net/plugins/puremetafields/files/pure-metafields.zip
    1818 * Description:       Plugin For Custom Metabox To Attach To Any Post Types.
    19  * Version:           1.4.3
     19 * Version:           1.4.4
    2020 * Author:            ThemePure
    2121 * Author URI:        https://themepure.net
     
    3131}
    3232
    33 define( 'TPMETA_VERSION', '1.4.3' );
     33define( 'TPMETA_VERSION', '1.4.4' );
    3434define( 'TPMETA_PATH', plugin_dir_path(__FILE__) );
    3535define( 'TPMETA_URL', plugin_dir_url(__FILE__) );
Note: See TracChangeset for help on using the changeset viewer.