search for: dir_open

Displaying 3 results from an estimated 3 matches for "dir_open".

Did you mean: dict_open
2009 Jul 24
2
[PATCH server] add collapsable sections to vm form
...index f232c6c..9ecfe44 100644 --- a/src/public/stylesheets/layout.css +++ b/src/public/stylesheets/layout.css @@ -124,8 +124,14 @@ a { color:#000000; text-decoration: none;} font-size: 130%; } + /* ----- General Effects ----- */ +.clickable {cursor:pointer;} +.open {background:url(../images/dir_open.png) left center no-repeat;} +.closed {background:url(../images/dir_closed.png) left center no-repeat;} + +.hidden {display:none;} /* ----- Right side of Header -------- */ @@ -427,9 +433,10 @@ a { color:#000000; text-decoration: none;} } .form_heading { - font-size:115%; color: #666...
2009 Jun 19
1
[PATCH server] add collapsable sections to vm form
...'</div>'; + $(header).html(content); + $(section).hide('slow'); +}; + +// show the specified section, altering the specified header div with updated title / arrow +function show_section_with_header(section, header, title){ + content = '<img src="/ovirt/images/dir_open.png" /><div>' + title + '</div>'; + $(header).html(content); + $(section).show('slow'); +}; + +// wire up the header to invoke either the show or hide function on click +function toggle_visability_on_click(section, header, title){ + $(header).bind('...
2008 Jul 14
18
[git patches] Ocfs2 and Configfs updates for 2.6.27
I'm running a bit late with the e-mail this time around, but I think that's ok since there really isn't any major new features here - the bulk of the Ocfs2 update is bug fixes, or cleanups. The same goes for configfs. The only two things that could be described as features would be: - Sunil has updated Ocfs2 to provide even more live cluster locking information via debugfs. - Joel