@@ -1,7 +1,8 @@ | |||||
Version 0.8.4c22 | Version 0.8.4c22 | ||||
============================================================ | ============================================================ | ||||
* Configuration now gets reloaded when server regenerates (Issue #70) | |||||
* Bug Fix: Configuration now gets reloaded when server regenerates (Issue #70) | |||||
* Bug Fix: Added styles for codebox (Issue #69) | |||||
Version 0.8.4c21 | Version 0.8.4c21 | ||||
============================================================ | ============================================================ | ||||
@@ -442,3 +442,30 @@ a.backlink:hover, a.prev:hover, a.next:hover{ | |||||
float: right; | float: right; | ||||
margin-bottom:0; | margin-bottom:0; | ||||
} | } | ||||
.codebox { | |||||
margin-top: 8px; | |||||
margin-bottom: 12px; | |||||
} | |||||
.code { | |||||
position: relative; | |||||
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); | |||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); | |||||
-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); | |||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); | |||||
background-color: #F0F3F3; | |||||
} | |||||
.code figcaption { | |||||
font-size: 10px; | |||||
position: absolute; | |||||
bottom: 3px; | |||||
right: 12px; | |||||
color: rgba(0, 0, 0, 0.5); | |||||
} | |||||
.highlight pre { | |||||
font-size: 12px; | |||||
padding: 16px 12px 12px; | |||||
line-height: 24px; | |||||
margin-bottom: 8px; | |||||
} |
@@ -781,5 +781,4 @@ item_list: | |||||
t = Jinja2Template(JINJA2.path) | t = Jinja2Template(JINJA2.path) | ||||
t.configure(None) | t.configure(None) | ||||
html = t.render(text, {}).strip() | html = t.render(text, {}).strip() | ||||
assert html.strip() == expected.strip() | |||||
assert html.strip() == expected.strip() |