Changeset 2297593
- Timestamp:
- 05/04/2020 09:10:57 AM (6 years ago)
- Location:
- wha-crossword/trunk
- Files:
-
- 5 edited
-
readme.txt (modified) (1 diff)
-
res/admin/crossword-admin.css (modified) (1 diff)
-
res/crossword.css (modified) (3 diffs)
-
res/crossword.js (modified) (2 diffs)
-
wha-crossword.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wha-crossword/trunk/readme.txt
r2290174 r2297593 2 2 === Crossword Puzzles game === 3 3 Contributors: webhelpagency 4 Version: 1.1. 64 Version: 1.1.7 5 5 Donate link: http://webhelpagency.com/ 6 6 Tags: crossword, game, mind, puzzles -
wha-crossword/trunk/res/admin/crossword-admin.css
r2157675 r2297593 149 149 } 150 150 151 wha {151 .wha { 152 152 color: #41b4f7; 153 153 } -
wha-crossword/trunk/res/crossword.css
r2146822 r2297593 173 173 174 174 /*** Modal window ***/ 175 #modal_form {175 #modal_form_crossword { 176 176 width: 100%; 177 177 max-width: 25%; 178 178 border-radius: 5px; 179 179 border: 1px #7f7f7f solid; 180 background: #fff ;180 background: #ffffff; 181 181 position: fixed; 182 182 left: 37%; … … 186 186 padding: 30px 10px; 187 187 } 188 #modal_form #modal_close {188 #modal_form_crossword #modal_close { 189 189 width: 21px; 190 190 height: 21px; 191 191 position: absolute; 192 top: 10px;192 top: 0; 193 193 right: 10px; 194 194 cursor: pointer; 195 195 display: block; 196 } 197 #modal_form .content { 196 font-size: 16px; 197 font-family: cursive; 198 } 199 #modal_form_crossword .content { 198 200 padding: 15px; 199 201 text-align: center; … … 265 267 } 266 268 267 } 268 269 @media (min-width: 300px) and (max-width: 767px) { 270 271 #modal_form { 269 #modal_form_crossword { 272 270 width: 100%; 273 max-width: max-content;271 max-width: 90%; 274 272 border-radius: 0; 275 273 left: 0; 276 274 margin: 0 auto; 277 right: 0 278 } 279 } 275 right: 0; 276 } 277 278 } -
wha-crossword/trunk/res/crossword.js
r2290173 r2297593 619 619 jQuery('#overlay').fadeIn(400, 620 620 function () { 621 jQuery('#modal_form ')621 jQuery('#modal_form_crossword') 622 622 .css('display', 'block') 623 623 .animate({opacity: 1, top: '50%'}, 200); … … 676 676 jQuery('#modal_close, #overlay').click(function () { 677 677 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') 683 683 .animate({opacity: 0, top: '45%'}, 200, 684 684 function () { -
wha-crossword/trunk/wha-crossword.php
r2290174 r2297593 4 4 * Plugin Name: WHA Crossword 5 5 * Description: The plugin creates an easy crossword from the words of any combination. 6 * Version: 1.1. 66 * Version: 1.1.7 7 7 * Author: WHA 8 8 * Author URI: http://webhelpagency.com/ … … 236 236 } 237 237 238 $html .= '<div id="modal_form ">238 $html .= '<div id="modal_form_crossword"> 239 239 <span id="modal_close">X</span> 240 240 <div class="content">' . $message . '</div>
Note: See TracChangeset
for help on using the changeset viewer.