Plugin Directory

Changeset 2849790


Ignore:
Timestamp:
01/17/2023 01:33:39 PM (3 years ago)
Author:
liquidpoll
Message:

Fix responsive issues

Location:
wp-poll
Files:
285 added
5 edited

Legend:

Unmodified
Added
Removed
  • wp-poll/trunk/assets/front/css/style.css

    r2849146 r2849790  
    325325.poll-single.rendered-results,
    326326.poll-single.vote-done {
    327     pointer-events: none;
    328     user-select: none;
    329     -webkit-user-select: none;
     327    /*pointer-events: none;*/
     328    /*user-select: none;*/
     329    /*-webkit-user-select: none;*/
    330330}
    331331
     
    16111611    }
    16121612
     1613    .theme-1.rendered-results .liquidpoll-option-list-1 .liquidpoll-option-single input + label {
     1614        margin-left: 10px !important;
     1615    }
     1616
    16131617    .theme-2.rendered-results .liquidpoll-option-list-1 .liquidpoll-option-single input + label {
    1614         top: -15px;
     1618        top: -8px;
    16151619        transition: .6s;
     1620        font-size: 16px;
    16161621    }
    16171622
     
    16281633    }
    16291634
     1635    .theme-2.rendered-results .liquidpoll-option-list-1 .liquidpoll-option-single.has-thumb .liquidpoll-option-thumb {
     1636        margin-right: 10px;
     1637    }
     1638
    16301639    .theme-2.rendered-results .liquidpoll-option-single.has-result span.liquidpoll-votes-count {
    1631         right: 50%;
     1640        left: 80px;
    16321641        top: 40px;
    16331642        transition: .6s;
     1643        font-size: 16px;
    16341644    }
    16351645
  • wp-poll/trunk/includes/classes/class-item-data.php

    r2835348 r2849790  
    273273                    break;
    274274                case '8':
     275                    $theme_args = array(
     276                        'width'  => 555,
     277                        'height' => 180,
     278                    );
     279                    break;
    275280                case '9':
    276281                    $theme_args = array(
    277282                        'width'  => 555,
    278                         'height' => 120,
     283                        'height' => 180,
    279284                    );
    280285                    break;
  • wp-poll/trunk/readme.txt

    r2849146 r2849790  
    55    Requires at least: 4.6
    66    Tested up to: 6.1.1
    7     Stable tag: 3.3.55
     7    Stable tag: 3.3.56
    88    License: GPLv2 or later
    99    License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    335335* 16/01/2023 - FIX - Fix issues.
    336336
     337= 3.3.56 =
     338* 16/01/2023 - FIX - Fix responsive issues.
     339
  • wp-poll/trunk/templates/single-poll/options-single.php

    r2818062 r2849790  
    9595            <ul>
    9696                <?php foreach ( $poller_details as $index => $poller_detail )  :
    97                     if ( $index > 2 ) {
     97                    if ( $index > 0 ) {
    9898                        continue;
    9999                    }
     
    104104                <?php endforeach; ?>
    105105
    106                 <?php if ( $poller_count > 3 ) : ?>
     106                <?php if ( $poller_count > 1 ) : ?>
    107107                    <li>
    108                         <span>+<?php echo esc_html( $poller_count - 3 ); ?></span>
     108                        <span>+<?php echo esc_html( $poller_count - 1 ); ?></span>
    109109                    </li>
    110110                <?php endif; ?>
  • wp-poll/trunk/wp-poll.php

    r2849146 r2849790  
    44 * Plugin URI: https://liquidpoll.com
    55 * Description: It allows user to poll in your website with many awesome features.
    6  * Version: 3.3.55
     6 * Version: 3.3.56
    77 * Author: LiquidPoll
    88 * Text Domain: wp-poll
     
    2727defined( 'LIQUIDPOLL_TICKET_URL' ) || define( 'LIQUIDPOLL_TICKET_URL', 'https://www.liquidpoll.com/my-account/' );
    2828defined( 'LIQUIDPOLL_COMMUNITY_URL' ) || define( 'LIQUIDPOLL_COMMUNITY_URL', 'https://www.facebook.com/groups/liquidpoll/' );
    29 defined( 'LIQUIDPOLL_VERSION' ) || define( 'LIQUIDPOLL_VERSION', '3.3.55' );
     29defined( 'LIQUIDPOLL_VERSION' ) || define( 'LIQUIDPOLL_VERSION', '3.3.56' );
    3030
    3131if ( ! class_exists( 'LIQUIDPOLL_Main' ) ) {
Note: See TracChangeset for help on using the changeset viewer.