Merge pull request 'TIST-48: added reset button in catalog filters' (#39) from TIST-48 into develop
Reviewed-on: #39
This commit is contained in:
commit
df65db797b
@ -46,7 +46,8 @@ the_header(
|
||||
$is_checked = true;
|
||||
?>
|
||||
<li>
|
||||
<input id="<?= $field_id ?>" type="radio" name="category" value="<?= $cat->get_id() ?>" <?= $is_checked ? 'checked' : '' ?>>
|
||||
<input id="<?= $field_id ?>" type="radio" name="category"
|
||||
value="<?= $cat->get_id() ?>" <?= $is_checked ? 'checked' : '' ?>>
|
||||
<label for="<?= $field_id ?>"><?= $cat->field_name ?></label>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
@ -73,7 +74,8 @@ the_header(
|
||||
}
|
||||
?>
|
||||
<li>
|
||||
<input id="<?= $field_id ?>" type="checkbox" name="ingredient[]" value="<?= $ing->get_id() ?>" <?= $is_checked ? 'checked' : '' ?>>
|
||||
<input id="<?= $field_id ?>" type="checkbox" name="ingredient[]"
|
||||
value="<?= $ing->get_id() ?>" <?= $is_checked ? 'checked' : '' ?>>
|
||||
<label for="<?= $field_id ?>"><?= $ing->field_name ?></label>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
@ -83,6 +85,9 @@ the_header(
|
||||
<button class="btn btn-primary hover-anim" type="submit">
|
||||
Apply
|
||||
</button>
|
||||
<a class="btn btn-secondary hover-anim" type="button" href="<?php the_permalink('recipes:catalog') ?>">
|
||||
Reset
|
||||
</a>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -831,7 +831,7 @@ input[type="checkbox"]{
|
||||
|
||||
.filters {
|
||||
position: fixed;
|
||||
max-height: 454px;
|
||||
max-height: 500px;
|
||||
width: 230px;
|
||||
padding: 15px;
|
||||
background-color: var(--panel-background);
|
||||
@ -874,6 +874,7 @@ input[type="checkbox"]{
|
||||
|
||||
.filters-form .btn {
|
||||
width: 200px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.single-recipe {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user