witten
/
luminotes
Archived
1
0
Fork 0

* Created different sizes of toolbar buttons.

* Made the toolbar auto-resize based on browser window size.
This commit is contained in:
Dan Helfman 2008-05-12 23:27:42 +00:00
parent 5b5f971881
commit 5d38e917f6
161 changed files with 161 additions and 80 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
1.3.24: May 12, 2008
* Created different sizes of toolbar buttons.
* Made the toolbar auto-resize based on browser window size.
1.3.23: May 9, 2008
* Fixed tools/release.sh to include an empty session directory in the
produced tarball. Without a session directory, installing and running

View File

@ -1,55 +1,61 @@
#new_note_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/new_note_button.png);
background-image: url(/static/images/toolbar/new_note_button.png);
}
#link_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/link_button.png);
background-image: url(/static/images/toolbar/link_button.png);
}
#attach_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/attach_button.png);
background-image: url(/static/images/toolbar/attach_button.png);
}
#bold_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bold_button.png);
background-image: url(/static/images/toolbar/bold_button.png);
}
#italic_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/italic_button.png);
background-image: url(/static/images/toolbar/italic_button.png);
}
#underline_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/underline_button.png);
background-image: url(/static/images/toolbar/underline_button.png);
}
#title_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/title_button.png);
background-image: url(/static/images/toolbar/title_button.png);
}
#bullet_list_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bullet_list_button.png);
background-image: url(/static/images/toolbar/bullet_list_button.png);
}
#numbered_list_button_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/numbered_list_button.png);
background-image: url(/static/images/toolbar/numbered_list_button.png);
}
#note_icon_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/note_icon.png);
}
.hook_area {

View File

@ -53,181 +53,181 @@ img {
}
#toolbar div {
margin-bottom: 0.25em;
margin-bottom: 0.1em;
}
#new_note_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/new_note_button_hover.png);
background-image: url(/static/images/toolbar/new_note_button_hover.png);
}
#link_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/link_button_hover.png);
background-image: url(/static/images/toolbar/link_button_hover.png);
}
#attach_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/attach_button_hover.png);
background-image: url(/static/images/toolbar/attach_button_hover.png);
}
#bold_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bold_button_hover.png);
background-image: url(/static/images/toolbar/bold_button_hover.png);
}
#italic_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/italic_button_hover.png);
background-image: url(/static/images/toolbar/italic_button_hover.png);
}
#underline_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/underline_button_hover.png);
background-image: url(/static/images/toolbar/underline_button_hover.png);
}
#title_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/title_button_hover.png);
background-image: url(/static/images/toolbar/title_button_hover.png);
}
#bullet_list_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bullet_list_button_hover.png);
background-image: url(/static/images/toolbar/bullet_list_button_hover.png);
}
#numbered_list_button_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/numbered_list_button_hover.png);
background-image: url(/static/images/toolbar/numbered_list_button_hover.png);
}
#new_note_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/new_note_button_down_hover.png);
background-image: url(/static/images/toolbar/new_note_button_down_hover.png);
}
#link_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/link_button_down_hover.png);
background-image: url(/static/images/toolbar/link_button_down_hover.png);
}
#attach_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/attach_button_down_hover.png);
background-image: url(/static/images/toolbar/attach_button_down_hover.png);
}
#bold_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bold_button_down_hover.png);
background-image: url(/static/images/toolbar/bold_button_down_hover.png);
}
#italic_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/italic_button_down_hover.png);
background-image: url(/static/images/toolbar/italic_button_down_hover.png);
}
#underline_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/underline_button_down_hover.png);
background-image: url(/static/images/toolbar/underline_button_down_hover.png);
}
#title_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/title_button_down_hover.png);
background-image: url(/static/images/toolbar/title_button_down_hover.png);
}
#bullet_list_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bullet_list_button_down_hover.png);
background-image: url(/static/images/toolbar/bullet_list_button_down_hover.png);
}
#numbered_list_button_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/numbered_list_button_down_hover.png);
background-image: url(/static/images/toolbar/numbered_list_button_down_hover.png);
}
#new_note_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/new_note_button_down.png);
background-image: url(/static/images/toolbar/new_note_button_down.png);
}
#link_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/link_button_down.png);
background-image: url(/static/images/toolbar/link_button_down.png);
}
#attach_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/attach_button_down.png);
background-image: url(/static/images/toolbar/attach_button_down.png);
}
#bold_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bold_button_down.png);
background-image: url(/static/images/toolbar/bold_button_down.png);
}
#italic_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/italic_button_down.png);
background-image: url(/static/images/toolbar/italic_button_down.png);
}
#underline_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/underline_button_down.png);
background-image: url(/static/images/toolbar/underline_button_down.png);
}
#title_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/title_button_down.png);
background-image: url(/static/images/toolbar/title_button_down.png);
}
#bullet_list_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/bullet_list_button_down.png);
background-image: url(/static/images/toolbar/bullet_list_button_down.png);
}
#numbered_list_button_down_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/numbered_list_button_down.png);
background-image: url(/static/images/toolbar/numbered_list_button_down.png);
}
#current_notebook_up_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/arrow_up_hover.png);
background-image: url(/static/images/toolbar/arrow_up_hover.png);
}
#current_notebook_down_hover_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/arrow_down_hover.png);
background-image: url(/static/images/toolbar/arrow_down_hover.png);
}
#tree_arrow_hover_preload {
@ -248,12 +248,6 @@ img {
background-image: url(/static/images/tree_arrow_down_hover.png);
}
#note_icon_preload {
height: 0;
overflow: hidden;
background-image: url(/static/images/note_icon.png);
}
#note_tree_area {
position: fixed;
width: 17em;

