-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsyslog.css
More file actions
120 lines (104 loc) · 3.49 KB
/
syslog.css
File metadata and controls
120 lines (104 loc) · 3.49 KB
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
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2025 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
body {
font-family:Verdana,Arial,Helvetica,sans-serif;
}
table {
width: 100%;
border: 1px solid rgba(138,179,105,1);
border-spacing: 0;
border-collapse: collapse;
}
th {
background: rgba(138,179,105,1);
background: -moz-linear-gradient(top, rgba(138,179,105,1) 0%, rgba(63,117,15,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(138,179,105,1)), color-stop(100%, rgba(63,117,15,1)));
background: -webkit-linear-gradient(top, rgba(138,179,105,1) 0%, rgba(63,117,15,1) 100%);
background: -o-linear-gradient(top, rgba(138,179,105,1) 0%, rgba(63,117,15,1) 100%);
background: -ms-linear-gradient(top, rgba(138,179,105,1) 0%, rgba(63,117,15,1) 100%);
background: linear-gradient(to bottom, rgba(138,179,105,1) 0%, rgba(63,117,15,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8ab369', endColorstr='#3f750f', GradientType=0 );
color: snow;
vertical-align: bottom;
text-align: left;
font-size: 10px;
}
tr.odd {
background-color: #F5F5F5;
}
tr.even {
background-color: snow;
}
td.host {
color: black;
text-align: left;
font-size: 10px;
width: 10%;
white-space: nowrap;
vertical-align: top;
padding: 2px;
}
td.date {
color: black;
text-align: left;
font-size: 10px;
width: 10%;
white-space: nowrap;
vertical-align: top;
padding: 2px;
}
td.message {
color: black;
text-align: left;
font-size: 10px;
width: 90%;
vertical-align: top;
padding: 2px;
}
h1 {
text-align:center;
font-size:16px;
}
p {
text-align:left;
font-size:12px;
}
/* Syslog message grouping styles */
.syslog-group-toggle {
transition: transform 0.2s ease;
color: #337ab7;
display: inline-block;
}
.syslog-group-toggle:hover {
color: #23527c;
}
.syslog-group-toggle.fa-chevron-up {
transform: rotate(0deg);
}
.syslog-group-toggle.fa-chevron-down {
transform: rotate(0deg);
}
.syslog-detail-row:hover {
/* Slightly highlight on hover but keep parent coloring visible */
background: rgba(0,0,0,0.02) !important;
}