Plugin Directory

Changeset 2818249


Ignore:
Timestamp:
11/15/2022 12:22:28 PM (3 years ago)
Author:
liquidpoll
Message:

css Fixed

Location:
wp-poll/trunk
Files:
2 edited

Legend:

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

    r2818062 r2818249  
    2121}
    2222
    23 table, td, th {
    24     border: 1px solid rgba(0, 0, 0, .1)
    25 }
    26 
    27 table {
    28     border-collapse: separate;
    29     border-spacing: 0;
    30     border-width: 1px 0 0 1px;
    31     margin: 0 0 1.5em;
    32     width: 100%
    33 }
    34 
    35 th {
    36     font-weight: 700
    37 }
    38 
    39 td, th {
    40     padding: 8px;
    41     text-align: left;
    42     border-width: 0 1px 1px 0
     23.poll-single.rendered-results {
     24    pointer-events: none;
    4325}
    4426
  • wp-poll/trunk/includes/classes/class-hooks.php

    r2804798 r2818249  
    339339            $checked_data = isset( $checked_data[0] ) ? $checked_data[0] : '';
    340340
    341             if ( empty( $poll_id ) || empty( $checked_data ) ) {
     341            if ( empty( $poll_id ) ) {
    342342                wp_send_json_error( esc_html__( 'Invalid data found !', 'wp-poll' ) );
    343343            }
Note: See TracChangeset for help on using the changeset viewer.