This is an automated email from the ASF dual-hosted git repository.
sorabh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git
The following commit(s) were added to refs/heads/master by this push:
new b0314a3 DRILL-6583: Add space between pagination links in Profiles
(WebUI) list
b0314a3 is described below
commit b0314a32dec2e7e9fcc9be5f37fd35d5080cf81b
Author: Kunal Khatua <[email protected]>
AuthorDate: Wed Jul 11 10:36:55 2018 -0700
DRILL-6583: Add space between pagination links in Profiles (WebUI) list
Inject a small space to improve readability of the pagination links (CSS)
closes #1369
---
.../java-exec/src/main/resources/rest/profile/list.ftl | 18 ++++++------------
1 file changed, 6 insertions(+), 12 deletions(-)
diff --git a/exec/java-exec/src/main/resources/rest/profile/list.ftl
b/exec/java-exec/src/main/resources/rest/profile/list.ftl
index f9334b8..602a0e3 100644
--- a/exec/java-exec/src/main/resources/rest/profile/list.ftl
+++ b/exec/java-exec/src/main/resources/rest/profile/list.ftl
@@ -54,9 +54,12 @@
/* 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;
@@ -64,19 +67,10 @@
}
/* 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>