Changeset 1646920
- Timestamp:
- 04/27/2017 09:20:07 PM (9 years ago)
- Location:
- redi-restaurant-reservation/branches/newDesign
- Files:
-
- 3 edited
-
css/restaurant.css (modified) (2 diffs)
-
js/restaurant.js (modified) (1 diff)
-
templates/frontend.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
redi-restaurant-reservation/branches/newDesign/css/restaurant.css
r1646867 r1646920 1247 1247 max-width: 400px; 1248 1248 z-index: 0; 1249 padding: 0; 1250 font-size: 18px; 1249 1251 } 1250 1252 … … 1307 1309 outline: 1px solid #fa9090; 1308 1310 } 1311 1312 .f_select2 label{ 1313 display: inline; 1314 font-size: 18px; 1315 font-family: "PT Sans Narrow", verdana; 1316 text-transform: none; 1317 font-weight: normal; 1318 color: #888 !important; 1319 } -
redi-restaurant-reservation/branches/newDesign/js/restaurant.js
r1641783 r1646920 245 245 246 246 $('.field_required').each(function () { 247 if ($(this).attr('type') === 'checkbox' && $(this).attr('checked') !== 'checked' || $(this).attr('type') === 'text box' && $(this).val() === '') {247 if ($(this).attr('type') === 'checkbox' && $(this).attr('checked') !== 'checked' || $(this).attr('type') === 'text' && $(this).val() === '') { 248 248 $('#' + this.id + '_message').show(); 249 249 $('#' + this.id).addClass('form_validation_error'); -
redi-restaurant-reservation/branches/newDesign/templates/frontend.php
r1641783 r1646920 275 275 </div> 276 276 <br/> 277 <div class="f_select2">277 <div class="f_select2"> 278 278 <div class="f_input_box"> 279 279 <span class="selectArrow4 required"></span> … … 324 324 <?php break; endswitch; ?> 325 325 </div> 326 </div> 326 327 <?php if ( isset( $$field_required ) && $$field_required ): ?> 327 328 <div id="<?php echo 'field_' . $i . '_message'; ?>" style="display:none; text-align: center;"> … … 331 332 </div> 332 333 <?php endif; ?> 333 </div>334 334 335 <br/> 335 336 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.