Add repository list pagination
Also changes our binds to be bind-once, which should significantly reduce memory and increase performance for large lists Fixes #1856
This commit is contained in:
parent
502fa23d31
commit
e4ad25ea81
6 changed files with 55 additions and 20 deletions
|
@ -1310,6 +1310,10 @@ a:focus {
|
|||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.co-top-bar {
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-checked-actions .btn {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
@ -1318,21 +1322,25 @@ a:focus {
|
|||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-filter-box {
|
||||
.co-check-bar .co-filter-box, .co-top-bar .co-filter-box {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.co-check-bar .co-filter-box .page-controls {
|
||||
.co-check-bar .co-filter-box .page-controls, .co-top-bar .co-filter-box .page-controls {
|
||||
margin-right: 6px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-filter-box input {
|
||||
.co-check-bar .co-filter-box input, .co-top-bar .co-filter-box input {
|
||||
width: 300px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.co-top-bar .co-filter-box input {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.empty {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
|
Reference in a new issue