Browse Source

HUE-481. Vertical Scrolling in Help doesn't work

Aaron Newton 14 years ago
parent
commit
aeaa44b1af
1 changed files with 11 additions and 9 deletions
  1. 11 9
      apps/help/src/help/templates/display.mako

+ 11 - 9
apps/help/src/help/templates/display.mako

@@ -19,16 +19,18 @@
 </head>
 <body>
   <div class="resizable" data-filters="SplitView">
-    <div class="left_col jframe_padded">
-      <h2>Index</h2>
-      <ul>
-        % for app in apps:
-          <li><a href="${url("help.views.view", app=app.name, path="/")}">${app.nice_name}</a></li>
-        % endfor
-      </ul>
+    <div class="left_col">
+      <div class="jframe_padded">
+        <h2>Index</h2>
+        <ul>
+          % for app in apps:
+            <li><a href="${url("help.views.view", app=app.name, path="/")}">${app.nice_name}</a></li>
+          % endfor
+        </ul>
+      </div>
     </div>
-    <div class="right_col jframe_padded">
-      <div id="contents">${content|n}</div>
+    <div class="right_col">
+      <div class="jframe_padded">${content|n}</div>
     </div>
   </div>
 </body>