Plugin Directory

Changeset 3245832


Ignore:
Timestamp:
02/24/2025 02:52:14 PM (13 months ago)
Author:
wpxteam
Message:

1.7.1: * Update: CSS and checked with autoprefixers.

Location:
product-variant-table-for-woocommerce
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • product-variant-table-for-woocommerce/trunk/inc/class_pvtfw_common.php

    r3098894 r3245832  
    228228                    'value' => array(),
    229229                ),
    230                 'td' => array()
     230                'td' => array(
     231                    'class' => array(),
     232                ),
     233                'div' => array(),
    231234            ) );
    232235        }
  • product-variant-table-for-woocommerce/trunk/languages/product-variant-table-for-woocommerce.pot

    r3245229 r3245832  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: PVT - Product Variation Table for WooCommerce 1.7.0\n"
     5"Project-Id-Version: PVT - Product Variation Table for WooCommerce 1.7.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/product-variant-table-for-woocommerce\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-02-23T08:26:03+00:00\n"
     12"POT-Creation-Date: 2025-02-24T06:24:54+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
  • product-variant-table-for-woocommerce/trunk/product-variant-table-for-woocommerce.php

    r3245229 r3245832  
    88Text Domain: product-variant-table-for-woocommerce
    99Domain Path: /languages
    10 Version: 1.7.0
     10Version: 1.7.1
    1111Requires at least: 4.7.0
    1212Requires PHP: 5.6.20
     
    3333 */
    3434
    35 define("PVTFW_VARIANT_TABLE_VERSION", '1.7.0');
     35define("PVTFW_VARIANT_TABLE_VERSION", '1.7.1');
    3636define("PVTFW_REQUIRED_PRO_VERSION", '1.7.0');
    3737define("PVTFW_DIR", plugin_dir_path(__FILE__) );
  • product-variant-table-for-woocommerce/trunk/public/css/pvtfw_frontend.css

    r3245229 r3245832  
    22.spinner-wrap {
    33    display: none;
    4     animation: rotate 1.5s linear infinite;
     4    -webkit-animation: rotate 1.5s linear infinite;
     5            animation: rotate 1.5s linear infinite;
    56}
    67
     
    1011}
    1112 
     13@-webkit-keyframes rotate {
     14    0% {
     15        -webkit-transform: rotate(0);
     16                transform: rotate(0);
     17    }
     18    100% {
     19        -webkit-transform: rotate(359deg);
     20                transform: rotate(359deg);
     21    }
     22}
     23 
    1224@keyframes rotate {
    1325    0% {
    14         transform: rotate(0);
     26        -webkit-transform: rotate(0);
     27                transform: rotate(0);
    1528    }
    1629    100% {
    17         transform: rotate(359deg);
     30        -webkit-transform: rotate(359deg);
     31                transform: rotate(359deg);
    1832    }
    1933}
    2034
    2135.pvtfw_variant_table_block table.variant{
    22     table-layout: fixed;
     36    table-layout: auto;
    2337}
    2438
     
    124138    background-color: transparent !important;
    125139    color: var( --pvtfw-table-body-text-color, #6d6d6d );
     140    white-space: nowrap;
    126141}
    127142
     
    190205    color: #000;
    191206    background: #fff;
     207    display: -webkit-box;
     208    display: -ms-flexbox;
    192209    display: flex;
    193     align-items: center;
     210    -webkit-box-align: center;
     211        -ms-flex-align: center;
     212            align-items: center;
    194213    overflow: hidden;
    195214    max-width: 100px;
     
    263282}
    264283.pvt-qty-input .qty-count--add:after {
    265   transform: rotate(90deg);
     284  -webkit-transform: rotate(90deg);
     285      -ms-transform: rotate(90deg);
     286          transform: rotate(90deg);
    266287}
    267288.pvt-qty-input .qty-count:disabled {
  • product-variant-table-for-woocommerce/trunk/readme.txt

    r3245229 r3245832  
    55Tested up to: 6.7
    66Requires PHP: 5.6.20
    7 Stable tag: 1.7.0
     7Stable tag: 1.7.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    179179== Changelog ==
    180180
    181 = 1.7.0 [22-02-2025] Sunday =
    182 * Update: Settings framework.
    183 * Update:`$options` array.
    184 * Update: Availability text condition and optimize the code at compatiblilty.php.
    185 * Update: Scripts and added necessary trigger.
    186 * Check: WPCS.
     181= 1.7.1 [24-02-2025] Monday =
     182* Update: CSS and checked with autoprefixers.
    187183
    188184[See changelog for all versions.](https://github.com/WPXtension/product-variation-table-for-woocommerce/blob/main/changelog-free.md)
     
    191187== Upgrade Notice ==
    192188
    193 = 1.6.2 =
    194 * Fix: Minor conditional fix.
    195 * Enhancement: UI of Advanced tab.
    196 * Update: Codebase based on Plugin Check Plugin(PCP).
    197 
     189= 1.7.0 [23-02-2025] Sunday =
     190* Update: Settings framework.
     191* Update:`$options` array.
     192* Update: Availability text condition and optimize the code at compatiblilty.php.
     193* Update: Scripts and added necessary trigger.
     194* Check: WPCS.
Note: See TracChangeset for help on using the changeset viewer.