Plugin Directory

Changeset 2297593


Ignore:
Timestamp:
05/04/2020 09:10:57 AM (6 years ago)
Author:
webhack
Message:

Fix files ---

Location:
wha-crossword/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wha-crossword/trunk/readme.txt

    r2290174 r2297593  
    22=== Crossword Puzzles game ===
    33Contributors: webhelpagency
    4 Version: 1.1.6
     4Version: 1.1.7
    55Donate link: http://webhelpagency.com/
    66Tags: crossword, game, mind, puzzles
  • wha-crossword/trunk/res/admin/crossword-admin.css

    r2157675 r2297593  
    149149}
    150150
    151 wha {
     151.wha {
    152152    color: #41b4f7;
    153153}
  • wha-crossword/trunk/res/crossword.css

    r2146822 r2297593  
    173173
    174174/*** Modal window ***/
    175 #modal_form {
     175#modal_form_crossword {
    176176    width: 100%;
    177177    max-width: 25%;
    178178    border-radius: 5px;
    179179    border: 1px #7f7f7f solid;
    180     background: #fff;
     180    background: #ffffff;
    181181    position: fixed;
    182182    left: 37%;
     
    186186    padding: 30px 10px;
    187187}
    188 #modal_form #modal_close {
     188#modal_form_crossword #modal_close {
    189189    width: 21px;
    190190    height: 21px;
    191191    position: absolute;
    192     top: 10px;
     192    top: 0;
    193193    right: 10px;
    194194    cursor: pointer;
    195195    display: block;
    196 }
    197 #modal_form .content {
     196    font-size: 16px;
     197    font-family: cursive;
     198}
     199#modal_form_crossword .content {
    198200    padding: 15px;
    199201    text-align: center;
     
    265267    }
    266268
    267 }
    268 
    269 @media (min-width: 300px) and (max-width: 767px) {
    270 
    271     #modal_form {
     269    #modal_form_crossword {
    272270        width: 100%;
    273         max-width: max-content;
     271        max-width: 90%;
    274272        border-radius: 0;
    275273        left: 0;
    276274        margin: 0 auto;
    277         right: 0
    278     }
    279 }
     275        right: 0;
     276    }
     277
     278}
  • wha-crossword/trunk/res/crossword.js

    r2290173 r2297593  
    619619                jQuery('#overlay').fadeIn(400,
    620620                    function () {
    621                         jQuery('#modal_form')
     621                        jQuery('#modal_form_crossword')
    622622                            .css('display', 'block')
    623623                            .animate({opacity: 1, top: '50%'}, 200);
     
    676676        jQuery('#modal_close, #overlay').click(function () {
    677677
    678             var src = jQuery('#modal_form iframe').attr('src');
    679             jQuery('#modal_form iframe').attr('src', '');
    680             jQuery('#modal_form iframe').attr('src', src);
    681 
    682             jQuery('#modal_form')
     678            var src = jQuery('#modal_form_crossword iframe').attr('src');
     679            jQuery('#modal_form_crossword iframe').attr('src', '');
     680            jQuery('#modal_form_crossword iframe').attr('src', src);
     681
     682            jQuery('#modal_form_crossword')
    683683                .animate({opacity: 0, top: '45%'}, 200,
    684684                    function () {
  • wha-crossword/trunk/wha-crossword.php

    r2290174 r2297593  
    44 * Plugin Name:       WHA Crossword
    55 * Description:       The plugin creates an easy crossword from the words of any combination.
    6  * Version:           1.1.6
     6 * Version:           1.1.7
    77 * Author:            WHA
    88 * Author URI:        http://webhelpagency.com/
     
    236236        }
    237237
    238         $html .= '<div id="modal_form">
     238        $html .= '<div id="modal_form_crossword">
    239239                    <span id="modal_close">X</span>
    240240                    <div class="content">' . $message . '</div>
Note: See TracChangeset for help on using the changeset viewer.