Changeset 1653
- Timestamp:
- 12/05/06 19:36:34 (2 years ago)
- Files:
-
- revtreeplugin/0.10/revtree/htdocs/css/revtree.css (modified) (2 diffs)
- revtreeplugin/0.10/revtree/templates/revtree.cs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
revtreeplugin/0.10/revtree/htdocs/css/revtree.css
r1633 r1653 2 2 margin-top: 2em; 3 3 } 4 5 4 div.revtree .tip { 6 5 font: 10px/12px Arial,Helvetica,sans-serif; … … 26 25 background-color: #fcc; 27 26 } 27 28 div.revprops { 29 padding-left: 2ex; 30 padding-right: 2ex; 31 margin-left: 1ex; 32 white-space: nowrap; 33 position: relative; 34 float: left; 35 border-right: solid 1px #333; 36 } 37 38 div#treestyle div { 39 display: block; 40 } 41 div#options { 42 white-space: normal; 43 width: 12ex; 44 } 45 div#options label { 46 margin=top: 0; 47 padding-left: 3ex; 48 } 49 50 div#update { 51 border-right: none; 52 } revtreeplugin/0.10/revtree/templates/revtree.cs
r1652 r1653 23 23 <form id="prefs" method="get" action=""> 24 24 <div> 25 <ul class="nav"> 26 <li> 25 <div class="revprops"> 27 26 <fieldset id="properties"> 28 27 <legend>Filters</legend> … … 42 41 </div> 43 42 </fieldset> 44 </ li>43 </div> 45 44 46 < li>45 <div class="revprops"> 47 46 <fieldset id="limits"> 48 47 <legend>Revisions</legend> … … 74 73 </div> 75 74 </fieldset> 76 </ li>75 </div> 77 76 78 < li>79 <fieldset id="treestyle">77 <div class="revprops" id="treestyle"> 78 <fieldset> 80 79 <legend>Style</legend> 81 80 <div class="field"> 82 <input type="radio" id="compact" name="treestyle" value="compact" <?cs 81 <div> 82 <input type="radio" id="compact" name="treestyle" value="compact" <?cs 83 83 if:revtree.treestyle == "compact" ?> checked="checked"<?cs /if ?>/> 84 84 <label for="compact">Compact</label> 85 </div> 86 <div> 85 87 <input type="radio" id="timeline" name="treestyle" value="timeline" <?cs 86 88 if:revtree.treestyle == "timeline" ?> checked="checked"<?cs /if ?>/> 87 89 <label for="compact">Timeline</label> 90 </div> 88 91 </div> 89 </ li>92 </div> 90 93 91 < li>94 <div class="revprops" id="options"> 92 95 <fieldset id="options"> 93 96 <legend>Options</legend> … … 100 103 </div> 101 104 </fieldset> 102 </ li>105 </div> 103 106 104 < li>107 <div class="revprops" id="update"> 105 108 <div class="buttons"> 106 109 <input type="submit" value="Update"/> 107 110 </div> 108 </li> 109 </ul> 111 </div> 110 112 </div> 111 113 </form>
