2 --messagebus-debug-color: grey;
3 --messagebus-info-color: yellow;
4 --messagebus-alert-color: #FF0000;
8 --messagebus-alert-color: #960000;
17 /* Basic message formatting */
19 border-top: 1px solid DarkGrey !important;
20 border-bottom: 1px solid DarkGrey !important;
21 border-left: 5px solid black;
25 background-color: transparent;
28 .messagebus_message:hover {
29 background-color: #CCCCCC;
32 /* Let us use empty divs as a cheap hack for replacing messages */
33 .messagebus_message:empty {
37 /* Match the first paragraph element and format it for the date */
38 .messagebus_message > p:nth-of-type(1) {
40 font-family: monospace;
46 /* Different message classes get different side color tags */
48 border-left: 5px solid grey;
52 border-left: 5px solid yellow;
56 border-left: 5px solid red;
60 border-left: 5px solid red;
63 .messagebus_alert > p:nth-of-type(1) {
64 background-color: #FF5555;
68 border-left: 5px solid red;
71 .messagebus_alert > p:nth-of-type(1) {
72 background-color: var(--messagebus-alert-color);