add styles for executable/not executable lines in the source code window.
add style for exception trace messages.
color stop (red) and continue (green) messages so they're easy to spot.
This commit is contained in:
rginda%netscape.com 2001-07-03 22:45:13 +00:00
Родитель 8b31800d13
Коммит 432fd7eb95
1 изменённых файлов: 29 добавлений и 2 удалений

Просмотреть файл

@ -1,8 +1,13 @@
body.venkman-body {
body {
background: black;
color: lightgrey;
}
body[mode="inverse"] {
background: white;
color: black;
}
/* links */
a.venkman-link {
color: #7083ff;
@ -14,7 +19,6 @@ a.venkman-link:hover {
text-decoration: underline;
}
#output-table {
width: 100%;
}
@ -39,6 +43,29 @@ a.venkman-link:hover {
margin-right: 5px;
}
.msg-data[msg-type="STOP"]:before {
content: "*";
color: pink;
}
.msg-data[msg-type="STOP"] {
color: red;
}
.msg-data[msg-type="CONT"]:before {
content: "*";
color: lightgreen;
}
.msg-data[msg-type="CONT"] {
color: green;
}
.msg-data[msg-type="ETRACE"]:before {
content: "!";
color: brown;
}
.msg-data[msg-type="ERROR"] {
background: red;
color: white;