Skip to content

Commit

Permalink
DRILL-6583: Add space between pagination links in Profiles (WebUI) list
Browse files Browse the repository at this point in the history
Inject a small space to improve readability of the pagination links (CSS)

closes #1369
  • Loading branch information
kkhatua authored and sohami committed Jul 11, 2018
1 parent a321bf0 commit b0314a3
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions exec/java-exec/src/main/resources/rest/profile/list.ftl
Expand Up @@ -54,29 +54,23 @@
/* Control Padding for length and filter as a pair */
div.dataTables_length {
float: right;
font-weight: normal;
}
div.dataTables_filter {
float: left;
font-weight: normal;
padding-left: 0.45em;
}
div.dataTables_info {
padding-right: 2em;
float: right;
}
/* Add spaces between pagination links */
#profileList_paginate * {
padding-right: 0.55em;
float:left
#profileList_completed_paginate *, #profileList_running_paginate * {
padding-right: 0.35em;
float:left
}
/* Normal wt for search text */
#profileList_filter input {
font-weight: normal;
padding-left: 0.45em;
}
#profileList_length * {
font-weight: normal;
}
</style>

</#macro>
Expand Down

0 comments on commit b0314a3

Please sign in to comment.