[PATCH 2/5] new file for common style element for all table transforms

Jeffrey Blank blank at eclipse.ncsc.mil
Mon Apr 8 15:31:35 UTC 2013


Signed-off-by: Jeffrey Blank <blank at eclipse.ncsc.mil>
---
 RHEL6/transforms/table-style.xslt |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)
 create mode 100644 RHEL6/transforms/table-style.xslt

diff --git a/RHEL6/transforms/table-style.xslt b/RHEL6/transforms/table-style.xslt
new file mode 100644
index 0000000..b2fcb80
--- /dev/null
+++ b/RHEL6/transforms/table-style.xslt
@@ -0,0 +1,27 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+<!-- This file is used to hold the style element shared by transforms which
+     produce HTML tables -->
+
+<xsl:template name="table-style">
+	<style type="text/css">
+		table
+		{
+			border-collapse:collapse;
+		}
+		table,th, td
+		{
+			border: 1px solid black;
+			vertical-align: top;
+			padding: 3px;
+		}
+		thead
+		{
+			display: table-header-group;
+			font-weight: bold;
+		}
+	</style>
+</xsl:template>
+
+     
+</xsl:stylesheet>
-- 
1.7.1



More information about the scap-security-guide mailing list