Search pagination and animations

- Added previous and next button at the end of searches, and styled the buttons
- Added so buttons only work when there are a previous or next page, depending on what is clicked
- Added a pretty and better way of showing the search with animations
This commit is contained in:
Kasper Rynning-Tønnesen
2017-11-06 15:59:57 +01:00
parent 532bc851c0
commit 7bf551dfce
4 changed files with 84 additions and 9 deletions

View File

@@ -1272,12 +1272,26 @@ hide mdi-action-visibility mdi-action-visibility-off
display:none;
}
#inner-results {
height: calc(100vh - 64px - 76px);
overflow-y: scroll;
}
#empty-results {
text-align:center;
height:100px;
cursor: default;
}
.pagination-results {
display: flex;
justify-content: center;
}
.pagination-results a {
margin: 20px;
}
#empty-results span {
margin:auto;
}
@@ -2739,6 +2753,11 @@ nav ul li:hover, nav ul li.active {
width: 100%;
}
#inner-results {
height: calc(100vh - 54px - 64px - 76px);
overflow-y: scroll;
}
#results{
background-color: #000;
margin-top:56px;