View File

@ -1,9 +1,14 @@
Button dimensions are 40x40 pixels.
For the large toolbar, button dimensions are 40x40 pixels. Button fonts are
Bitstream Vera Sans (regular, bold, and mono oblique). Most buttons are at 22
pt. The link button is at 12 pt. The list buttons are at 10 pt with a -4 pixel
line spacing. Down (pressed) buttons have their text offset two pixels down
and two pixels to the right.
For the small version of the toolbar, button dimensions are 20x20 pixels.
Button fonts are Bitstream Vera Sans (regular, bold, and mono oblique). Most
buttons are at 22 pt. The link button is at 12 pt. The list buttons are at 10
pt with a -4 pixel line spacing. Down (pressed) buttons have their text offset
two pixels down and two pixels to the right.
buttons are at 14 pt. The link button is at 8 pt. The list buttons are at 6
pt with a -3 pixel line spacing. Down (pressed) buttons have their text offset
by one pixel down and one pixel right.
To make the white glowing effect (which isn't present on any buttons
currently), start with black text on a transparent background in the Gimp.

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 714 B

After

Width:  |  Height:  |  Size: 714 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 716 B

After

Width:  |  Height:  |  Size: 716 B

View File

Before

Width:  |  Height:  |  Size: 502 B

After

Width:  |  Height:  |  Size: 502 B

View File

Before

Width:  |  Height:  |  Size: 950 B

After

Width:  |  Height:  |  Size: 950 B

View File

Before

Width:  |  Height:  |  Size: 913 B

After

Width:  |  Height:  |  Size: 913 B

View File

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 496 B

View File

Before

Width:  |  Height:  |  Size: 634 B

After

Width:  |  Height:  |  Size: 634 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 634 B

After

Width:  |  Height:  |  Size: 634 B

View File

Before

Width:  |  Height:  |  Size: 673 B

After

Width:  |  Height:  |  Size: 673 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 689 B

After

Width:  |  Height:  |  Size: 689 B

View File

Before

Width:  |  Height:  |  Size: 452 B

After

Width:  |  Height:  |  Size: 452 B

View File

Before

Width:  |  Height:  |  Size: 880 B

After

Width:  |  Height:  |  Size: 880 B

View File

Before

Width:  |  Height:  |  Size: 853 B

After

Width:  |  Height:  |  Size: 853 B

View File

Before

Width:  |  Height:  |  Size: 451 B

After

Width:  |  Height:  |  Size: 451 B

View File

Before

Width:  |  Height:  |  Size: 750 B

After

Width:  |  Height:  |  Size: 750 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 751 B

After

Width:  |  Height:  |  Size: 751 B

View File

Before

Width:  |  Height:  |  Size: 743 B

After

Width:  |  Height:  |  Size: 743 B

View File

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 656 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 641 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 618 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 362 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 460 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 601 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 587 B

Some files were not shown because too many files have changed in this diff Show More