public
Description: A full featured and opinionated blogging solution using Django
Homepage: http://lethain.com/projects/lifeflow/
Clone URL: git://github.com/lethain/lifeflow.git
Improved the CSS situation in the LFE, specifically rendered text (for projects, 
drafts, and entries) is now more reasonable looking.
lethain (author)
Thu Jul 10 02:53:53 -0700 2008
commit  3db4ac97b4fe707eafb3afc9106d431234c95c25
tree    7070f5bb2d1c783a86c7ca1e0a5cda067430f0a1
parent  95d6989673b98dff87dad9aa408fc68de9ce8676
...
1
 
 
 
2
3
4
...
132
133
134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
136
137
...
171
172
173
174
175
176
177
178
179
180
181
182
...
225
226
227
228
 
229
230
231
...
402
403
404
 
 
 
 
405
406
407
...
 
1
2
3
4
5
6
...
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
...
188
189
190
 
 
 
 
 
 
191
192
193
...
236
237
238
 
239
240
241
242
...
413
414
415
416
417
418
419
420
421
422
0
@@ -1,4 +1,6 @@
0
-
0
+pre, code {
0
+    font-family: "Courier New", Courier, monospace;
0
+}
0
 
0
 
0
 body {
0
@@ -132,6 +134,21 @@ div.editing {
0
     overflow: auto;
0
 }
0
 
0
+#render li {
0
+    padding: 0px;
0
+    margin: 0px;
0
+    border: none;
0
+    list-style: "decimal";
0
+}
0
+
0
+#render ul {
0
+    list-style: disc;
0
+}
0
+
0
+#render ol {
0
+    list-style: "decimal";
0
+}
0
+
0
 div.li-mimic {
0
     padding: 10px;
0
     margin: 5px;
0
@@ -171,12 +188,6 @@ textarea.writing {
0
     height: 300px;
0
 }
0
 
0
-
0
-
0
-li {
0
-    list-style: none;
0
-}
0
-
0
 .error-msg p {
0
     width: 100%;
0
     text-align: center;
0
@@ -225,7 +236,7 @@ div.top {
0
     
0
 }
0
 
0
-ul {
0
+.editing ul {
0
     text-decoration: none;
0
 }
0
 
0
@@ -402,6 +413,10 @@ div.author {
0
     width: 75%;
0
 }
0
 
0
+div.author-details {
0
+    padding: 16px;
0
+}
0
+
0
 div.author-picture {
0
     float: right;
0
     margin: 16px;
...
10
11
12
13
14
15
16
17
...
23
24
25
26
27
 
28
29
30
31
32
 
33
34
...
10
11
12
 
 
13
14
15
...
21
22
23
 
 
24
25
26
 
 
 
27
28
29
0
@@ -10,8 +10,6 @@
0
   
0
 </div>
0
 <div id="author-details" class="author-details">
0
-  <ul> 
0
-    <li>
0
     <table>
0
       <tr>
0
   <td>Name</td><td> <input id="author-name" value="{{ author.name }}"></td>
0
@@ -23,11 +21,8 @@
0
   <td>Link</td><td> <input id="author-link" value="{{ author.link }}"></td>
0
       </tr>
0
     </table>
0
-  
0
-    <li>
0
+
0
     <p> A brief biography, written in Markdown. </p>
0
     <textarea id="author-bio">{{ author.bio }}</textarea>
0
-  </li>
0
-  
0
-</ul>
0
+   
0
 </div>
0
\ No newline at end of file
...
64
65
66
67
 
 
 
68
69
70
...
137
138
139
140
141
142
 
143
...
64
65
66
 
67
68
69
70
71
72
...
139
140
141
 
 
142
143
144
0
@@ -64,7 +64,9 @@ var show_editor_help = function() {
0
     <a class="button neutral" id="render-button"> Render </a>
0
     <a class="button negative" id="hide-button" style="display: none;"> Hide Rendering </a>
0
   </div>
0
-  <div id="render" class="render li-mimic" style="display: none;"></div>
0
+</div>
0
+  
0
+<div id="render" class="render li-mimic" style="display: none;"></div>
0
   
0
   
0
 {% if resources %}
0
@@ -137,5 +139,4 @@ var file_selected = function() {
0
       </form>
0
     </div>
0
   </div>
0
-{% endif %}
0
-</div>
0
\ No newline at end of file
0
+{% endif %}
0
\ No newline at end of file

Comments