summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--design/sass/_global.scss3
-rw-r--r--design/sass/_writing_details.scss20
-rw-r--r--design/templates/comments/list.html3
3 files changed, 25 insertions, 1 deletions
diff --git a/design/sass/_global.scss b/design/sass/_global.scss
index c65c21a..dcc1c29 100644
--- a/design/sass/_global.scss
+++ b/design/sass/_global.scss
@@ -80,6 +80,9 @@ h1 {
color: white;
}
+.alert {
+ color: red !important;
+}
//************** other global classes ************************
.bl {
diff --git a/design/sass/_writing_details.scss b/design/sass/_writing_details.scss
index b327b19..41bc611 100644
--- a/design/sass/_writing_details.scss
+++ b/design/sass/_writing_details.scss
@@ -73,6 +73,26 @@
}
}
+/* special case for debi's master list*/
+.list-debi {
+ @include constrain_narrow();
+ text-align: left;
+ > li {
+ font-weight: bold;
+ margin: .25em 0 .25em 0;
+ }
+ li ul li {
+ font-weight: normal;
+ margin: .25em 0 .25em .5em;
+ &:before {
+ content: "\2022";
+ display: inline-block;
+ margin-right: 10px;
+ margin-top: 2px;
+ }
+ }
+}
+
//### FOOTNOTES ###
.footnote {
@include constrain_narrow();
diff --git a/design/templates/comments/list.html b/design/templates/comments/list.html
index 378145e..569a60a 100644
--- a/design/templates/comments/list.html
+++ b/design/templates/comments/list.html
@@ -1,4 +1,5 @@
{% load gravatar_local %}
+{% load typogrify_tags %}
{% load markdown%}
{% load bleach_tags %}
{% load nofollow %}
@@ -15,7 +16,7 @@
</div>
<div class="comment--body">
- {{comment.comment|removetags:"p"|markdown|bleach|nofollow|safe}}
+ {{comment.comment|removetags:"p"|markdown|bleach|nofollow|safe|smartypants}}
</div>
</div>
{% endfor %}