witten
/
luminotes
Archived
1
0
Fork 0

UI and font size changes.

This commit is contained in:
Dan Helfman 2008-04-29 20:53:39 +00:00
parent 45fafeeb19
commit 53bc23f374
5 changed files with 13 additions and 1 deletions

3
NEWS
View File

@ -1,3 +1,6 @@
1.3.7: April 29, 2008
* Several minor font size and other UI changes.
1.3.6: April 28, 2008
* Can now click "more" link to display more than ten "recent updates".

View File

@ -109,3 +109,7 @@ ol li {
margin-bottom: 0.5em;
border: 1px solid #999999;
}
.search_results_summary {
font-size: 82%;
}

View File

@ -741,6 +741,10 @@ img {
font-weight: normal;
}
#note_tree_instructions {
line-height: 140%;
}
.new_feature_text {
font-size: 90%;
font-weight: bold;

View File

@ -1364,6 +1364,7 @@ Wiki.prototype.display_search_results = function ( result ) {
}
var summary_span = createDOM( "span" );
summary_span.setAttribute( "class", "search_results_summary" );
summary_span.innerHTML = summary;
appendChildNodes( list,

View File

@ -28,7 +28,7 @@ class Note_tree_area( Div ):
Tr( Td(
( notebook.name != u"trash" ) and u'To add a note here, click the "options" tab on a note, then "show on startup".' or None,
id = "note_tree_instructions",
class_ = u"small_text link_area_item" + ( ( len( root_notes ) > 0 ) and u" undisplayed" or u"" ),
class_ = u"link_area_item" + ( ( len( root_notes ) > 0 ) and u" undisplayed" or u"" ),
) ) or None,
tree_id = "note_tree_root_table",
),