Fixes js problems in IE 7+8. Hides broken tree view in those browsers and adds a message to the footer.

This commit is contained in:
Lars Jung 2012-02-29 16:34:24 +01:00
parent 13693a4f3b
commit d4c80612dc
6 changed files with 516 additions and 5 deletions

View file

@ -42,6 +42,18 @@ body > footer {
color: #c33;
margin-left: 16px;
}
.oldBrowser {
display: none;
color: #c33;
margin-left: 16px;
a, a:active, a:visited {
color: #c33;
text-decoration: underline;
&:hover {
color: #e80;
}
}
}
.status {
.sep {
display: inline-block;

View file

@ -56,3 +56,11 @@ html.h5ai-php {
}
}
}
html.oldie {
.oldBrowser {
display: inline;
}
#tree {
display: none !important;
}
}