f00f851df02dd62be6cbcc0faa909c99326ba5ff
[kismet-logviewer.git] / logviewer / static / css / jquery.kismet.messagebus.css
1 .messagebus {
2     overflow-y: scroll;
3     overflow-x: hidden;
4     padding-bottom: 5px;
5 }
6
7 /* Basic message formatting */
8 .messagebus_message {
9     border-top: 1px solid DarkGrey !important;
10     border-bottom: 1px solid DarkGrey !important;
11     border-left: 5px solid black;
12     margin-bottom: 3px;
13     margin-top: 3px;
14     padding-left: 5px;
15 }
16
17 .messagebus_message:hover {
18     background-color: #CCCCCC;
19 }
20
21 /* Let us use empty divs as a cheap hack for replacing messages */
22 .messagebus_message:empty {
23     display: none;
24 }
25
26 /* Match the first paragraph element and format it for the date */
27 .messagebus_message > p:nth-of-type(1) {
28     font-weight: bold;
29     font-family: monospace;
30     display: inline;
31     margin-right: 5px;
32     padding-left: 5px;
33 }
34
35 /* Different message classes get different side color tags */
36 .messagebus_debug {
37     border-left: 5px solid grey;
38 }
39
40 .messagebus_info {
41     border-left: 5px solid yellow;
42 }
43
44 .messagebus_error {
45     border-left: 5px solid red;
46 }
47
48 .messagebus_alert {
49     border-left: 5px solid red;
50 }
51
52 .messagebus_alert > p:nth-of-type(1) {
53     background-color: #FF5555;
54 }
55
56 .messagebus_fatal {
57     border-left: 5px solid red;
58 }
59
60 .messagebus_alert > p:nth-of-type(1) {
61     background-color: #FF0000;
62 }
63
64