- Timestamp:
- Dec 28, 2009, 2:15:30 PM (15 years ago)
- Location:
- trunk/packages/invirt-web/code
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-web/code/static/style.css
r2737 r2804 109 109 display: inline; 110 110 } 111 112 /* styling for the results box */ 113 .result { 114 background-color: #e8e8ff; 115 border: 1px black solid; 116 padding: 1ex; 117 } -
trunk/packages/invirt-web/code/templates/skeleton.mako
r2737 r2804 67 67 % endif 68 68 69 <div id="result" class="result">70 % if result:71 ${result}72 % endif73 </div>74 75 69 % if not simple: 76 70 <h1>${self.title()} — XVM</h1> 77 71 % endif 72 73 % if result: 74 <div id="result" class="result"> 75 ${result} 76 </div> 77 % endif 78 78 79 ${next.body()} 79 80 % if not simple:
Note: See TracChangeset
for help on using the changeset viewer.