witten
/
luminotes
Archived
1
0
Fork 0

Fixed an Internet Explorer 8 bug in which the toolbar was positioned incorrectly.

This commit is contained in:
Dan Helfman 2009-07-12 14:04:24 -07:00
parent 81e3ca7ab2
commit 9a284e7b76
3 changed files with 41 additions and 1 deletions

2
NEWS
View File

@ -5,6 +5,8 @@
typed text after the link does not become linked itself.
* Fixed a Firefox 3.5 bug in which bold mode (or italics mode) would
inexplicably end after typing a few characters.
* Fixed an Internet Explorer 8 bug in which the toolbar was positioned
incorrectly.
1.6.14: June 14, 2009
* Fixed a bug in which some printed or exported notes appeared in

38
static/css/ie8.css Normal file
View File

@ -0,0 +1,38 @@
#note_tree_area_holder {
overflow: auto;
height: expression( eval( documentElement.offsetHeight - 100 ) );
}
#link_area_holder {
overflow: auto;
height: expression( eval( documentElement.offsetHeight - 100 ) );
}
#left_area {
width: auto;
margin-left: auto;
}
#link_area {
width: 20%;
margin-left: -20%;
}
#right_area {
width: auto;
margin-left: auto;
}
.note_frame {
margin-bottom: 1em;
}
.static_note_contents a[target ^= "_new"] {
background: none;
padding: 0;
}
.note_grabber {
position: relative;
left: 4px;
}

View File

@ -21,7 +21,7 @@ class Page( Html ):
Title( title and u"%s: %s" % ( app_name, title ) or app_name ),
"""<!--[if IE 6]><link href="/static/css/ie6.css?%s" type="text/css" rel="stylesheet"></link><![endif]-->""" % VERSION,
"""<!--[if IE 7]><link href="/static/css/ie7.css?%s" type="text/css" rel="stylesheet"></link><![endif]-->""" % VERSION,
"""<!--[if IE 8]><link href="/static/css/ie7.css?%s" type="text/css" rel="stylesheet"></link><![endif]-->""" % VERSION,
"""<!--[if IE 8]><link href="/static/css/ie8.css?%s" type="text/css" rel="stylesheet"></link><![endif]-->""" % VERSION,
),
Body(
Div(