Add pagination to the tags view
This commit is contained in:
parent
0d133b0fa4
commit
672e8a5ba9
7 changed files with 113 additions and 2 deletions
33
static/css/directives/ui/page-controls.css
Normal file
33
static/css/directives/ui/page-controls.css
Normal file
|
@ -0,0 +1,33 @@
|
|||
.page-controls-element {
|
||||
display: inline-block
|
||||
}
|
||||
|
||||
.page-controls {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.page-controls-element .current-items {
|
||||
font-weight: bold;
|
||||
margin-right: 10px;
|
||||
padding: 4px;
|
||||
border: 1px solid transparent;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.page-controls-element .current-items:hover {
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.page-controls-element .btn {
|
||||
font-size: 18px;
|
||||
line-height: 14px;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
.page-controls-element .btn:disabled {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.page-controls-element .page-view {
|
||||
cursor: pointer;
|
||||
}
|
Reference in a new issue