[java-idp-plugin-mgmt] branch main updated: Apply some basic styles to the status page
Ian Young
ian at iay.org.uk
Thu Jun 20 10:15:25 UTC 2024
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch main
in repository java-idp-plugin-mgmt.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-mgmt.git;a=commit;h=06164e789fbbdafcc6398917d23ce95803b50a0b
The following commit(s) were added to refs/heads/main by this push:
new 06164e7 Apply some basic styles to the status page
06164e7 is described below
commit 06164e789fbbdafcc6398917d23ce95803b50a0b
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Thu Jun 20 11:15:20 2024 +0100
Apply some basic styles to the status page
---
projstatus.css | 37 +++++++++++++++++++++++++++++++++++++
projstatus.xsl | 11 ++++++-----
2 files changed, 43 insertions(+), 5 deletions(-)
diff --git a/projstatus.css b/projstatus.css
new file mode 100644
index 0000000..d358f6d
--- /dev/null
+++ b/projstatus.css
@@ -0,0 +1,37 @@
+
+table {
+ border: 0;
+ border-spacing: 0;
+ margin: 10px 0;
+}
+
+table tr th {
+ background: #757575;
+ background: rgba(0, 0, 0, 0.51);
+ border-bottom-style: none;
+}
+
+table tr th,
+table tr th a,
+table tr th a:hover {
+ color: #FFF;
+ font-weight: bold;
+}
+
+tr td,
+tr th {
+ padding: 4px 9px;
+ border: 1px solid #fff;
+ text-align: left;
+}
+
+tr.odd {
+ background: #e4e4e4;
+ background: rgba(0, 0, 0, 0.105);
+}
+
+tr,
+tr.even {
+ background: #efefef;
+ background: rgba(0, 0, 0, 0.063);
+}
diff --git a/projstatus.xsl b/projstatus.xsl
index fdfe02a..89438b0 100644
--- a/projstatus.xsl
+++ b/projstatus.xsl
@@ -3,9 +3,10 @@
<html>
<head>
<title>Status of Identity Provider and Plugin Projects</title>
+ <link rel="stylesheet" href="projstatus.css"/>
</head>
<body>
- <h3>Status of Identity Provider and Plugin Projects</h3>
+ <h1>Status of Identity Provider and Plugin Projects</h1>
<table border="1">
<tr>
@@ -14,11 +15,12 @@
<th>Previous Snapshot</th>
<th>Current Stable</th>
<th>Current Snapshot</th>
- <th>Status</th></tr>
- <xsl:apply-templates/>
+ <th>Status</th>
+ </tr>
+ <xsl:apply-templates/>
</table>
- <h3>Status Key for Snapshots</h3>
+ <h2>Status Key for Snapshots</h2>
<dl>
<dt>Stable</dt>
<dd>No material changes since last release other than bug fixes, if any.</dd>
@@ -42,4 +44,3 @@
</tr>
</xsl:template>
</xsl:stylesheet>
-
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list