Changeset 744 for trunk/templates
- Timestamp:
- 08/29/16 16:16:13 (8 years ago)
- Location:
- trunk/templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/dns.css
r731 r744 293 293 font-size: 1.2em; 294 294 } 295 296 /* Pure CSS "click to show" widget, adapted from the group tree CSS */ 297 .collapsible li > input + * { 298 display: none; 299 } 300 /* when the input is checked, show the content div */ 301 .collapsible li > input:checked + * { 302 display: block; 303 } 304 /* hide the checkbox */ 305 .nocheckbox li > input { 306 display: none; 307 margin: 0em; 308 padding: 0px; 309 } 310 /* mostly just making the input label clickable */ 311 .collapsible label { 312 cursor: pointer; 313 display: inline; 314 margin: 0em; 315 padding: 0px; 316 padding-left: 10px; 317 } 318 /* be nice if we could make this work without the HTML list structure... */ 319 .notalist { 320 list-style: none; 321 margin: 0; 322 padding: 1px; 323 } 324 -
trunk/templates/log.tmpl
r737 r744 53 53 NAME=sortby>&order=<TMPL_VAR NAME=order>&id=<TMPL_VAR 54 54 NAME=rdns_id>&ltype=rdns"><TMPL_VAR NAME=revzone></a></td> 55 <td><TMPL_VAR NAME=logentry></td> 55 <TMPL_IF childentries> 56 <td> 57 <ul class="collapsible nocheckbox notalist"> 58 <li class="notalist"> 59 <label for="childlist<TMPL_VAR NAME=logparent>"><TMPL_VAR NAME=logentry> (<img src="<TMPL_VAR 60 NAME=webpath>/images/tree_open.png" />Click for details)</label> 61 <input type="checkbox" id="childlist<TMPL_VAR NAME=logparent>" /> 62 <ul class="notalist"> 63 <li class="notalist"><TMPL_LOOP NAME=childentries> 64 <TMPL_VAR NAME=entry><TMPL_UNLESS __last__><br /></TMPL_UNLESS></TMPL_LOOP> 65 </li> 66 </ul> 67 </li> 68 </ul> 69 <TMPL_ELSE> 70 <td><TMPL_VAR NAME=logentry> 71 </TMPL_IF> 72 </td> 56 73 <td><TMPL_VAR NAME=logtime></td> 57 74 </tr>
Note:
See TracChangeset
for help on using the changeset viewer.