summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-12-11 22:57:02 -0500
committerEndi S. Dewata <edewata@redhat.com>2013-12-16 19:15:46 -0500
commit6ec35d4864fc45423f3e00b067ec5c92fbeab80a (patch)
treed846ed9f8d0cb1f2610187562d21043cd9b6e71d /base
parenta99a23e2866da950f267c7441c0f60be9ed136b9 (diff)
downloadpki-6ec35d4864fc45423f3e00b067ec5c92fbeab80a.tar.gz
pki-6ec35d4864fc45423f3e00b067ec5c92fbeab80a.tar.xz
pki-6ec35d4864fc45423f3e00b067ec5c92fbeab80a.zip
Fixed table style.
The column headers and the footer in all tables have been modified to use the proper style. Ticket #654
Diffstat (limited to 'base')
-rw-r--r--base/server/share/webapps/pki/css/pki-ui.css22
-rw-r--r--base/tps-tomcat/shared/webapps/tps/activities.html14
-rw-r--r--base/tps-tomcat/shared/webapps/tps/authenticators.html4
-rw-r--r--base/tps-tomcat/shared/webapps/tps/certs.html18
-rw-r--r--base/tps-tomcat/shared/webapps/tps/connections.html4
-rw-r--r--base/tps-tomcat/shared/webapps/tps/groups.html4
-rw-r--r--base/tps-tomcat/shared/webapps/tps/profiles.html4
-rw-r--r--base/tps-tomcat/shared/webapps/tps/selftests.html10
-rw-r--r--base/tps-tomcat/shared/webapps/tps/tokens.html16
-rw-r--r--base/tps-tomcat/shared/webapps/tps/users.html4
10 files changed, 61 insertions, 39 deletions
diff --git a/base/server/share/webapps/pki/css/pki-ui.css b/base/server/share/webapps/pki/css/pki-ui.css
index 94b559451..4d79d531d 100644
--- a/base/server/share/webapps/pki/css/pki-ui.css
+++ b/base/server/share/webapps/pki/css/pki-ui.css
@@ -47,3 +47,25 @@ input[readonly="readonly"]:focus {
input[readonly="readonly"]:enabled:hover {
border-color: #FFFFFF;
}
+
+table tfoot tr th {
+ padding: 6px 15px;
+ font-size: 11.5px;
+ text-align: left;
+ font-weight: bold;
+ border: none;
+ border-right: 1px #dcdcdc solid;
+ background-image: linear-gradient(top, #fafafa 0%, #eee 100%);
+ background-image: -o-linear-gradient(top, #fafafa 0%, #eee 100%);
+ background-image: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
+ background-image: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
+ background-image: -ms-linear-gradient(top, #fafafa 0%, #eee 100%);
+ background-image: -webkit-gradient(
+ linear,
+ left top,
+ left bottom,
+ color-stop(0.0, #fafafa),
+ color-stop(1,0, #eee)
+ );
+ border-bottom: 1px #cedede solid;
+}
diff --git a/base/tps-tomcat/shared/webapps/tps/activities.html b/base/tps-tomcat/shared/webapps/tps/activities.html
index 583f98426..3edda45d2 100644
--- a/base/tps-tomcat/shared/webapps/tps/activities.html
+++ b/base/tps-tomcat/shared/webapps/tps/activities.html
@@ -53,13 +53,13 @@ $(function() {
</th>
</tr>
<tr>
- <td>Activity ID</td>
- <td>Token ID</td>
- <td>User ID</td>
- <td>IP</td>
- <td>Operation</td>
- <td>Result</td>
- <td>Date</td>
+ <th>Activity ID</th>
+ <th>Token ID</th>
+ <th>User ID</th>
+ <th>IP</th>
+ <th>Operation</th>
+ <th>Result</th>
+ <th>Date</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/authenticators.html b/base/tps-tomcat/shared/webapps/tps/authenticators.html
index 244ad110a..81e2c53ec 100644
--- a/base/tps-tomcat/shared/webapps/tps/authenticators.html
+++ b/base/tps-tomcat/shared/webapps/tps/authenticators.html
@@ -52,8 +52,8 @@ $(function() {
</th>
</tr>
<tr>
- <td>Authenticator ID</td>
- <td>Status</td>
+ <th>Authenticator ID</th>
+ <th>Status</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/certs.html b/base/tps-tomcat/shared/webapps/tps/certs.html
index 975227dae..c3a70501c 100644
--- a/base/tps-tomcat/shared/webapps/tps/certs.html
+++ b/base/tps-tomcat/shared/webapps/tps/certs.html
@@ -53,15 +53,15 @@ $(function() {
</th>
</tr>
<tr>
- <td>Certificate ID</td>
- <td>Serial Number</td>
- <td>Subject</td>
- <td>Token ID</td>
- <td>User ID</td>
- <td>Key Type</td>
- <td>Status</td>
- <td>Create Time</td>
- <td>Modify Time</td>
+ <th>Certificate ID</th>
+ <th>Serial Number</th>
+ <th>Subject</th>
+ <th>Token ID</th>
+ <th>User ID</th>
+ <th>Key Type</th>
+ <th>Status</th>
+ <th>Create Time</th>
+ <th>Modify Time</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/connections.html b/base/tps-tomcat/shared/webapps/tps/connections.html
index c9750932e..0f26e3301 100644
--- a/base/tps-tomcat/shared/webapps/tps/connections.html
+++ b/base/tps-tomcat/shared/webapps/tps/connections.html
@@ -52,8 +52,8 @@ $(function() {
</th>
</tr>
<tr>
- <td>Connection ID</td>
- <td>Status</td>
+ <th>Connection ID</th>
+ <th>Status</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/groups.html b/base/tps-tomcat/shared/webapps/tps/groups.html
index bee056301..ade0b7745 100644
--- a/base/tps-tomcat/shared/webapps/tps/groups.html
+++ b/base/tps-tomcat/shared/webapps/tps/groups.html
@@ -52,8 +52,8 @@ $(function() {
</th>
</tr>
<tr>
- <td>Group ID</td>
- <td>Description</td>
+ <th>Group ID</th>
+ <th>Description</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/profiles.html b/base/tps-tomcat/shared/webapps/tps/profiles.html
index ad5cd2e18..9f00ac543 100644
--- a/base/tps-tomcat/shared/webapps/tps/profiles.html
+++ b/base/tps-tomcat/shared/webapps/tps/profiles.html
@@ -53,8 +53,8 @@ $(function() {
</th>
</tr>
<tr>
- <td>Profile ID</td>
- <td>Status</td>
+ <th>Profile ID</th>
+ <th>Status</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/selftests.html b/base/tps-tomcat/shared/webapps/tps/selftests.html
index b5abb439d..888542ec1 100644
--- a/base/tps-tomcat/shared/webapps/tps/selftests.html
+++ b/base/tps-tomcat/shared/webapps/tps/selftests.html
@@ -52,11 +52,11 @@ $(function() {
</th>
</tr>
<tr>
- <td>Self Test ID</td>
- <td>Enabled at Statup</td>
- <td>Critical at Startup</td>
- <td>Enabled on Demand</td>
- <td>Critical on Demand</td>
+ <th>Self Test ID</th>
+ <th>Enabled at Statup</th>
+ <th>Critical at Startup</th>
+ <th>Enabled on Demand</th>
+ <th>Critical on Demand</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/tokens.html b/base/tps-tomcat/shared/webapps/tps/tokens.html
index e8318df9e..695ddf1df 100644
--- a/base/tps-tomcat/shared/webapps/tps/tokens.html
+++ b/base/tps-tomcat/shared/webapps/tps/tokens.html
@@ -53,14 +53,14 @@ $(function() {
</th>
</tr>
<tr>
- <td>Token ID</td>
- <td>User ID</td>
- <td>Status</td>
- <td>Reason</td>
- <td>Applet ID</td>
- <td>Key Info</td>
- <td>Created</td>
- <td>Modified</td>
+ <th>Token ID</th>
+ <th>User ID</th>
+ <th>Status</th>
+ <th>Reason</th>
+ <th>Applet ID</th>
+ <th>Key Info</th>
+ <th>Created</th>
+ <th>Modified</th>
</tr>
</thead>
<tbody>
diff --git a/base/tps-tomcat/shared/webapps/tps/users.html b/base/tps-tomcat/shared/webapps/tps/users.html
index 28ccf5924..fdf7e7418 100644
--- a/base/tps-tomcat/shared/webapps/tps/users.html
+++ b/base/tps-tomcat/shared/webapps/tps/users.html
@@ -52,8 +52,8 @@ $(function() {
</th>
</tr>
<tr>
- <td>User ID</td>
- <td>Full Name</td>
+ <th>User ID</th>
+ <th>Full Name</th>
</tr>
</thead>
<tbody>