mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
193d468ed3
Currently there is a limit of 1000 users in the global user list. This change introduces paging so that an admin can see all users and not just the first 1000. Adds a new route to the api - /api/users/search that returns a list of users and a total count. It takes two parameters perpage and page that enable paging. Fixes #7469
23 lines
291 B
SCSS
23 lines
291 B
SCSS
|
|
.admin-settings-section {
|
|
color: $variable;
|
|
font-weight: bold;
|
|
}
|
|
|
|
td.admin-settings-key {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.admin-list-table {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.admin-list-paging {
|
|
float: right;
|
|
li {
|
|
display: inline-block;
|
|
padding-left: 10px;
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|