Changeset 4651
- Timestamp:
- 02/05/08 20:19:02 (1 year ago)
- Location:
- trunk/plugins/treeview
- Files:
-
- 1 removed
- 4 modified
-
changelog.txt (modified) (1 diff)
-
demo/index.html (modified) (1 diff)
-
jquery.treeview.css (modified) (2 diffs)
-
red-treeview.css (deleted)
-
todo (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/treeview/changelog.txt
r4364 r4651 13 13 * Improved location persistence by making it case-insensitive 14 14 * Improved swapClass and replaceClass plugin implementations 15 * Added folder-closed.gif to filetree example 15 16 16 17 1.3 -
trunk/plugins/treeview/demo/index.html
r4646 r4651 7 7 8 8 <link rel="stylesheet" href="../jquery.treeview.css" /> 9 <link rel="stylesheet" href="../red-treeview.css" />10 9 <link rel="stylesheet" href="screen.css" /> 11 10 -
trunk/plugins/treeview/jquery.treeview.css
r4647 r4651 38 38 39 39 .treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; } 40 .treeview li.collapsable, .treeview li.expandable { background-position: 0 - 26px; }40 .treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; } 41 41 42 42 .treeview .expandable-hitarea { background-position: -80px -3px; } 43 43 44 .treeview li.last { background-position: 0 -1 616px }44 .treeview li.last { background-position: 0 -1766px } 45 45 .treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); } 46 46 .treeview li.lastCollapsable { background-position: 0 -111px } … … 59 59 60 60 .filetree li { padding: 3px 0 2px 16px; } 61 .filetree span.folder, .filetree span.file { padding -left: 16px; display: block; height: 15px; }61 .filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; } 62 62 .filetree span.folder { background: url(images/folder.gif) 0 0 no-repeat; } 63 .filetree li.expandable span.folder { background: url(images/folder-closed.gif) 0 0 no-repeat; } 63 64 .filetree span.file { background: url(images/file.gif) 0 0 no-repeat; } -
trunk/plugins/treeview/todo
r4647 r4651 1 * adjust css sprite to handle large list items (eg. caused by large font-size or multilines)2 3 1 * lazy-loading: render the complete tree, but only apply hitzones and hiding of children to the first level on load 4 2
