about/edit links on left. Better?
authorgfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Sun, 11 Jan 2009 21:55:34 +0000 (21:55 +0000)
committergfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Sun, 11 Jan 2009 21:55:34 +0000 (21:55 +0000)
I'm not sure it is. I want to keep a copy of the css though.

git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@104 6d9bc8c9-1ec2-4278-b937-99fde70a366f

conifer/static/main.css
conifer/templates/components/item.xhtml

index e1b6fa1..6b968c5 100644 (file)
@@ -6,7 +6,7 @@ pre, code { font-family: monospace; }
 body, html { margin: 0; padding: 0; }
 body {  
     background-color: white; 
-    font-size: small;
+    font-size: normal;
 }
 #mainpanel {  background-color: white; padding: 0 12 24 12; }
 
@@ -76,10 +76,19 @@ a:hover {  text-decoration: underline;  }
 }
 .pagetable thead th { font-size: smaller; text-align: left; padding: 2 8; }
 
+
+.itemtree { margin-left: 100; }
+.itemtree .itemtree { margin-left: 0;}
+
 .itemtree li { width: 400; }
-.metalinks { padding-left: 12; color: gray; }
-.metalinks a { color: navy; }
-.metalinks { position: absolute; left: 500; }
+
+.itemtree .metalinks   { padding-left: 12; color: gray; 
+                         position: absolute; left: 0; 
+                        font-size: small;
+                    }
+.itemtree .metalinks a { color: navy; }
+
+.itemadd { margin-left: 100; }
 
 .instructors {
   border: 1px solid #ccc;
index 8771778..28680a8 100644 (file)
   <div py:def="nested_title(item)"
        py:with="hier=item.hierarchy()[:-1]; lastnum=len(hier)"
        class="nestedtitle">
-    <span py:for="n, x in enumerate(hier)"
-        style="margin-left: ${n}em;"><a href="${item_url(x)}">${x.title}</a> &bull; </span>
+    <span py:for="n, x in enumerate(hier)"><a href="${item_url(x)}">${x.title}</a> &bull; </span>
     <h2>${item.title}</h2>
   </div>
 
-  <ul py:def="add_subs(parent=None)">
+  <ul py:def="add_subs(parent=None)" class="itemadd">
     <li>Add a new item...</li>
     <ul py:with="prefix = (not parent) and 'item/0/' or ''">
       <li><a href="${prefix}add?item_type=HEADING">Add subheading</a></li>