#53 added years filter forms

This commit is contained in:
Nightblade73 2019-03-23 15:19:48 +04:00
parent edd6aee00f
commit ea4e25aded
2 changed files with 23 additions and 3 deletions

View File

@ -4,6 +4,12 @@
.dashboard button{ .dashboard button{
margin-left: 10px; margin-left: 10px;
height: 41px;
}
.dashboard-elements {
align-items: center;
justify-content: left;
} }
.conference-list-body { .conference-list-body {
@ -170,3 +176,7 @@
position: relative; position: relative;
font-size: 1rem; font-size: 1rem;
} }
@media (min-width: 768px) {
}

View File

@ -18,15 +18,25 @@
<hr/> <hr/>
<div class="row dashboard"> <div class="row dashboard">
<div class="col-lg-12"> <div class="col-lg-12">
<div class="d-flex bd-highlight"> <div class="d-flex bd-highlight dashboard-elements">
<div class="form-check p-1 bd-highlight"> <div class="form-check p-1 bd-highlight">
<div class="checkbox" id="select-all-js"></div> <div class="checkbox" id="select-all-js"></div>
</div> </div>
<button type="button" class="btn btn-danger">Удалить</button> <button type="button" class="btn btn-danger">Удалить</button>
<button type="button" class="btn btn-success data-href-js" data-href="./conference">Добавить <button type="button" class="btn btn-success data-href-js mr-auto" data-href="./conference">
Добавить
</button> </button>
<div class="p-1 flex-grow-1 bd-highlight">
<div class="form-row align-items-center justify-content-end">
<label for="filter" class="col-auto col-form-label">Фильтровать по годам:</label>
<div class="col-2" id="filter">
<input type="text" class="form-control" placeholder="2000"/>
</div> </div>
<div class="col-2">
<input type="text" class="form-control" placeholder="2020"/>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>