witten
/
luminotes
Archived
1
0
Fork 0

Made recent IE 6 and 7 CSS changes slightly better. (IE 7 no longer flickers on resize.)

Also fixed persistent annoying problem of notebook header name being off-center in certain conditions.
This commit is contained in:
Dan Helfman 2008-07-30 19:43:24 -07:00
parent a6bbf04dad
commit 3950b21abc
4 changed files with 12 additions and 9 deletions

4
NEWS
View File

@ -1,7 +1,9 @@
1.4.20:
1.4.20: July 30, 2008:
* By popular demand, added a "save" button that becomes grayed out when
everything is saved.
* Now displaying "saving" status text in addition to "loading".
* Made both left and right navigation areas of the page have a fixed
position, so they stay in one spot even when you scroll your notes.
1.4.19: July 29, 2008:
* When scrolling to and then highlighting a note, do so serially instead of

View File

@ -4,7 +4,7 @@
#left_area {
width: auto;
margin-left: expression( eval( document.all.everything_area && ( -document.all.everything_area.offsetLeft ) || 0 ) );
margin-left: expression( eval( document.all.everything_area && -document.all.everything_area.offsetLeft || 0 ) );
}
#note_tree_area {
@ -24,7 +24,7 @@
#link_area {
position: absolute;
width: expression( eval( document.all.everything_area && ( document.all.everything_area.offsetLeft ) || 0 ) );
width: expression( eval( document.all.everything_area && document.all.everything_area.offsetLeft || 0 ) );
top: expression( eval( document.compatMode && document.compatMode == 'CSS1Compat' ) ? documentElement.scrollTop + 30 : document.body.scrollTop + 30 );
}

View File

@ -10,13 +10,14 @@
#left_area {
width: auto;
margin-left: expression( eval( document.all.everything_area && -document.all.everything_area.offsetLeft || 0 ) );
}
#note_tree_area {
width: auto;
}
#right_area {
width: auto;
}
#clutter_link {
top: 1.25em;
margin-left: 1em;
margin-left: auto;
}

View File

@ -421,7 +421,7 @@ h1 {
#notebook_header_area {
padding: 0.2em;
margin-top: 1.5em;
width: 45em;
width: 100%;
}
#notebook_header_name:hover {