Changeset 1649915
- Timestamp:
- 05/02/2017 07:18:06 PM (9 years ago)
- Location:
- redi-restaurant-reservation/branches/newDesign
- Files:
-
- 2 edited
-
css/restaurant.css (modified) (2 diffs)
-
templates/frontend.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
redi-restaurant-reservation/branches/newDesign/css/restaurant.css
r1646920 r1649915 1074 1074 } 1075 1075 1076 .date {1077 width: 33px;1078 }1079 1080 1076 .redi-restaurant-time-button[disabled="disabled"], 1081 1077 .redi-restaurant-button[disabled="disabled"] { … … 1318 1314 color: #888 !important; 1319 1315 } 1316 1317 .persons, .more_persons, .message_for_large_group, .more_date_select,.date{ 1318 max-width: 33px; 1319 } -
redi-restaurant-reservation/branches/newDesign/templates/frontend.php
r1646920 r1649915 61 61 <tr> 62 62 <?php foreach ( range( $minPersons, $maxPersons - $minPersons <= $maxInRow ? $maxPersons : $minPersons + $maxInRow - 1 ) as $current ): ?> 63 <td style="width:33px;"63 <td 64 64 class="persons <?php if ( $current == $minPersons ): ?>select<?php endif ?>"> 65 65 <?php echo $current ?> … … 67 67 <?php endforeach; ?> 68 68 <?php if ( ! $fits ): ?> 69 <td style="width:33px;"class="more_persons">69 <td class="more_persons"> 70 70 <div class="selectBox" data-value="Option 1"> 71 71 <span id="more">...</span> … … 81 81 <?php endif; ?> 82 82 <?php if ( ! empty( $largeGroupsMessage ) ): ?> 83 <td style="width:33px;"class="message_for_large_group">83 <td class="message_for_large_group"> 84 84 <abbr title="<?php echo sprintf( __( 'More than %s people', 'redi-booking' ), $maxPersons ); ?>"> 85 85 <span id="large">> </span> … … 118 118 <input type="hidden" value="<?php echo $date['hidden'] ?>"/> 119 119 <span class="legend"> 120 <?php echo $date['month'] ?>121 </span>120 <?php echo $date['month'] ?> 121 </span> 122 122 <br/> 123 123 <?php echo $date['day'] ?> … … 136 136 </td> 137 137 <?php endforeach ?> 138 <td style="width:33px;" id="more-date-select">138 <td id="more-date-select" class="more_date_select"> 139 139 <input type="hidden" value=""/> 140 140 <br/>
Note: See TracChangeset
for help on using the changeset viewer.