Signed-off-by: Jeffrey Blank <[email protected]> --- 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 _______________________________________________ scap-security-guide mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/scap-security-guide
