/usr/share/setools/3.3/seaudit-report.css is in setools-gui 3.3.8-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | # seaudit-report.css
#
# This is a default stylesheet template used to format an HTML report
# generated by the seaudit-report tool.
#
# There are two ways of configuring this style sheet:
#
# 1. External Style Sheet:
# Specify an external stylesheet to link to the HTML report using a
# <link> tag, as follows:
# <link rel="stylesheet" type="text/css" href="mystyle.css">
# The seaudit-report tool will insert the <link> tag you define
# within the <head> section of the generated HTML report.
#
# 2. Internal Style Sheet:
# Specify internal style tags for the HTML report using the <style>
# tag. An example can be:
# <style type="text/css">
# body {background-color: red}
# p {margin-left: 20px}
# </style>
# The seaudit-report tool will insert the <style> tag you define
# within the head section of the generated HTML report.
#
# The following is a list of defined HTML tags and their class selectors
# that can be used:
#
# HTML Tag Class Selector(s)
# -------- -----------------
# <h1> report_title
#
# <h2> standard_section_title, custom_section_title
#
# <font> message_count_label, stats_label, message_date,
# host_name, syscall_timestamp, avc_type,
# src_context, tgt_context, obj_class
#
# <b> report_date, message_count, stats_count
#
# See the default (internal) style sheet format below for an example.s
body
{
font-size: 82%;
color:#000000;
background-color:white;
margin:0px;
}
h1.report_title
{
margin-top:0px;
margin-bottom:5px;
font-size:110%;
padding-top:0px;
padding-bottom:1px;
padding-left:4px;
color:#ffffff;
text-align:left;
background-color:#808080;
}
h2.standard_section_title
{
margin-top:0px;
margin-bottom:5px;
font-size:100%;
padding-top:0px;
padding-bottom:1px;
padding-left:0px;
color:black;
background-color:transparent;
}
h2.custom_section_title
{
margin-top:0px;
margin-bottom:5px;
font-size:100%;
padding-top:0px;
padding-bottom:1px;
padding-left:0px;
color:black;
background-color:transparent;
}
font.message_count_label
{
color: #000000;
background-color:transparent;
}
b.message_count
{
color: #000000;
background-color:transparent;
}
font.stats_label
{
color: #000000;
background-color:transparent;
}
b.stats_count
{
color: #000000;
background-color:transparent;
}
b.report_date
{
color: #000000;
background-color:transparent;
}
font.message_date
{
color: black;
background-color:transparent;
position:relative
}
font.host_name
{
color: #000000;
background-color:transparent;
}
font.syscall_timestamp
{
color: #000000;
background-color:transparent;
}
font.avc_deny
{
color:red;
background-color:transparent;
}
font.avc_grant
{
color:green;
background-color:transparent;
}
font.exe
{
color: #000000;
background-color:transparent;
}
font.path
{
color: blue;
background-color:transparent;
}
font.src_context
{
color:black;
background-color:transparent;
font-weight: bold
}
font.tgt_context
{
color:black;
background-color:transparent;
font-weight: bold
}
font.obj_class
{
color: #000000;
background-color:transparent;
}
|