File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -226,6 +226,7 @@ div.about_content { text-align: left; }
226226.boxbody input { margin-left : 0 ; vertical-align : top; }
227227# options li { margin-bottom : 0.8em ; }
228228.seriescolor { float : right; margin-top : 2px ; height : 13px ; width : 14px ; }
229+ a .togglefold { font-size : normal; color : # 000000 ; }
229230a .checkall , a .uncheckall { font-size : small; color : # AAAAAA ; }
230231
231232p .errormessage { line-height : 10em ; margin-bottom : 10em ; }
Original file line number Diff line number Diff line change @@ -43,4 +43,12 @@ $(function() {
4343 return false ;
4444 } ) ;
4545 } ) ;
46+
47+ $ ( '.togglefold' ) . each ( function ( ) {
48+ var lis = $ ( this ) . parent ( ) . children ( "li" ) ;
49+ $ ( this ) . click ( function ( ) {
50+ lis . slideToggle ( ) ;
51+ return false ;
52+ } ) ;
53+ } ) ;
4654} ) ;
Original file line number Diff line number Diff line change 2828 < div class ="boxhead "> < h2 > Executables</ h2 > </ div >
2929 < div class ="boxbody ">
3030 {% for proj, executable in executables.items %}
31- < ul > {{ proj }} < a href ="# " class ="checkall "> (All</ a > , < a href ="# " class ="uncheckall "> None)</ a >
31+ < ul > < a href =" # " class =" togglefold " > {{ proj }}</ a > < a href ="# " class ="checkall "> (All</ a > , < a href ="# " class ="uncheckall "> None)</ a >
3232 {% for exe in executable %}
3333 < li title ="{{ exe.executable }} - {{ exe.revision }} ">
3434 < input id ="exe_{{ exe.key }} " type ="checkbox " name ="executables " value ="{{ exe.key }} " />
4141 < div class ="boxhead "> < h2 > Benchmarks</ h2 > </ div >
4242 < div class ="boxbody ">
4343 {% for key,benchlist in benchmarks.items %}
44- < ul > {{ key }} < a href ="# " class ="checkall "> (All</ a > , < a href ="# " class ="uncheckall "> None)</ a >
44+ < ul > < a href =" # " class =" togglefold " > {{ key }}</ a > < a href ="# " class ="checkall "> (All</ a > , < a href ="# " class ="uncheckall "> None)</ a >
4545 {% for bench in benchlist|dictsort:"name" %}
4646 < li title ="{{ bench.description }} ">
4747 < input id ="benchmark_{{ bench.id }} " type ="checkbox " name ="benchmarks " value ="{{ bench.id }} " />
You can’t perform that action at this time.
0 commit comments